Goal
Make binary installs (curl/Homebrew) the official primary path and the archon setup CLI dead-simple end-to-end. The recommended primary use of Archon is CLI + the archon Claude skill — a coding provider configured, no chat adapter required. Today's setup wizard makes adapter prompts feel mandatory and handles ~40% of what a new user needs; the rest is documented across multiple guides users miss, leading to opaque first-run errors (missing Claude binary, missing gh auth, unsigned Telegram bots open to the world, etc.).
What we're shipping in 0.3.11
Setup wizard scope
| Step |
Action |
Skippable |
| 1 |
AI provider (Claude / Codex / Pi) — validate binary path before save (file exists + spawn test) |
No |
| 2 |
Database |
Removed — SQLite-only for now (Postgres → standalone doc) |
| 3 |
GitHub: prompt creds + run gh auth status; offer to run gh auth login |
Yes — "Skip: use a community forge adapter (GitLab/Gitea) or set up later" |
| 4 |
Slack: prompt creds |
Yes — "Skip: Archon works as CLI + skill without a chat adapter" |
| 5 |
Telegram: prompt creds + TELEGRAM_ALLOWED_USER_IDS (security-critical — without this anyone can DM the bot) |
Yes — same skip messaging |
| 6 |
Discord |
Removed from setup — community-gated; same skip-messaging as GitHub |
| 7 |
Copy .claude/skills/archon/ to target repo (existing logic) |
Yes |
| 8 |
Run archon doctor to verify the setup |
Optional |
| 9 |
Print update instructions (brew upgrade coleam00/archon/archon or re-run curl install) |
Always shown |
The recommended path through this wizard is: AI provider → skip GitHub → skip Slack → skip Telegram → copy skill → run doctor. A user who just wants Archon as CLI + skill should be done in under a minute with no irrelevant prompts.
archon doctor (new top-level command)
End-to-end verification with green/red checklist. Re-runnable for troubleshooting after setup.
Checks:
- Claude binary resolves and spawns
gh auth status if GitHub adapter configured (skipped otherwise — don't tell users without GitHub they're broken)
- DB reachable
- Workspace dir writable
- Optional adapter token pings (Slack
auth.test, Telegram getMe) — best-effort, skip on no network
- Bundled defaults load without errors
Skill embedded in the binary
Same machinery as bundled workflows + commands (packages/workflows/src/defaults/bundled-defaults.generated.ts pattern). Source mode keeps copy-from-disk so contributors editing the skill see live changes; binary mode writes from embedded bytes.
This unblocks binary-only users who today have to clone the Archon repo just to get the skill copied into their target repo.
Docs reframe (lands after the code, documents reality)
Three files:
README.md — split "For users" (curl/brew/docker) vs "For contributors" (clone + bun run dev).
getting-started/overview.md — flip Step 1 to binary install; source clone becomes a footnote in a "Contributing" section.
getting-started/installation.md — already mostly correct (curl is line-1); just re-link from README and add archon doctor reference.
Document archon doctor everywhere setup is referenced. Document the "CLI + skill, no adapter" path as the primary recommended setup.
Out of 0.3.11 scope
Background: gaps in today's archon setup
Audit findings:
- Doesn't verify Claude Code is installed before saving
CLAUDE_BIN_PATH — defers error to first workflow run.
- Doesn't check
gh auth status — workflows shelling out to gh fail with opaque 401s.
- Telegram bot wide open to internet by default — no allowlist prompt; anyone can DM.
- No verification step — setup ends with no "did this actually work?" answer.
- No update path documented — users don't know how to upgrade later.
- Skill copy depends on running setup from a source clone — binary-only users can't get the skill.
- GitHub webhook secret generated but URL to paste it into never shown.
- Adapter prompts feel mandatory — even though Archon works fine as CLI + skill alone.
- Database step asks Postgres vs SQLite but doesn't run Postgres migrations — Postgres users get table-doesn't-exist errors.
- Discord/Telegram intent + allowlist guidance missing.
Items 1-8 are addressed in this issue. Items 9-10 are out of scope (Postgres deferred to docs; Discord deferred to community).
Implementation order
- Embed the skill in the binary — unblocks the skill-copy step for binary users. Build script change + new bundled-defaults entry. (~2h)
- Setup wizard rewrite — add validation, make every adapter skippable with clear "Archon works without this" messaging, add Telegram allowlist, add doctor invocation, add update-path footer. Remove database prompt and Discord step. (~3h)
archon doctor command — new CLI subcommand, shared verification helpers. (~2h)
- Docs reframe — README + overview + installation. Documents what was actually built. (~1.5h)
Goal: one PR for steps 1-3 (code = source of truth), separate PR for step 4 (docs follow code).
Success criteria
- A new user can: run curl install → run
archon setup → run archon doctor → run their first workflow, with no other steps needed.
- The recommended "CLI + skill only" path takes under a minute through the wizard, with no irrelevant adapter prompts forced on the user.
- Telegram users cannot accidentally expose their bot to the public.
archon doctor is the canonical "is my setup OK?" command, runnable at any time.
- The README and overview no longer lead users to
bun run dev as the primary path.
Tracking
- Companion roadmap issue: GitHub App support (to be filed)
- Companion doc: PostgreSQL standalone setup guide (to be filed)
Goal
Make binary installs (curl/Homebrew) the official primary path and the
archon setupCLI dead-simple end-to-end. The recommended primary use of Archon is CLI + the archon Claude skill — a coding provider configured, no chat adapter required. Today's setup wizard makes adapter prompts feel mandatory and handles ~40% of what a new user needs; the rest is documented across multiple guides users miss, leading to opaque first-run errors (missing Claude binary, missinggh auth, unsigned Telegram bots open to the world, etc.).What we're shipping in 0.3.11
Setup wizard scope
gh auth status; offer to rungh auth loginTELEGRAM_ALLOWED_USER_IDS(security-critical — without this anyone can DM the bot).claude/skills/archon/to target repo (existing logic)archon doctorto verify the setupbrew upgrade coleam00/archon/archonor re-run curl install)The recommended path through this wizard is: AI provider → skip GitHub → skip Slack → skip Telegram → copy skill → run doctor. A user who just wants Archon as CLI + skill should be done in under a minute with no irrelevant prompts.
archon doctor(new top-level command)End-to-end verification with green/red checklist. Re-runnable for troubleshooting after setup.
Checks:
gh auth statusif GitHub adapter configured (skipped otherwise — don't tell users without GitHub they're broken)auth.test, TelegramgetMe) — best-effort, skip on no networkSkill embedded in the binary
Same machinery as bundled workflows + commands (
packages/workflows/src/defaults/bundled-defaults.generated.tspattern). Source mode keeps copy-from-disk so contributors editing the skill see live changes; binary mode writes from embedded bytes.This unblocks binary-only users who today have to clone the Archon repo just to get the skill copied into their target repo.
Docs reframe (lands after the code, documents reality)
Three files:
README.md— split "For users" (curl/brew/docker) vs "For contributors" (clone +bun run dev).getting-started/overview.md— flip Step 1 to binary install; source clone becomes a footnote in a "Contributing" section.getting-started/installation.md— already mostly correct (curl is line-1); just re-link from README and addarchon doctorreference.Document
archon doctoreverywhere setup is referenced. Document the "CLI + skill, no adapter" path as the primary recommended setup.Out of 0.3.11 scope
Background: gaps in today's
archon setupAudit findings:
CLAUDE_BIN_PATH— defers error to first workflow run.gh auth status— workflows shelling out toghfail with opaque 401s.Items 1-8 are addressed in this issue. Items 9-10 are out of scope (Postgres deferred to docs; Discord deferred to community).
Implementation order
archon doctorcommand — new CLI subcommand, shared verification helpers. (~2h)Goal: one PR for steps 1-3 (code = source of truth), separate PR for step 4 (docs follow code).
Success criteria
archon setup→ runarchon doctor→ run their first workflow, with no other steps needed.archon doctoris the canonical "is my setup OK?" command, runnable at any time.bun run devas the primary path.Tracking