メインコンテンツへスキップ
← Director Mode Lite に戻る

DIRECTOR MODE LITE / INSTALL

command の前に境界を選ぶ。

Plugin access と project automation は別の製品です。必要な挙動を得る最小の導入範囲を選んでください。

v1.9.0 / 2026.07.08 release / CLI last tested 2.1.201

Dependency matrix

Python 3 と jq は完全な hook-driven mode に必須で、optional polish ではありません。

MODECLAUDE CODEGIT + BASHPYTHON 3JQ
Native pluginRequired
Project assets / no hooksRequiredRequired
Auto-Loop hooksRequiredRequiredRequiredRequired
Evolving-Loop hooksRequiredRequiredRequiredRequired
MODE / 01Portable

Native plugin

ClaudeWorld marketplace を追加し、namespaced skills と agents を install、reload します。この path は project hooks を登録しません。

claude plugin marketplace add claude-world/director-mode-lite
claude plugin install director-mode-lite@director-mode-lite
/reload-plugins

repository の `.claude/` 設定を変更せず、呼び出せる methods だけが必要な場合に使用。

MODE / 02Hooks opt-in

Project integrated

repository を clone・検査し、明示 target に guided installer を実行してから構造 verifier を走らせます。

git clone https://github.com/claude-world/director-mode-lite.git
cd director-mode-lite
./install.sh /path/to/project --wizard
./scripts/verify-install.sh /path/to/project

wizard は no automation、Auto-Loop、Auto-Loop + Evolving-Loop を選択でき、既存 `.claude/` を先に backup します。

最初の 10 分

target repository で Claude Code を再起動後、loop の前に context を確立します。

  1. 01/getting-started

    利用可能な methods と運用前提を確認。

  2. 02/project-init

    project-local context と conventions を構築。

  3. 03/workflow

    明示 acceptance criteria で境界付き workflow を 1 回実行。

Verifier が証明する範囲

bundled verifier は install structure と integration signals を確認します。product behavior の正しさは証明しません。

CHECKS
  • 必要な command、agent、skill inventory が存在。
  • Settings JSON が parse でき、選択した Director Mode hooks が登録済み。
  • 選択 mode に必要な hook scripts が executable。
DOES NOT PROVE
  • application tests が通ること。
  • model output が正しい、または deterministic であること。
  • custom hooks と選択 loop の意味的な互換性。

Recovery も installation の一部

  1. S-01

    target repository を先に commit または backup。

  2. S-02

    hook collision を確認。既存 event は手動 composition が必要な場合があります。

  3. S-03

    `.auto-loop/stop` を使える状態にし、有限 iteration limits を設定。

  4. S-04

    interactive uninstaller を使用。hooks-only は DML hook files だけを削除し、無関係な custom hooks を保持。

同じ checkout から uninstall

complete removal の前に対話選択を確認。共有 agents / skills は別 workflows に属する可能性があります。

cd /path/to/director-mode-lite
./uninstall.sh /path/to/project

検査できるものだけを導入する。

source を読み、target を検証し、tests と final diff を acceptance evidence にしてください。