> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 概要

> アプリのビルド、テスト、リリース — CLI コマンド、統合テスト、CI、サーバーまたは npm への公開。

**オペレーションレイヤー** とは、アプリを使って *何かをする* のではなく、アプリに対して *行う* あらゆる操作を指します。具体的には、CLI コマンドの実行、実際の Twenty サーバーに対する統合テストの実行、CI の設定、そしてリリースの提供です — 単一サーバーにデプロイする tarball として、またはマーケットプレイスに掲載される npm パッケージとして行われます。

```text theme={null}
   develop ─▶ test ─▶ build ─▶ deploy / publish
   ───────    ────    ─────    ─────────────────
   yarn       yarn    yarn     yarn twenty app:publish --private  (tarball → one server)
   twenty     test    twenty
   dev                dev:build    yarn twenty app:publish         (npm → marketplace)
```

## このセクションについて

<CardGroup cols={2}>
  <Card title="CLI" icon="terminal" href="/l/ja/developers/extend/apps/operations/cli">
    `yarn twenty` リファレンス — exec、logs、uninstall、remotes。
  </Card>

  <Card title="同期と復旧" icon="compass" href="/l/ja/developers/extend/apps/operations/sync-and-recovery">
    どのコマンドをいつ使うか、同期の差分の読み方、そして復旧の手順。
  </Card>

  <Card title="テスト" icon="flask" href="/l/ja/developers/extend/apps/operations/testing">
    Vitest のセットアップ、統合テスト、型チェック、CI ワークフロー。
  </Card>

  <Card title="公開" icon="upload" href="/l/ja/developers/extend/apps/operations/publishing">
    ビルド、tarball のデプロイ、npm への公開、インストール。
  </Card>
</CardGroup>
