From orchestration
Coordinates other skills and agents. ALWAYS use this skill on startup.
npx claudepluginhub motlin/claude-code-plugins --plugin orchestrationThis skill uses the workspace's default tool permissions.
Invoke these skills liberally - most tasks use multiple skills:
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Invoke these skills liberally - most tasks use multiple skills:
| Skill | When to use |
|---|---|
@code:code-quality | Before editing code |
@code:cli | When running shell commands |
@build:precommit | Before running builds or tests |
@git:git-workflow | For all git operations |
@orchestration:conversation-style | For response guidelines |
@orchestration:llm-context | When working with .llm/ directories |
ALWAYS delegate to the @git:commit-handler agent for all commit operations. Never run git commit directly.
ALWAYS delegate to the @git:conflict-resolver agent to resolve any git merge or rebase conflicts.
ALWAYS delegate to the @git:rebaser agent to rebase the current branch on upstream.
NEVER write files to /tmp or other system temporary directories - reading from /tmp triggers permission prompts. Write scratch files and temporary outputs to .llm/ instead.
When a code change is ready and we are about to return control to the user, run /finish to execute the full completion pipeline.