create-harness-vibe-coding 0.1.8 → 0.1.9

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-harness-vibe-coding",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Scaffold a 0-1 product harness for AI-assisted research, PRD, planning, architecture, build, test, and feedback loops",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,9 +1,12 @@
1
1
  # {{FEATURE_NAME}}
2
2
 
3
- > **When to use**: During the PRD phase, every new feature identified in `research/PRD.md` must have its own features document created from this template. One feature = one doc = one implementation unit. Do not code a PRD scope item without a corresponding features doc.
3
+ > **When to use**: Every PRD scope item in `research/PRD.md` Section 2 must have a feature doc either a new one from this template, or an iteration on an existing one. Do not code a PRD scope item without a corresponding features doc.
4
+ >
5
+ > **New vs iterate**: If the scope item has ≥85% overlap with an existing feature doc, iterate the existing doc (bump `Version`, add a `## Changelog` entry). If overlap is below 85%, create a new file from this template. When in doubt, ask the user.
4
6
 
5
7
  > **Status**: Draft / In Progress / Blocked / Done
6
8
  > **Created**: {{YYYY-MM-DD}}
9
+ > **Version**: 1
7
10
  > **Owner**: {{OWNER_OR_AGENT}}
8
11
  > **Related Docs**: {{PRD_OR_ARCH_DOC_LINKS}}
9
12
 
@@ -142,3 +145,13 @@ Estimate the context budget for this feature. If the main agent would need to re
142
145
 
143
146
  Remaining risks:
144
147
  - {{RISK_OR_NONE}}
148
+
149
+ ---
150
+
151
+ ## 5. Changelog
152
+
153
+ > Only populate when iterating an existing feature doc (Version ≥ 2).
154
+
155
+ | Version | Date | What Changed | Reason |
156
+ | --- | --- | --- | --- |
157
+ | 1 | {{YYYY-MM-DD}} | Initial version | — |
@@ -12,15 +12,11 @@ If context grows, load [context-loading.md](context-loading.md) and split the wo
12
12
 
13
13
  ## Feature Packet
14
14
 
15
- Create `docs/features/{{FEATURE_SLUG}}.md` from [../features/_template.md](../features/_template.md) when work changes behavior, touches multiple files, crosses layers, or needs more than one short session.
15
+ Every PRD scope item (`research/PRD.md` Section 2) must have its own feature doc at `docs/features/<name>.md` created from `docs/features/_template.md`. One feature = one doc = one implementation unit. Do not code without a feature doc.
16
16
 
17
- The packet must contain:
17
+ Small scope is not an exception — a short feature doc is better than none. If the work is truly too small for a full feature doc (single-file fix, no behavior change), it is not a PRD scope item.
18
18
 
19
- - requirements and non-goals
20
- - acceptance criteria
21
- - allowed write set and forbidden scope
22
- - task list with verification commands
23
- - test results and residual risks
19
+ **New vs iterate**: if a PRD scope item has ≥85% overlap with an existing feature doc, open the existing doc, bump `Version`, and add a `## Changelog` entry. Only create a new file when the scope is substantially different. When unsure, ask.
24
20
 
25
21
  ## Standard Build Loop
26
22