commit
Create an atomic commit for current changes
Analyze and document root cause for a GitHub issue
$ npx -y skills add coleam00/Archon --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/rcaContext preview
What this command does when you run it.
Analyze and document root cause for a GitHub issue
description: Analyze and document root cause for a GitHub issue argument-hint: "[github-issue-id]"
Investigate GitHub issue #$ARGUMENTS from this repository, identify the root cause, and document findings for implementation.
**Prerequisites:**
gh issue view $ARGUMENTS
Extract: title, description, labels, status, comments, reproduction steps.
Use subagents for parallel investigation:
**Identify relevant code:**
**Key areas to investigate based on issue type:**
Check recent changes to affected areas:
git log --oneline -20 -- [relevant-paths]
Look for:
**Analyze the code to determine:**
**Archon-specific considerations:**
Save analysis as: `.agents/rca/issue-$ARGUMENTS.md`
# Root Cause Analysis: GitHub Issue #$ARGUMENTS ## Issue Summary - **GitHub Issue ID**: #$ARGUMENTS - **Title**: [Issue title] - **Severity**: [P0/P1/P2/P3] - **Affected Packages**: [list of @archon/* packages] ## Problem Description [Clear description] **Expected Behavior:** [what should happen] **Actual Behavior:** [what actually happens] ## Root Cause ### Affected Components - **Files**: [list with full paths] - **Functions**: [specific code locations with file:line] - **Packages**: [which @archon/* packages are involved] ### Analysis [Detailed explanation with code references] **Code Location:** [File path:line number with relevant code snippet] ## Impact Assessment - **Scope**: [how widespread] - **Affected Features**: [list] - **Severity Justification**: [why this severity level] ## Proposed Fix ### Fix Strategy [High-level approach] ### Files to Modify 1. **[file-path]** - Changes: [what needs to change] - Reason: [why this change fixes it] ### Testing Requirements 1. [Test case 1 - verify fix] 2. [Test case 2 - no regression] 3. [Test case 3 - edge cases] ### Validation Commands bun run type-check bun run lint bun run test bun run validate ## Next Steps 1. Review this RCA document 2. Run: `/implement-fix $ARGUMENTS` to implement the fix 3. Run: `/commit` after implementation complete
The first open-source harness builder for AI coding. Make AI coding deterministic and repeatable.
Repo: coleam00/Archon
Create an atomic commit for current changes
Meta command creator - generates slash commands following established patterns
Execute an Archon implementation plan file
Implement fix from RCA document for GitHub issue
Write a session handoff document for the next agent or session
Create a comprehensive implementation plan for an Archon feature