code-review
Delegate code review to the code-reviewer subagent (Sonnet, read-only) and apply approved fixes in the main session
Gather implementation context before starting a task. Delegates to context-gatherer subagent (Sonnet) to pre-fetch everything Opus needs.
> /plugin marketplace add Filip-Podstavec/claude-leverage > /plugin install claude-leverage@filip-podstavec
How it fires
How this command gets triggered: by you, by Claude, or both.
/gather-contextContext preview
What this command does when you run it.
Gather implementation context before starting a task. Delegates to context-gatherer subagent (Sonnet) to pre-fetch everything Opus needs.
description: Gather implementation context before starting a task. Delegates to context-gatherer subagent (Sonnet) to pre-fetch everything Opus needs. allowed-tools: Bash(git status:*), Bash(git diff:*), Bash(git branch:*) argument-hint: "<description of what you're about to implement or fix>"
Branch: !`git branch --show-current` Status: !`git status --short` Recent changes: !`git diff --stat HEAD~1 2>/dev/null || echo "no previous commit"`
You are orchestrating a context-gathering phase:
You do NOT explore the codebase yourself. The subagent does that. Your job is to delegate with a clear task description, receive the context package, and then use it to guide your implementation.
1. **Determine task scope:**
2. **Invoke the `context-gatherer` subagent** with the task description. Pass it verbatim — do not rephrase or reduce scope.
3. **Present the context package to the user.** Keep it as-is — the subagent's structured output is already optimized for consumption.
4. **Use the context for implementation:**
Make any repo AI-first - write sustainable code from the start, or refactor a legacy codebase to prepare it for agent-driven development.Building blocks for Claude Code: subagents, slash commands, hooks, and workflow patterns. Copy what you need. A working developer's stack for Claude Code.
Repo: Filip-Podstavec/claude-leverage
Delegate code review to the code-reviewer subagent (Sonnet, read-only) and apply approved fixes in the main session
Check documentation freshness after code changes. Delegates to docs-updater subagent (Sonnet) to propose doc/changelog updates - main session applies approved…
Delegate test execution to the test-runner subagent (Sonnet) and apply approved fixes in the main session
Diagnose a flaky test by running it N times. Delegates to flaky-test-isolator subagent — N runs, signature-grouped failures, stability report. Does NOT fix the…