From 81a78f2839c1849084c46afbcf3c5e4208fb082d Mon Sep 17 00:00:00 2001 From: serenakeyitan Date: Thu, 23 Apr 2026 13:50:04 -0700 Subject: [PATCH] docs: fix onboarding path bootstrap chicken-and-egg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous end-to-end prompt (merged in #326) told a cold-start agent to read `.agents/skills/first-tree/references/onboarding.md` right after CLI install — but that path only exists after `first-tree skill install` runs, which is part of setup itself. A literal paste into a fresh Claude Code session would fail at the first step. Point the prompt at `first-tree tree help onboarding` instead, which is available immediately after the CLI is installed (verified in src/products/tree/cli.ts). Mention the skill-path reference as the post-install artifact it actually is, not the starting point. Follow-up to yuezengwu's CHANGES_REQUESTED review on #326 (arrived 6s after admin-merge). --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b86e04d..b92648e 100644 --- a/README.md +++ b/README.md @@ -123,13 +123,15 @@ GitHub notifications). Latest release: https://github.com/agent-team-foundation/first-tree/releases/latest -Install the CLI, then follow the onboarding skill at -`.agents/skills/first-tree/references/onboarding.md`. Before running any -setup command, ask me which source repo (owner/name) and which tree repo -(owner/name) to target, and wait for my answers — do not infer from the -current working directory. Once I've confirmed both, walk me through -setup, then trigger one drift event end-to-end so I can watch: source PR -→ tree issue → breeze pickup → draft-node PR. +Install the CLI, then run `first-tree tree help onboarding` to load the +onboarding narrative. Before running any setup command, ask me which +source repo (owner/name) and which tree repo (owner/name) to target, and +wait for my answers — do not infer from the current working directory. +Once I've confirmed both, walk me through setup (which includes +`first-tree skill install`, at which point the full skill reference also +becomes available at `.agents/skills/first-tree/references/onboarding.md`), +then trigger one drift event end-to-end so I can watch: source PR → tree +issue → breeze pickup → draft-node PR. ``` ---