commit
Create an atomic commit for current changes
Prime agent with Archon backend (core + server) context
$ npx -y skills add coleam00/Archon --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/prime-backendContext preview
What this command does when you run it.
Prime agent with Archon backend (core + server) context
description: Prime agent with Archon backend (core + server) context
Orient on the backend packages (`packages/core/` and `packages/server/`) before working on server logic, orchestration, AI clients, slash commands, or API routes.
!`ls packages/core/src/`
Read `packages/core/src/orchestrator/orchestrator-agent.ts` — the single entry point for all platform messages. Maps messages to slash commands (via command-handler) or AI execution. Note the lazy logger pattern and MAX_BATCH constants.
Read `packages/core/src/orchestrator/orchestrator.ts` first 60 lines — `validateAndResolveIsolation` and `dispatchBackgroundWorkflow` utilities called by orchestrator-agent.
Read `packages/core/src/orchestrator/prompt-builder.ts` first 40 lines — how system prompts are assembled with codebase context.
Read `packages/core/src/handlers/command-handler.ts` first 80 lines — deterministic command dispatch (no AI). Note the full list of supported slash commands.
Read `packages/core/src/state/session-transitions.ts` in full — `TransitionTrigger` union type, `TRIGGER_BEHAVIOR` record (creates / deactivates / none), and session lifecycle rules.
List providers: !`ls packages/core/src/providers/`
Read `packages/core/src/providers/factory.ts` for provider selection logic. Read `packages/core/src/providers/claude.ts` first 50 lines — `IAgentProvider` implementation with streaming event loop pattern.
List DB modules: !`ls packages/core/src/db/`
Read `packages/core/src/types/index.ts` (or the main types file) first 60 lines for key interfaces: `IPlatformAdapter`, `IAgentProvider`, `Conversation`, `Session`.
Read `packages/server/src/index.ts` first 80 lines — adapter wiring, port allocation logic (worktree auto-port in 3190–4089 range), Hono app setup.
List API routes: !`ls packages/server/src/routes/`
Read `packages/server/src/routes/api.ts` first 60 lines for REST endpoint structure.
!`git log -8 --oneline -- packages/core/ packages/server/`
Summarize (under 250 words):
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
Analyze and document root cause for a GitHub issue
Write a session handoff document for the next agent or session