create-command
Meta command creator - generates slash commands following established patterns
Create an atomic commit for current changes
$ npx -y skills add coleam00/Archon --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/commitContext preview
What this command does when you run it.
Create an atomic commit for current changes
description: Create an atomic commit for current changes
git status git diff HEAD git diff --stat HEAD
Check for new untracked files:
git ls-files --others --exclude-standard
Add the untracked and changed files relevant to the current work.
**Do NOT stage:**
Write an atomic commit message with a conventional commit tag:
**For monorepo changes spanning multiple packages**, note the primary package in the scope:
feat(workflows): add DAG condition evaluator fix(web): resolve SSE reconnection on navigation refactor(isolation): simplify worktree resolution order
**Commit message format:**
tag(scope): concise description of what changed [Optional body explaining WHY this change was made, not just what changed. Include context that isn't obvious from the diff.] [Optional: Fixes #123, Closes #456]
If any AI context assets were modified in this commit, add a `Context:` section to the commit body:
feat(orchestrator): add retry logic for session recovery Added exponential backoff when SDK subprocess crashes mid-session. Previously a single crash would fail the entire workflow. Context: - Updated .claude/rules/orchestrator.md with retry conventions - Added .claude/commands/debug-session.md for session state inspection - Surfaced issue: mock.module() in retry tests needs isolated batch Fixes #482
**What counts as AI context changes:**
**Why this matters:** Your git log is long-term memory. Future agents and sessions use `git log` to understand project history. If context changes aren't captured in commits, the AI layer's evolution becomes invisible — you lose the ability to trace WHY a rule exists or WHEN a command was added.
The first open-source harness builder for AI coding. Make AI coding deterministic and repeatable.
Repo: coleam00/Archon
Meta command creator - generates slash commands following established patterns
Execute an Archon implementation plan file
Implement fix from RCA document for GitHub issue
Analyze and document root cause for a GitHub issue
Write a session handoff document for the next agent or session
Create a comprehensive implementation plan for an Archon feature