Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .claude/commands/plan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Plan implementation approach for the given task using the planner agent.

Follow the Explore → Plan → Implement paradigm. Read relevant files, identify affected modules, choose the simplest approach that aligns with existing patterns. Ask one critical clarifying question if requirements are unclear.

Task: $ARGUMENTS
5 changes: 5 additions & 0 deletions .claude/commands/refactor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Identify and remove dead code, consolidate duplicates, and perform cleanup refactoring using the refactor-cleaner agent.

Run vulture and grep to detect unused code. Verify each finding against the safety checklist before removal. Keep diffs minimal and scoped to cleanup only.

Scope: $ARGUMENTS
5 changes: 5 additions & 0 deletions .claude/commands/review.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Review code changes on the current branch using the code-reviewer agent.

Run `git diff` to see all staged and unstaged changes. If on a feature branch, also run `git diff main...HEAD` to see all branch changes. Begin review immediately following the code-reviewer agent guidelines.

$ARGUMENTS
Loading