bossbuild 0.97.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. package/LICENSE +21 -0
  2. package/PRINCIPLES.md +70 -0
  3. package/README.md +213 -0
  4. package/VERSION +1 -0
  5. package/bin/boss +3 -0
  6. package/library/README.md +19 -0
  7. package/library/agents/.gitkeep +0 -0
  8. package/library/agents/mentor-venture.md +57 -0
  9. package/library/hooks/.gitkeep +0 -0
  10. package/library/hooks/auto-log.js +133 -0
  11. package/library/hooks/memory-cue.js +82 -0
  12. package/library/hooks/secrets-guard.js +87 -0
  13. package/library/memory-seed/README.md +29 -0
  14. package/library/memory-seed/durable-facts-example.md +16 -0
  15. package/library/practices/.gitkeep +0 -0
  16. package/library/practices/agent-security.md +111 -0
  17. package/library/practices/ai-adoption-culture.md +104 -0
  18. package/library/practices/ai-ux-patterns.md +246 -0
  19. package/library/practices/celebration-of-done.md +100 -0
  20. package/library/practices/conscience-voicing.md +121 -0
  21. package/library/practices/context-discipline.md +116 -0
  22. package/library/practices/design-system.md +152 -0
  23. package/library/practices/git-workflow.md +119 -0
  24. package/library/practices/harm-taxonomy.md +45 -0
  25. package/library/practices/quality-ratchet.md +48 -0
  26. package/library/practices/revalidation.md +57 -0
  27. package/library/practices/scalable-architecture.md +111 -0
  28. package/library/practices/ship-it-live.md +149 -0
  29. package/library/practices/skill-authoring.md +70 -0
  30. package/library/skills/.gitkeep +0 -0
  31. package/library/skills/boss-learn/SKILL.md +63 -0
  32. package/library/skills/boss-sync/SKILL.md +48 -0
  33. package/package.json +49 -0
  34. package/registry/CHANGELOG.md +2737 -0
  35. package/src/board.js +655 -0
  36. package/src/brain.js +288 -0
  37. package/src/cli.js +542 -0
  38. package/src/conscience.js +426 -0
  39. package/src/insights.js +147 -0
  40. package/src/learn.js +92 -0
  41. package/src/map.js +103 -0
  42. package/src/modes.js +82 -0
  43. package/src/paths.js +36 -0
  44. package/src/registry.js +34 -0
  45. package/src/scaffold.js +138 -0
  46. package/src/sync.js +292 -0
  47. package/src/team.js +103 -0
  48. package/stages/L0-quickstart/manifest.json +12 -0
  49. package/stages/L0-quickstart/template/.claude/agents/coder-generalist.md +31 -0
  50. package/stages/L0-quickstart/template/.claude/agents/mentor-venture.md +57 -0
  51. package/stages/L0-quickstart/template/.claude/agents/pm.md +28 -0
  52. package/stages/L0-quickstart/template/.claude/hooks/conscience.js +89 -0
  53. package/stages/L0-quickstart/template/.claude/hooks/lib/loop-runtime.js +507 -0
  54. package/stages/L0-quickstart/template/.claude/hooks/lib/yaml.js +163 -0
  55. package/stages/L0-quickstart/template/.claude/hooks/memory-cue.js +82 -0
  56. package/stages/L0-quickstart/template/.claude/hooks/secrets-guard.js +87 -0
  57. package/stages/L0-quickstart/template/.claude/rules/your-app-code.md +17 -0
  58. package/stages/L0-quickstart/template/.claude/settings.json +36 -0
  59. package/stages/L0-quickstart/template/.claude/skills/boss/SKILL.md +161 -0
  60. package/stages/L0-quickstart/template/.claude/skills/boss-learn/SKILL.md +63 -0
  61. package/stages/L0-quickstart/template/.claude/skills/boss-sync/SKILL.md +55 -0
  62. package/stages/L0-quickstart/template/.claude/skills/canvas/SKILL.md +112 -0
  63. package/stages/L0-quickstart/template/.claude/skills/comprehend/SKILL.md +72 -0
  64. package/stages/L0-quickstart/template/.claude/skills/decide/SKILL.md +122 -0
  65. package/stages/L0-quickstart/template/.claude/skills/feedback/SKILL.md +68 -0
  66. package/stages/L0-quickstart/template/.claude/skills/import/SKILL.md +73 -0
  67. package/stages/L0-quickstart/template/.claude/skills/persona/SKILL.md +92 -0
  68. package/stages/L0-quickstart/template/.claude/skills/prototype/SKILL.md +114 -0
  69. package/stages/L0-quickstart/template/.claude/skills/triage/SKILL.md +104 -0
  70. package/stages/L0-quickstart/template/.claude/skills/welcome/SKILL.md +262 -0
  71. package/stages/L0-quickstart/template/AGENTS.md +31 -0
  72. package/stages/L0-quickstart/template/CLAUDE.md +57 -0
  73. package/stages/L0-quickstart/template/docs/IDS.md +42 -0
  74. package/stages/L0-quickstart/template/docs/ideas/INDEX.md +24 -0
  75. package/stages/L0-quickstart/template/docs/loops/canvas-loop.md +90 -0
  76. package/stages/L0-quickstart/template/docs/loops/capture-loop.md +64 -0
  77. package/stages/L1-mvp/manifest.json +12 -0
  78. package/stages/L1-mvp/template/.claude/agents/mentor-architect.md +124 -0
  79. package/stages/L1-mvp/template/.claude/agents/mentor-cofounder.md +85 -0
  80. package/stages/L1-mvp/template/.claude/agents/mentor-gtm.md +49 -0
  81. package/stages/L1-mvp/template/.claude/agents/program-manager.md +46 -0
  82. package/stages/L1-mvp/template/.claude/agents/tester.md +42 -0
  83. package/stages/L1-mvp/template/.claude/hooks/auto-log.js +133 -0
  84. package/stages/L1-mvp/template/.claude/rules/feature-context.md +18 -0
  85. package/stages/L1-mvp/template/.claude/skills/ai-cost/SKILL.md +249 -0
  86. package/stages/L1-mvp/template/.claude/skills/ai-failure-states/SKILL.md +226 -0
  87. package/stages/L1-mvp/template/.claude/skills/ai-first-init/SKILL.md +227 -0
  88. package/stages/L1-mvp/template/.claude/skills/close/SKILL.md +170 -0
  89. package/stages/L1-mvp/template/.claude/skills/consult/SKILL.md +72 -0
  90. package/stages/L1-mvp/template/.claude/skills/cost-review/SKILL.md +204 -0
  91. package/stages/L1-mvp/template/.claude/skills/design-tokens-init/SKILL.md +192 -0
  92. package/stages/L1-mvp/template/.claude/skills/drift-deep/SKILL.md +170 -0
  93. package/stages/L1-mvp/template/.claude/skills/evals/SKILL.md +154 -0
  94. package/stages/L1-mvp/template/.claude/skills/extract/SKILL.md +209 -0
  95. package/stages/L1-mvp/template/.claude/skills/judge-traces/SKILL.md +68 -0
  96. package/stages/L1-mvp/template/.claude/skills/log/SKILL.md +64 -0
  97. package/stages/L1-mvp/template/.claude/skills/practice/SKILL.md +92 -0
  98. package/stages/L1-mvp/template/.claude/skills/pretotype/SKILL.md +95 -0
  99. package/stages/L1-mvp/template/.claude/skills/red-team/SKILL.md +137 -0
  100. package/stages/L1-mvp/template/.claude/skills/revalidate/SKILL.md +51 -0
  101. package/stages/L1-mvp/template/.claude/skills/ship/SKILL.md +105 -0
  102. package/stages/L1-mvp/template/.claude/skills/smoke/SKILL.md +43 -0
  103. package/stages/L1-mvp/template/.claude/skills/spec/SKILL.md +145 -0
  104. package/stages/L1-mvp/template/claude-append.md +122 -0
  105. package/stages/L1-mvp/template/docs/loops/ai-failure-state-loop.md +107 -0
  106. package/stages/L1-mvp/template/docs/loops/coordination-loop.md +116 -0
  107. package/stages/L1-mvp/template/docs/loops/cost-budget-loop.md +117 -0
  108. package/stages/L1-mvp/template/docs/loops/cost-review-loop.md +113 -0
  109. package/stages/L1-mvp/template/docs/loops/design-tokens-loop.md +98 -0
  110. package/stages/L1-mvp/template/docs/loops/drift-loop.md +149 -0
  111. package/stages/L1-mvp/template/docs/loops/extraction-loop.md +128 -0
  112. package/stages/L1-mvp/template/docs/loops/focus-loop.md +106 -0
  113. package/stages/L1-mvp/template/docs/loops/pretotype-loop.md +88 -0
  114. package/stages/L1-mvp/template/docs/loops/spec-loop.md +83 -0
  115. package/stages/L2-v1/manifest.json +12 -0
  116. package/stages/L2-v1/template/.claude/agents/db-architect.md +91 -0
  117. package/stages/L2-v1/template/.claude/agents/mentor-business.md +124 -0
  118. package/stages/L2-v1/template/.claude/agents/mentor-fundraising.md +72 -0
  119. package/stages/L2-v1/template/.claude/agents/mentor-pitch.md +84 -0
  120. package/stages/L2-v1/template/.claude/agents/mentor-talent.md +84 -0
  121. package/stages/L2-v1/template/.claude/agents/ui-designer.md +81 -0
  122. package/stages/L2-v1/template/.claude/agents/ux-designer.md +87 -0
  123. package/stages/L2-v1/template/.claude/skills/board/SKILL.md +98 -0
  124. package/stages/L2-v1/template/.claude/skills/design-review/SKILL.md +77 -0
  125. package/stages/L2-v1/template/.claude/skills/ux-check/SKILL.md +93 -0
  126. package/stages/L2-v1/template/claude-append.md +59 -0
  127. package/stages/L2-v1/template/docs/loops/design-drift-loop.md +108 -0
  128. package/stages/L3-scale/README.md +13 -0
