claude-coordinator
A structured orchestration system for Claude Code that plans, delegates, reviews, and learns.
File Explorer
- plugin.json
- briefer.md
- coordinator.md
- intent-validator.md
- learning-extractor.md
- planner.md
- reviewer.md
- scribe.md
- system-tester.md
- ui-tester.md
- ux-tester.md
- worker-investigation.md
- worker-refactor.md
- worker-test.md
- worker.md
- claude-coordinator
- coord-validate
- briefer-output.schema.json
- intent-validator-output.schema.json
- learning-extractor-output.schema.json
- planner-output.schema.json
- README.md
- reviewer-output.schema.json
- scribe-output.schema.json
- system-tester-output.schema.json
- ui-tester-output.schema.json
- ux-tester-output.schema.json
- worker-investigation-output.schema.json
- worker-output.schema.json
- worker-refactor-output.schema.json
- worker-test-output.schema.json
- context-packet.md
- learning-inbox.jsonl
- task-ledger.json
- command-intent.md
- current-intent.md
- known-issues.md
- repo-practices.md
- active-plan.md
- execution-brief.md
- test-spec.md
- .worktreeinclude
- coordinator-settings.json
- install.sh
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
claude
View Details ▼
claude
An agent-based coding tool that understands your code base and helps you code faster through natural language commands.
claude prompt
Execute with prompt:
claude update
Update `claude`:
claude mcp list
Get the list of specified MCP servers:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git log
View Details ▼
git log
Show a history of commits.
git log
Show the sequence of commits starting from the current one, in reverse chronological order of the Git repository in the current working directory:
git log {{[-p|--patch]}} {{path/to/file_or_directory}}
Show the history of a particular file or directory, including differences:
git log --stat
Show an overview of which file(s) changed in each commit:
llm
View Details ▼
llm
Interact with Large Language Models (LLMs) via remote APIs and models that can be installed and run on your machine.
llm keys set openai
Set up an OpenAI API Key:
llm "{{Ten fun names for a pet pelican}}"
Run a prompt:
cat {{path/to/file.py}} | llm {{[-s|--system]}} "{{Explain this code}}"
Run a system prompt against a file:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
