Skip to main content

OPEN SOURCE / EXECUTION METHOD

Direct the intent.Inspect the evidence.

Director Mode Lite packages a repeatable operating method around Claude Code. It does not make model output deterministic; it makes acceptance criteria, delegation, local state, tests, and review boundaries easier to see.

Repository verified / 2026.07.20

27commands
14agent definitions
32skills
77GitHub stars

CONTRACT / NOT MAGIC

A visible loop around a probabilistic worker.

The toolkit adds structure around the model. Completion still comes from observable evidence and human acceptance, not from a checkbox or checkpoint alone.

  1. 01 / INTENT

    Define scope and acceptance criteria.

  2. 02 / ROUTE

    Select a workflow, agent, or external CLI handoff.

  3. 03 / EXECUTE

    Run a bounded TDD-oriented iteration.

  4. 04 / VERIFY

    Inspect tests, diffs, logs, and installer health.

  5. 05 / ACCEPT

    A human accepts, revises, or stops the run.

SYSTEM / LAYERS

What the toolkit actually adds.

Each layer has a job and a boundary. Use only the parts your repository can safely support.

L-01METHOD

Repeatable workflows

`/workflow`, planning, test-first, review, documentation, and commit routines package a consistent sequence.

BOUNDARY

Guidance does not replace repository-specific checks.

L-02RUNTIME

Bounded continuation

Auto-Loop and Evolving-Loop use local hooks, state, stop files, and configurable iteration limits.

BOUNDARY

A loop can continue work; it cannot prove correctness.

L-03SPECIALISTS

Context isolation

Fourteen agent definitions cover review, debugging, documentation, Claude configuration, and evolution roles.

BOUNDARY

Agents are available for delegation, not guaranteed to trigger.

L-04INTEROP

External handoffs

Codex, Gemini, and separate Claude profiles can receive scoped tasks when those CLIs are installed and authenticated.

BOUNDARY

Every handoff needs explicit context and independent verification.

INSTALL / TWO MODES

Choose between portable plugin access and project-integrated hooks.

The native plugin path exposes namespaced skills and agents. The repository installer copies project-local assets and activates only the hooks selected in the wizard.

MODE / 01A / Native plugin
claude plugin marketplace add claude-world/director-mode-lite
claude plugin install director-mode-lite@director-mode-lite
/reload-plugins

Add the marketplace first. Plugin-only installs do not wire project hooks.

MODE / 02B / Project integrated
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

Review the repository, run the wizard, then verify the target. Existing `.claude/` is backed up before changes.

Open the complete install and uninstall guide

AUTO-LOOP / EVIDENCE PATH

Continuation has an exit path.

A Stop hook may ask Claude to continue when tracked criteria remain. Set a finite iteration budget, keep the stop file available, and treat test output plus the final diff as the evidence.

  1. 01Acceptance criteria
  2. 02Failing test
  3. 03Minimal change
  4. 04Test + diff
  5. 05Accept / stop

SAFETY / LOCAL FIRST

The safe default is inspectable and reversible.

S-01 / BACKUP

The project installer backs up an existing `.claude/` directory before merging files.

S-02 / OPT-IN HOOKS

The setup wizard lets you choose no automation, Auto-Loop, or Auto-Loop plus Evolving-Loop.

S-03 / FINITE RUNS

Iteration limits and `.auto-loop/stop` are operational controls, not decoration.

S-04 / REVIEW GENERATED SKILLS

Generated skills and strategy notes are code-adjacent inputs; inspect them before reuse.

S-05 / KEEP GIT

Checkpoints help resume a loop. Version control remains the recovery and review boundary.

S-06 / VERIFY THE OUTPUT

The bundled verifier checks installation shape; your own tests must establish product behavior.

RELEASE / 1.9.0

Guided setup without hiding the controls.

v1.9.0 added `install.sh --wizard`, three automation levels, optional observability and safety hooks, seven wizard regression tests, and version consistency fixes.

Use the method. Keep the judgment.

Start from a real repository, install only the controls you understand, and require an artifact you can review.