commit
Create an atomic commit for current changes
Prime agent with Archon workflow engine context
$ npx -y skills add coleam00/Archon --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/prime-workflowsContext preview
What this command does when you run it.
Prime agent with Archon workflow engine context
description: Prime agent with Archon workflow engine context
Orient on the workflow engine (`packages/workflows/`) before working on workflow execution, YAML parsing, DAG logic, routing, or observability.
!`ls packages/workflows/src/`
Read `packages/workflows/src/types.ts` in full — the complete type system for workflow definitions: `WorkflowDefinition`, `WorkflowStep`, `WorkflowNode` (DAG), `LoopConfig`, `NodeType` (command / prompt / bash), `TriggerRule`, `OutputFormat`, tool restriction fields.
Read `packages/workflows/src/executor.ts` first 80 lines — `executeWorkflow()` entry point, the three mutually exclusive execution modes (steps, loop, nodes/DAG), artifact directory setup, variable substitution via `$ARTIFACTS_DIR` / `$WORKFLOW_ID`.
Read `packages/workflows/src/dag-executor.ts` first 80 lines — topological sort, concurrent node dispatch for independent nodes in the same layer, `when:` condition evaluation, `trigger_rule` join semantics, `$nodeId.output` substitution.
Read `packages/workflows/src/loader.ts` first 60 lines — `discoverWorkflows()` / `discoverWorkflowsWithConfig()`, resilient loading (one bad YAML doesn't abort), model validation at load time, bundled defaults merging with repo-specific workflows.
Read `packages/workflows/src/router.ts` first 60 lines — how incoming messages are matched to workflows, case-insensitive matching, `archon-assist` fallback, Codex tool bypass detection.
Read `packages/workflows/src/event-emitter.ts` — `WorkflowEventEmitter`, emitted event types (step_started, step_completed, node events, loop iterations, artifacts), how the server bridges these to SSE via `WorkflowEventBridge`.
Read `packages/workflows/src/deps.ts` — `WorkflowDeps` type: `IWorkflowPlatform`, `IWorkflowAgentProvider`, `IWorkflowStore` injected at runtime. No direct DB or AI imports inside this package.
List bundled default workflows: !`ls packages/workflows/src/defaults/`
List repo workflows (if any): !`ls .archon/workflows/ 2>/dev/null || echo "(none in repo root)"`
!`git log -8 --oneline -- packages/workflows/`
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