@@ -0,0 +1,114 @@
1
+ ---
2
+ name: prototype
3
+ description: Get the idea out of your head and onto the screen — fast. Builds the smallest runnable, clickable version of an idea (the one core thing, fastest stack), then runs it so you can react to something tangible instead of arguing with a blank page. Build-first is a legitimate place to start a lean cycle; the conscience helps you fill the gaps AFTER you can see it, not before. Usage - /prototype [IDEA-NNN | rough idea text]
4
+ ---
5
+
6
+ # /prototype — drop an idea, hit go, see something tangible
7
+
8
+ Sometimes the fastest way to think about an idea is to **see it**. Not a spec, not a canvas — a
9
+ small, real, clickable thing you can react to. `/prototype` builds that: the one core interaction of
10
+ your idea, in whatever stack gets to "click it" fastest, running in front of you in minutes.
11
+
12
+ Building first is a legitimate way to start a lean cycle — get the idea out of your head, see the gist
13
+ made tangible, then fill in the missing pieces once there's something concrete to fill them *around*.
14
+ The conscience stays out of the way until the thing is on the screen.
15
+
16
+ > It's a sketch to think with, not your MVP — BOSS names that once, *after* you've seen it.
17
+
18
+ > **This is BOSS's one licensed play space.** A prototype is a *magic circle* — bounded, safe-to-fail,
19
+ > nothing precious, nothing shipped. Build it badly, build three of them, build the wrong one on purpose;
20
+ > the only job here is to learn by doing. The walls of the circle (it's labelled a sketch, it gets thrown
21
+ > away when it earns a real build, the conscience waits outside until you step out) are exactly what make
22
+ > playing safe. Play isn't the warm-up to the work — for an idea you can't yet see, it *is* the work.
23
+
24
+ > **The frame, plainly (Marty Cagan, 2026):** this is *building to **learn*** — a throwaway to discover
25
+ > whether the idea's worth it. Building it *for real* is *building to **earn*** — the `/spec` path, with
26
+ > a build you'll keep. Cheap building made delivery easy, which made *fooling yourself* easy too; the
27
+ > two modes stay separate on purpose. `/prototype` is build-to-learn; `boss unlock mvp` → `/spec` is
28
+ > build-to-earn.
29
+
30
+ ## When to run it
31
+
32
+ - You have an idea (a sentence, or an `IDEA-NNN` from `/triage`) and you want to *see* it, now.
33
+ - You're stuck arguing with yourself in the abstract — a tangible version would unstick you.
34
+ - You want to show someone the gist before you've written a word of spec.
35
+
36
+ ## How to run it
37
+
38
+ **1. Get the idea.** If given an `IDEA-NNN`, read it (and its canvas if one exists). If given rough
39
+ text, use it. If neither, ask one line: *"What's the idea — one sentence is enough."* Don't
40
+ interrogate; you have enough to start with the gist.
41
+
42
+ **2. Find the ONE core thing.** Name the single interaction or artifact that *is* the idea — the
43
+ thing that, once someone can do/see it, the idea clicks. A meal-planner's core thing is "see a week
44
+ of meals generated from my constraints," not auth + settings + a profile page. Say what you picked,
45
+ in one line, so the founder can redirect: *"I'll make the part where you [X] — that's the heart of
46
+ it. Everything else can come after."*
47
+
48
+ **3. Pick the fastest runnable stack** (Principle #4 — stack-neutral, but here optimize for
49
+ *time-to-click*, not production-fitness):
50
+ - **The founder can name it:** `/prototype --stack=<x>` is a first-class option — if they say it, use
51
+ it, no argument. Only auto-pick when they don't.
52
+ - Simple UI / visual idea → a single self-contained HTML file (open it, done) or a minimal Vite +
53
+ React app if it needs real interactivity.
54
+ - A tool / transform / data idea → the smallest script with a tiny UI or CLI.
55
+ - Pick the one that runs **fastest with fewest moving parts.**
56
+ - **Narrate the pick in plain words, not jargon** — to a beginner, say *"a single web page, nothing to
57
+ install"*, not *"a Vite stack."* Name it as a speed pick they can change, not a decision made for
58
+ them. (If the project already chose a stack, respect it unless it'd slow the sketch down.)
59
+
60
+ **4. Build the minimal slice.** Just the core thing, made real. Use mock/sample data freely — the
61
+ point is tangibility, not a backend. **Don't gold-plate a throwaway** — tangible beats pretty (it's a
62
+ sketch). Skip the design polish by default; only if the sketch is becoming something you'll keep (or
63
+ an `eng-builder`/design-minded cohort asks) reach for the 5-token distinctiveness pass from
64
+ `/design-tokens-init`. Keep it in a clearly-a-sketch place (`prototype/` if the repo has other code;
65
+ root if it's empty).
66
+
67
+ **5. Run it.** Use `/run` (or just open the file). Get it on the screen. This is the moment — don't
68
+ bury it in narration.
69
+
70
+ **6. Then — and only then — the conscience rides along (gently).** Once it's running, lead with a
71
+ **concrete next action in plain words**, not a vocabulary word. The shape:
72
+ > *"There it is. Click around — does seeing it change what you thought the idea was? Want me to fake
73
+ > the next screen, or change the part that feels off?"*
74
+
75
+ Then, *only if they're ready*, introduce the next step **by what it does**, not its name: *"When you
76
+ want to figure out who this is really for and what would make it worth building — there's a step for
77
+ that (`/canvas`). And 'I don't know yet' is a fine answer; that's what it's for."* Never let the nudge
78
+ imply the sketch *isn't real* or that not-knowing-the-user is a failure — they're building precisely
79
+ to find out. Don't say `/canvas` / "pressure-test" cold to a beginner; let the step introduce itself
80
+ when they get there.
81
+
82
+ That's the whole conscience touch: *after* the tangible thing, a concrete action first and the
83
+ vocabulary later, never a gate before.
84
+
85
+ ## Cohort-aware delivery
86
+
87
+ Read `cohort` from `.boss/config.json`:
88
+ - **`first-product` / `vibe-coder-newbie`** — lead with the magic moment; narrate in plain language
89
+ ("I'm building the one core screen so you can see it — about a minute"); celebrate seeing it
90
+ *running*, not the code.
91
+ - **`eng-builder` / `returning-founder`** — give stack control up front ("fastest path is a single
92
+ Vite page — or name your stack"); skip the 101; leave the escape hatch obvious.
93
+ - **`vibe-virtuoso`** — they'll have opinions; offer the stack pick as a default to override, move fast.
94
+ - **`non-tech-founder`** — plain language, no jargon; the deliverable is "a thing you can click and
95
+ show someone," not "a React app."
96
+ - **`domain-expert`** — one guardrail up front: *"this is a sketch to react to, not a
97
+ clinical/regulated tool — don't put real [patient/client/financial] data in it."* Stakes are real;
98
+ say so before, not after.
99
+
100
+ ## Rules
101
+
102
+ - **Tangible beats complete.** A rough thing that runs beats a polished thing that doesn't. Ship the
103
+ click, not the codebase.
104
+ - **Mock freely.** Sample data, hardcoded values, fake responses — all fine for a sketch. Don't build
105
+ a backend to prove an idea.
106
+ - **Name it as a sketch — once.** "See-it, not sell-it." Say it one time (cohort-appropriate), then
107
+ let them play. Don't moralize.
108
+ - **Conscience after, never before.** No "have you validated this?" gate in front of the build. The
109
+ whole point is that building *is* a legitimate first move. The nudge toward `/canvas` comes once
110
+ there's something to react to.
111
+ - **Don't quietly become the MVP.** The real failure isn't abstract — it's the sketch that picked up
112
+ 4 real users and is now getting auth and a database bolted onto throwaway code nobody meant to keep.
113
+ When the sketch earns a real build, *restart it* on the deliberate path (`boss unlock mvp` → `/spec`
114
+ → `/evals`), don't grow the sketch into production. Fast to *see*; rebuild to *keep*.
@@ -0,0 +1,104 @@
1
+ ---
2
+ name: triage
3
+ description: Capture an idea — and keep adding to it. Creates a LIVING idea doc you return to over time: a sharpening "current shape" at the top, an append-only capture log below. The lightest step in Quickstart mode. Usage - /triage <thought> (run again anytime to add more)
4
+ ---
5
+
6
+ # /triage — capture & keep adding
7
+
8
+ Quickstart is about getting an idea out of your head and letting it *grow* with almost no
9
+ ceremony. Each idea is a **living document**, not a one-shot form. Run `/triage` whenever a new
10
+ thought lands — the first run creates the doc, every later run adds to it.
11
+
12
+ ## Decide: new idea or add to an existing one?
13
+
14
+ 1. Read `docs/ideas/INDEX.md` and skim existing `docs/ideas/IDEA-*.md` titles.
15
+ 2. If the user's thought clearly extends an existing idea → **append** to that doc (don't make a new one).
16
+ 3. Otherwise → **create** a new `IDEA-NNN` (next free number).
17
+
18
+ ## Create (first capture)
19
+
20
+ Make `docs/ideas/IDEA-NNN-<slug>.md`:
21
+
22
+ ```markdown
23
+ ---
24
+ id: IDEA-NNN
25
+ type: idea
26
+ owner: pm
27
+ status: seedling
28
+ created: {{today}}
29
+ ---
30
+
31
+ # <Title — one plain line>
32
+
33
+ ## Current shape
34
+ _The best articulation so far. Rewrite this as the idea sharpens._
35
+ - **What:** …
36
+ - **Who it's for:** …
37
+ - **Smallest version that proves it:** …
38
+
39
+ ## Capture log
40
+ _Append-only. Newest at the bottom. Don't edit old entries._
41
+ - {{today}} — <the thought, in their words>
42
+
43
+ ## Open questions
44
+ - <what's still fuzzy>
45
+
46
+ ## Canvas
47
+ _Not started. When this has legs, run `/canvas` to pressure-test it as a business._
48
+ ```
49
+
50
+ Add a row to `docs/ideas/INDEX.md`.
51
+
52
+ ## Add (every later run)
53
+
54
+ - Append a dated bullet to **Capture log** (their words — light touch, don't sanitize the spark).
55
+ - If the thought sharpens the idea, rewrite **Current shape** to reflect it.
56
+ - Move any resolved item out of **Open questions**; add new ones that surfaced.
57
+ - Don't restructure or "finalize" — this is an evolving notebook, not a deliverable.
58
+
59
+ ## The validation check — BOSS's conscience
60
+
61
+ Quickstart makes it *easy* to keep capturing. That's the trap: a growing pile of captured ideas can
62
+ feel like progress while nothing has actually been tested. So after you capture or add, glance at the
63
+ state — and if it's drifting, **say one thing, then get out of the way.** This is the first of BOSS's
64
+ conscience moments: *what does this prove?*
65
+
66
+ **When to speak (keep it rare):** the idea you just added to has **≥3 capture-log entries** and there's
67
+ **no `IDEA-NNN-canvas.md` with a filled riskiest assumption** (no canvas at all, or the *Riskiest
68
+ assumption* line is still a placeholder). That's the "building lots, proving nothing" signal — and the
69
+ only time this fires.
70
+
71
+ **What to say:** one spare line, in BOSS's voice — name the drift, ask what they'd want to *learn* (or
72
+ *who they'd ask first* — Fitzpatrick-style, plain language), hand the decision back. Don't lecture, don't
73
+ block the capture, don't make it a gate. **Voice lineage decision (v0.20.0):** lean Fitzpatrick-plain over
74
+ Maurya-framework-name; the indie-hacker persona caught the prior mix and the cohort-portable version uses
75
+ ask-someone language consistently. Tune it to them by ear; don't paste this verbatim:
76
+
77
+ > *"That's the third thing you've added here, and none of it's been tested yet. Who would you talk to first
78
+ > to find out if any of them are real? `/canvas` is one way to pressure-test it — but a 15-minute call with
79
+ > the right person beats it."*
80
+
81
+ **Cohort awareness (v0.20.0+):** if `.boss/config.json` has a `cohort` field set, the conscience hook ships
82
+ that to your context. *Read the framing and adjust the voice* — a `first-product` founder needs *teaching*
83
+ (define terms inline; invite, never grade), a `returning-founder` wants the *harder cohort-aware question*
84
+ ("is your conviction here at the level it needed to be for the last thing?"), a `vibe-virtuoso` deflects
85
+ discipline content but respects friction ("you've shipped a lot — what's the bet you'd stay on for six
86
+ months even if it didn't go viral?"). Same signal; different voice.
87
+
88
+ **Stay quiet otherwise.** Say it once. If they keep capturing without acting, don't repeat it every run —
89
+ a conscience that nags is just noise. Raise it again only if a lot more piles up, or they ask. Assume
90
+ they're smart: you're flagging a blind spot, not grading them.
91
+
92
+ ## When it has legs
93
+
94
+ If the idea feels real (recurring, exciting, worth betting time on), say so and offer the next rung:
95
+ - `/canvas` — pressure-test it as a business (customer, problem, value prop, risks, validation…).
96
+ - or `boss unlock mvp` — if you're already sure and ready to build the first working version.
97
+
98
+ ## Rules
99
+
100
+ - Capture > ceremony. A one-liner is a complete input.
101
+ - One idea per doc. If they chain several with "also", split into separate docs.
102
+ - Never start building from `/triage` — this is capture only.
103
+ - Preserve the original spark verbatim in the capture log; sharpen in "Current shape," not by overwriting history.
104
+ - The validation check is a nudge, never a gate — it never blocks a capture and never repeats into a nag.
@@ -0,0 +1,262 @@
1
+ ---
2
+ name: welcome
3
+ description: First time using BOSS? Start here. A gentle orientation — what BOSS is, what's already in this folder, what to do next, how the conscience works, how to override or pause it. Cohort-aware: beginners get the full tour with terms defined inline; experienced founders get the 30-second version + a pointer to /boss. Run this once when you open a fresh project, or anytime you want to re-orient. Usage - /welcome
4
+ ---
5
+
6
+ # /welcome — the gentle entry into BOSS
7
+
8
+ The first thing a new founder sees in a `boss new` project shouldn't be a wall of documentation
9
+ or a power-user prompt that says *"drop your PRD."* It should be a hand: *here's what this is,
10
+ here's what's already in place, here's what to do next.* That's this skill.
11
+
12
+ This is the BOSS counterpart to *"hello, world."* Run it once when you open a fresh project.
13
+ Re-run anytime you want to re-orient. It doesn't do anything destructive; it talks and listens.
14
+
15
+ ## Voice rules for this skill specifically
16
+
17
+ - **Plain language.** No "scaffolding ceremony per Principle 2." Just "BOSS will lay down what
18
+ you need when you need it, not before."
19
+ - **Define terms inline** — *Quickstart*, *MVP*, *conscience*, *cohort*, *capture* — all need
20
+ a one-line definition the first time they appear. Don't assume the founder reads docs first.
21
+ - **Read the room.** If the founder's cohort is `returning-founder` / `eng-builder` /
22
+ `vibe-virtuoso` / `indie-hacker`, the orientation is 30 seconds, not 5 minutes — these
23
+ cohorts are intolerant of 101 content. Cite the cohort and trim accordingly.
24
+ - **No metaphor avalanche.** "Conscience" is the one anthropomorphism BOSS earns; the rest
25
+ stays mechanical (loops, moments, hooks). Don't extend the metaphor unless asked.
26
+ - **Close on the action — long content must tie back to the next step.** The failure mode this
27
+ skill was *built* to avoid: the founder reads a wall, gets the gist, and forgets what to *do*.
28
+ So never end a long passage on a recap. End it on the single next step, restated. If you've
29
+ just explained a lot, the last line is an action — *"So: your next step is `/boss <your idea>`."*
30
+ When in doubt, give the shape + the action, then **offer** the rest rather than printing it.
31
+
32
+ ## 0. Orient (silent)
33
+
34
+ Read, in order:
35
+ - `.boss/manifest.json` — current mode + installed agents/skills + boss version.
36
+ - `.boss/config.json` — `cohort`, `github`, `visibility`, `license`, any pause state.
37
+ - `CLAUDE.md` — the project's working rules.
38
+ - `docs/ideas/INDEX.md` — empty in a fresh project; lists ideas in a working one.
39
+
40
+ Don't announce these reads. Just orient.
41
+
42
+ ## 1. Open with a small introduction
43
+
44
+ > *"Welcome. This is BOSS — a tool that helps you build by nudging when something looks like
45
+ > it's drifting, and staying quiet the rest of the time. I'm Claude; I'll be working with you
46
+ > on this project. A quick orientation, then we'll get started — and you can skip anything
47
+ > you already know."*
48
+
49
+ That's it. No more than 3-4 sentences. The founder is here to build, not to read.
50
+
51
+ ## 2. Ask the cohort question (if unset)
52
+
53
+ Read `cohort` from `.boss/config.json`. If `null` (the default), ask the SAME open question
54
+ `/boss` step 6 asks:
55
+
56
+ > *"Quick optional thing — which of these sounds most like where you're starting from? It lets
57
+ > BOSS tune itself for you. If none fit, skip:*
58
+ > - *`vibe-coder-newbie` — picked up Cursor/Claude Code recently, no eng/startup background*
59
+ > - *`eng-builder` — strong eng background, first-time founder*
60
+ > - *`non-tech-founder` — domain expertise, no coding background, AI is the bridge*
61
+ > - *`first-product` — absolute first product ever, learning everything as you go*
62
+ > - *`vibe-virtuoso` — ships a lot of projects, harder time sustaining one*
63
+ > - *`indie-hacker` — building right-sized; calm-company, not venture*
64
+ > - *`returning-founder` — shipped before; want depth, not 101*
65
+ > - *`domain-expert` — deep expertise in a high-stakes domain (medical / legal / financial)*
66
+ > - *skip — leave it generic"*
67
+
68
+ On answer, write the value to `.boss/config.json` (don't disturb other fields). If they skip,
69
+ leave `null`. Move on. **Don't argue their pick** — they can edit the file later, and live use
70
+ will sharpen it.
71
+
72
+ ## 2.5 Ask: solo, or building with someone? (light, optional)
73
+
74
+ One more quick one — it decides whether BOSS's team layer is even visible:
75
+
76
+ > *"Are you building this **solo**, or **with a cofounder**? (You can change this anytime.)*
77
+ > - *Solo — BOSS stays out of your way; the team features stay dormant.*
78
+ > - *With someone — tell me their GitHub handle and BOSS keeps you both in the loop:*
79
+ > *`boss team add @their-handle "Their Name"`."*
80
+
81
+ If solo (or unsure), do nothing — that's the default and nothing changes. If they name a cofounder,
82
+ run `boss team add @handle "Name"` for them. The roster lights up the team layer (a shared decision
83
+ log via `/decide`, and more as the venture grows). **Never pressure the team answer** — solo is a
84
+ first-class, fully-supported path.
85
+
86
+ Either way, mention the quiet win once: *once you push this repo to GitHub, your thinking — ideas,
87
+ decisions, the canvas — is **backed up**, and a cofounder who clones it is automatically in the loop.
88
+ The only things that stay on your machine are your secrets and the conscience's private notes on how
89
+ its nudges landed for you.* (Don't belabor it — one line, then back to the next step.)
90
+
91
+ ## 3. Branch by cohort
92
+
93
+ ### 3a. Beginner cohorts → full orientation
94
+
95
+ If cohort is `first-product`, `vibe-coder-newbie`, `non-tech-founder`, or `null` (skipped),
96
+ walk the full tour below. **Use plain language and define every term the first time it
97
+ appears.** Sections are short on purpose — 2-3 sentences each, not paragraphs.
98
+
99
+ ### 3b. Experienced cohorts → 30-second version
100
+
101
+ If cohort is `eng-builder`, `vibe-virtuoso`, `indie-hacker`, or `returning-founder`:
102
+
103
+ > *"You probably don't need the tour. The short version: you're in Quickstart mode; the
104
+ > folder has `CLAUDE.md` (project rules), `.boss/` (mode + config), `.claude/` (skills +
105
+ > agents the project has access to). Run `/boss` to spin up — point it at your idea however it
106
+ > exists (a sentence, a file, a Google Doc / Obsidian / PDF / deck, a URL, or several); it pulls
107
+ > a copy into `docs/source/` and shapes it. `/import` adds more material to an idea later.
108
+ > The conscience (`UserPromptSubmit` hook) will nudge if it sees drift; `boss conscience pause`
109
+ > silences all of it, or `boss conscience mute <moment>` turns down just one (drift|caution|…)
110
+ > if a single nudge keeps missing. That's it. Ready when you are."*
111
+
112
+ Then **stop**. Don't elaborate. They'll ask if they want more.
113
+
114
+ ### 3c. Domain-expert → middle path
115
+
116
+ If cohort is `domain-expert`, do the full tour but **emphasize the high-stakes framing**
117
+ inline: BOSS treats hallucination as a human-in-the-loop event for this cohort; the AI-first
118
+ template (`/ai-first-init`, MVP-mode) defaults to privacy-first logging; the conscience errs
119
+ on the side of speaking when stakes are real. Domain experts have business sense but may be
120
+ new to building — pace accordingly.
121
+
122
+ ## 4. The full tour (beginner cohorts)
123
+
124
+ ### What BOSS is
125
+
126
+ > *"BOSS is a build tool. Three pieces:*
127
+ > 1. *A **mode** — how much structure the project has. New projects start in **Quickstart**
128
+ > (lightest); they level up to **MVP**, **V1**, and **Scale** as the project earns it.
129
+ > Think of modes like a notebook getting more organized as a project matures.*
130
+ > 2. *A set of **skills** — small commands like `/boss`, `/triage`, `/canvas` that do one
131
+ > thing well. You'll see them suggested as you work.*
132
+ > 3. *A **conscience** — a quiet background process that sometimes speaks up if something
133
+ > looks like it's drifting (capturing lots of ideas but never validating any, for example).
134
+ > It's a **nudge, never a block.** You can override or pause anytime."*
135
+
136
+ ### What's already in this folder
137
+
138
+ Read the manifest. Name what's there in plain language:
139
+
140
+ > *"You're in **Quickstart** mode right now. The folder has:*
141
+ > - *`CLAUDE.md` — the working rules for this project. Read it first.*
142
+ > - *`.boss/manifest.json` — what BOSS installed; `.boss/config.json` — your preferences.*
143
+ > - *`.claude/skills/` — the skills you can run with `/<name>`. Today: `/boss` (spin up an idea),
144
+ > `/triage` (capture one), `/prototype` (hit go — see it running), `/canvas` (pressure-test it),
145
+ > `/persona` (your user's voice), `/welcome` (you're here), and a few more (`boss map` lists them all).*
146
+ > - *`.claude/agents/` — specialized helpers BOSS can hand work off to: `pm` (decides what's
147
+ > worth building), `coder-generalist` (builds it once the stack is chosen), `mentor-
148
+ > venture` (advisory only — coaches on whether the bet is worth taking).*
149
+ > - *`docs/ideas/` — where ideas live as living docs. Empty now; fills as you capture."*
150
+
151
+ ### What to do next
152
+
153
+ Two paths. Name both; let the founder pick.
154
+
155
+ > *"**Path A — you have a rough idea or PRD already.** Run `/boss` next. Point me at it however it
156
+ > exists — a sentence, a file path, a URL, even a few of them (a Word doc, a deck, an Obsidian note,
157
+ > a PDF, a Google Doc link). I'll pull a copy into the project, shape it, capture it as `IDEA-001`,
158
+ > recommend a stack and mode, and (with your OK) create a private GitHub repo. That's the **spin-up**
159
+ > flow. (Already captured the idea and want to add more material later? That's `/import`.)*
160
+ >
161
+ > *Path B — you have a fragment, a hunch, or just a topic to noodle on. Run `/triage <one
162
+ > sentence about it>`. I'll create a living idea doc you can keep adding to. Re-run `/triage`
163
+ > anytime to add more. No commitment yet — capture first, decide later.*
164
+ >
165
+ > *And either way — if you'd rather **see** the idea than describe it, run `/prototype <the idea>`.
166
+ > I'll build the smallest clickable version of the one core thing so you can react to something real
167
+ > instead of a blank page. Building first is a fine place to start; we fill in the rest after.*
168
+ >
169
+ > *When the idea has legs, run `/canvas` — a humane pressure-test that asks: who's served?
170
+ > what's the tension? what's the promise? who could be harmed? what's the riskiest assumption?
171
+ > Canvas is the gate before you unlock MVP mode and start building."*
172
+
173
+ > **Pivot here — offer the rest, don't dump it.** The founder now has the shape and the next
174
+ > step. The three topics below (how the conscience works, how modes level up, where to find help)
175
+ > are **reference, not required reading** — printing all three is exactly the wall that makes a
176
+ > founder forget what to do. Name them in one breath and offer:
177
+ >
178
+ > > *"That's enough to start. There's more I can walk you through whenever you want it — how the
179
+ > > conscience nudges, how modes unlock as you go, where to get help — but none of it blocks you.
180
+ > > Want any of it now, or shall we get going with `/boss` or `/triage`?"*
181
+ >
182
+ > Expand a topic **only if they ask.** The sections below are the material you draw on then — not
183
+ > a script to read top-to-bottom. Either way, end on the action (section 5).
184
+
185
+ ### How the conscience works _(reference — expand only if asked)_
186
+
187
+ > *"The **conscience** is the most BOSS-specific thing here. It watches for a few specific
188
+ > drift patterns — for example: capturing three ideas in a row without filling out a canvas
189
+ > for any of them. When it sees one, it adds a short signal to my context (not a popup, not
190
+ > a block) — and I decide whether to surface it in my own voice. It's never canned text;
191
+ > it's never a gate.*
192
+ >
193
+ > *There are a handful of these drift patterns — each one is a **moment** (drift, caution,
194
+ > capture, focus…). You don't have to take all of them. Three controls, from broadest to
195
+ > most surgical:*
196
+ > - *`boss conscience pause --for 8h` — silences the **whole** conscience for a build session.
197
+ > Auto-resumes after 8 hours (or use `--until-resume` for indefinite + `boss conscience
198
+ > resume` later).*
199
+ > - *`boss conscience mute <moment> --for 7d` — turns down **one** moment (e.g.
200
+ > `boss conscience mute capture`) while the others keep speaking. Auto-unmutes when it
201
+ > expires, or `boss conscience unmute <moment>` / `--all`. Use this when one nudge keeps
202
+ > landing wrong but the rest are useful. (`boss conscience status` shows what's muted.)*
203
+ > - *In your devlog or commit, write `- **OVERRIDE:** <decision> — rationale: <why>`. BOSS
204
+ > records the override; it doesn't argue.*
205
+ >
206
+ > *The pattern is: deviation conscious, recorded, never blocked, never forgotten. If a moment
207
+ > isn't for you, mute it — that's a feature, not a fight."*
208
+
209
+ ### How modes level up _(reference — expand only if asked)_
210
+
211
+ > *"You're in Quickstart now. As the project earns more structure, you unlock the next mode:*
212
+ > - *`boss unlock mvp` — when the canvas holds up and you're ready to actually build. Adds
213
+ > spec discipline (`/spec` → `FEAT-NNN`), a smoke check (`/smoke`), evals (`/evals`), AI
214
+ > cost budgets (`/ai-cost`), failure-state design (`/ai-failure-states`), a devlog, a
215
+ > session-end ritual (`/close`).*
216
+ > - *`boss unlock v1` — when MVP is real and you need design system rigor, prototypes, a
217
+ > real database, an admin board.*
218
+ > - *Scale is on the roadmap; not authored yet — only earn it when you actually have one.*
219
+ >
220
+ > *Levels are **additive** — unlocking MVP keeps everything Quickstart added. You're not
221
+ > jumping; you're growing the system."*
222
+
223
+ ### Where to look for help _(reference — expand only if asked)_
224
+
225
+ > *"`boss --help` for CLI commands; `boss status` for what mode you're in; `boss list` for
226
+ > every project you've registered. In Claude, list available skills by typing `/`. The
227
+ > [README](https://github.com/ajeshh/BlueprintOS) and `PRINCIPLES.md` are the canonical
228
+ > references — short by design."*
229
+
230
+ ## 5. Wrap up — end on ONE exact next step
231
+
232
+ The founder has just read a fair amount. The single most important thing now: they leave knowing
233
+ *exactly what to type* — one literal command, not a menu. After a lot of content, a fork ("/boss or
234
+ /triage, your pick") re-triggers the forgetting this whole skill exists to prevent. So **recommend one
235
+ action, put the literal command on its own line, and demote the alternative to a single parenthetical:**
236
+
237
+ > *"That's the tour. Your next step — just one thing:*
238
+ >
239
+ > ***`/boss <your idea>`** — a sentence, or a path to a doc / a link / a Google Doc. I'll pull it in,
240
+ > shape it, and capture it. That's the whole start.*
241
+ >
242
+ > *(Only have a fragment, not a whole idea yet? `/triage <a thought>` instead — same start, lower stakes.)"*
243
+
244
+ Never end on *"pick whichever feels right."* One bold, literal, do-it-now command; the fallback gets a
245
+ parenthetical, not equal billing. The founder should be able to act without re-reading anything above.
246
+
247
+ ## Rules
248
+
249
+ - **Re-runnable.** `/welcome` does nothing destructive. Re-running is fine; the founder might
250
+ want to re-orient mid-project. Don't refuse to re-run.
251
+ - **Cohort changes the depth.** Beginner cohorts get the full tour; experienced cohorts get
252
+ the 30-second version. The cohort question is asked ONCE; the answer persists in
253
+ `.boss/config.json`.
254
+ - **No power moves.** Don't run `/boss`, `/triage`, or any other skill *for* the founder.
255
+ Suggest them; let the founder decide. /welcome is orientation, not action.
256
+ - **Don't oversell.** BOSS is a build tool, not a religion. If the founder says "this
257
+ is overkill for what I'm doing," they may be right — point at `boss conscience pause`,
258
+ point at the override grammar, point at the JIT principle. Don't argue.
259
+ - **Plain language wins.** The phrase *"just-in-time agentic ceremony"* doesn't belong in
260
+ this skill. The phrase *"BOSS lays down what you need when you need it"* does.
261
+ - **End with one clear next step.** The founder leaves /welcome with one of: a `/boss` run,
262
+ a `/triage` run, or a clear "I'll come back later." Three doors, no decision-paralysis.
@@ -0,0 +1,31 @@
1
+ # AGENTS.md — {{PROJECT_NAME}}
2
+
3
+ > Working rules for **any** AI coding agent in this repo (host-neutral). Scaffolded by BOSS
4
+ > (BOSS) {{BOSS_VERSION}} on {{DATE}}. Claude Code reads these through `CLAUDE.md` (which imports this
5
+ > file); other agent tools (Codex, Cursor, Copilot, Devin, …) read this file directly. Keep it the
6
+ > source of truth for how work is done here — `CLAUDE.md` adds only the Claude-specific layer.
7
+
8
+ ## Working rules (read first)
9
+
10
+ 1. **Capture before you build.** Every idea, bug, or ask becomes an `IDEA-NNN` before code. See `docs/ideas/INDEX.md`.
11
+ 2. **Stack-neutral until decided.** This project has no assumed stack. The first real build decision picks one; record it in an idea/spec, not in your head.
12
+ 3. **Source of truth is the docs, not the chat.** Decisions go in `docs/`. If code and a doc disagree, surface it before changing either.
13
+ 4. **Small, reversible steps.** One concern at a time. Prefer editing existing files to adding new ones.
14
+ 5. **Ask before risky/irreversible actions** (deletes, force-push, anything affecting shared state). Local reversible edits don't need a check.
15
+ 6. **Don't over-build.** No speculative abstractions, no error handling for impossible states, no comments that restate the code.
16
+ 7. **Grow the system deliberately.** This project grows through *modes* (Quickstart → MVP → V1 → Scale); add ceremony only when the project earns it. The BOSS CLI lays each mode down (`boss unlock <mode>`).
17
+
18
+ ## Conventions
19
+
20
+ - **IDs:** `IDEA-NNN` for raw ideas, `DEC-NNN` for load-bearing/hard-to-reverse decisions (see `docs/IDS.md`). More ID types unlock with later modes.
21
+ - **Decisions:** record the load-bearing or one-way-door calls with `/decide` → a `DEC-NNN` (Context / Decision / Why / Consequences + who decided + how reversible). Supersede, don't edit. The rationale future-you and a cofounder can read instead of guessing.
22
+ - **Frontmatter:** every new doc carries `id`, `type`, `owner`, `status`.
23
+ - **Backup & share:** your `docs/` (ideas, canvas, `DEC-NNN` decisions, RESUME) and the venture brain's `read.md` commit with the repo — so **pushing backs up your thinking**, and a cofounder who clones is **in the loop**. Only secrets and the conscience's private relationship-with-you stay local. Building with a cofounder? `boss team add @their-handle "Name"` (solo stays the default — the team layer is dormant until someone joins).
24
+ - **Git:** small commits, present-tense messages, never force-push shared branches without asking.
25
+
26
+ ## Project overview
27
+
28
+ <!-- Replace this with what {{PROJECT_NAME}} is. Already have it written somewhere — a doc, a deck,
29
+ an Obsidian note, a Google Doc, a PDF, a link? Point your agent at it and capture the idea. -->
30
+
31
+ _TBD — describe {{PROJECT_NAME}} here._
@@ -0,0 +1,57 @@
1
+ # CLAUDE.md — {{PROJECT_NAME}}
2
+
3
+ @AGENTS.md
4
+
5
+ > Scaffolded by BOSS {{BOSS_VERSION}} in **{{MODE}}** mode ({{STAGE}}) on {{DATE}}.
6
+ > The host-neutral **working rules + conventions live in `@AGENTS.md`** (imported above — read it
7
+ > first). This file adds only what's Claude-specific: the skills, the conscience, and the mode ladder.
8
+ > Keep it short — compliance drops past ~200 lines.
9
+
10
+ > **First time? Run `/welcome`** — gentle orientation, takes a minute, defines terms inline.
11
+ > Already familiar with BOSS? Skip to `/boss <idea, file, Google Doc / Obsidian / PDF, or URL>` to
12
+ > spin up — it pulls your material in. Already have it written somewhere? `/import <file|url>`.
13
+
14
+ ## What exists in this mode ({{MODE}})
15
+
16
+ - **Agents:** `pm` (decides what's worth building), `coder-generalist` (builds it, in whatever stack gets chosen), `mentor-venture` (coaches *you*, the founder — is this worth it, what's the riskiest assumption, what's the next real step).
17
+ - **Skills:** `/welcome` (gentle first-run orientation — cohort-aware), `/boss` (spin up an idea — point it at a sentence, file, doc, or URL), `/import` (bring existing material in — Word/Google Doc/Obsidian/PDF/deck/link → `docs/source/`), `/triage` (capture an idea & keep adding to it — a living doc), `/prototype` (drop an idea, hit go — build the smallest clickable version fast), `/canvas` (pressure-test it as a humane business when it has legs), `/decide` (record a load-bearing or hard-to-reverse call as a durable `DEC-NNN` — who decided, why, how reversible), `/persona` (your app's target user as a consultable voice), `/comprehend` (AI-native: tailor the scaffold to what BOSS understands — opt-in via `--ai`), `/feedback` (tell BOSS's makers what's working / broken — user-initiated, never background telemetry), `/boss-sync` + `/boss-learn` (pull BOSS updates in / promote a pattern UP).
18
+ - **Docs:** `docs/ideas/` (living idea docs + canvases), `docs/IDS.md` (the ID system, minimal here).
19
+ - **Memory:** two kinds, kept apart so context stays lean. *Durable facts* (who you are, settled decisions) → Claude's auto-memory, active across sessions. *Working state* (notes that only matter while you're in one area of the code) → `.claude/rules/your-app-code.md`, which loads **only when** Claude opens a file it's scoped to — not every session.
20
+
21
+ ### The Quickstart arc
22
+
23
+ Quickstart is a tiny incubator: **capture → keep adding → canvas → unlock MVP.**
24
+
25
+ 1. **Capture** a raw idea with `/triage` (or `/boss`). It becomes a living `docs/ideas/IDEA-NNN.md`.
26
+ 2. **Keep adding.** Re-run `/triage` whenever a new thought lands — it appends to the capture log and sharpens the idea. No pressure to "finish."
27
+ 3. **Canvas** it with `/canvas` once it has legs — a humane business pressure-test (the Humane Product Canvas + lean/Lenny prompts) that names the riskiest assumption and a one-week experiment.
28
+ 4. **Unlock MVP** (`boss unlock mvp`) when the canvas holds up and you're ready to build.
29
+
30
+ BOSS plays **conscience** along the way: if you keep capturing without testing anything, `/triage` will
31
+ pause once to ask *what does this prove?* — a nudge toward `/canvas`, never a gate. Capturing isn't the
32
+ same as validating.
33
+
34
+ ## The four modes (unlock additively)
35
+
36
+ This project is in **{{MODE}}** mode. Modes level up as the project earns it:
37
+
38
+ | Mode | Adds | When |
39
+ |---|---|---|
40
+ | **Quickstart** _(here)_ | idea capture, `/boss` spin-up, `/triage`, `/prototype`, pm + coder | you have an idea to capture |
41
+ | **MVP** | `/spec` + `FEAT-NNN`, `/smoke` build gate, devlog, `/close` + RESUME.md, tester | you're ready to build the first working version |
42
+ | **V1** | design system, prototypes, `/board`, doc-placement contract, db-architect | ready for a real, shippable v1 |
43
+ | **Scale** | PM org, refactor automation, code-health, product council | a fully blown-out, complex app |
44
+
45
+ Run `boss status` to see your mode and whether newer BOSS practices are available. Run `boss unlock <mode>` (e.g. `boss unlock mvp`) to level up.
46
+
47
+ ---
48
+
49
+ ## Reference
50
+
51
+ ### Agent roster (Quickstart)
52
+
53
+ | Agent | Use for |
54
+ |---|---|
55
+ | `pm` | What's worth building, scope, priority. Not a coder. |
56
+ | `coder-generalist` | Implementation in the chosen stack. Configured when the stack is decided. |
57
+ | `mentor-venture` | Coaches the founder: is this worth it, riskiest assumption, next step. Advisory only — no code. More mentors unlock per mode (see `docs/MENTORS.md`). |
@@ -0,0 +1,42 @@
1
+ ---
2
+ id: IDS
3
+ type: index
4
+ owner: pm
5
+ status: active
6
+ ---
7
+
8
+ # ID System — {{PROJECT_NAME}}
9
+
10
+ Stable IDs make work addressable across sessions and docs. New types unlock as the project matures.
11
+
12
+ ## Active in Quickstart mode
13
+
14
+ | Prefix | Means | Lives in |
15
+ |---|---|---|
16
+ | `IDEA-NNN` | A raw idea, bug, or ask | `docs/ideas/` |
17
+
18
+ ## Unlocks later
19
+
20
+ | Prefix | Means | Unlocks in mode |
21
+ |---|---|---|
22
+ | `FEAT-NNN` | A scoped feature with a spec | MVP |
23
+ | `FIX-NNN` / `BUG-NNN` | A cross-cutting fix or bug | MVP |
24
+ | `EXTR-NNN` | A pattern extraction decision (UP into library / DOWN into app core; PRINCIPLE #1) | MVP |
25
+ | `DEC-YYYY-MM-DD-NNN` | A logged decision | V1 |
26
+ | `RFC-NNN` | A decision document | Scale |
27
+ | `EXP-NNN` | A lab experiment | Scale |
28
+
29
+ ## Frontmatter (required on every new doc)
30
+
31
+ ```yaml
32
+ ---
33
+ id: <ID or slug>
34
+ type: <idea | feature | fix | decision | index | spec | ...>
35
+ owner: <agent or person>
36
+ status: <seedling | exploring | ready | building | shipped | dropped>
37
+ ---
38
+ ```
39
+
40
+ Numbering: allocate the next free integer per prefix. Before reserving a `FEAT-NNN`,
41
+ grep all of `docs/` (not just an index) so planning docs that reserve numbers ahead of
42
+ folders don't get clobbered.
@@ -0,0 +1,24 @@
1
+ ---
2
+ id: IDEAS-INDEX
3
+ type: index
4
+ owner: pm
5
+ status: active
6
+ ---
7
+
8
+ # {{PROJECT_NAME}} — Idea Pool
9
+
10
+ Raw ideas, captured before they're built. Use `/triage <thought>` to add one.
11
+ Promote an idea to a spec (`FEAT-NNN`) once MVP mode is unlocked and it's ready to build.
12
+
13
+ | ID | Title | Status | Note |
14
+ |---|---|---|---|
15
+ | _none yet_ | | | run `/triage` to capture the first |
16
+
17
+ ## Status values
18
+
19
+ - `seedling` — captured, not yet examined
20
+ - `exploring` — being thought through
21
+ - `ready` — scoped, ready to build (promote to FEAT in MVP mode)
22
+ - `building` — in progress
23
+ - `shipped` — done
24
+ - `dropped` — decided against (keep the row; record why)