@benzotti/jedi 0.1.20 → 0.1.21
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/dist/index.js
CHANGED
|
@@ -11403,7 +11403,13 @@ var actionCommand = defineCommand({
|
|
|
11403
11403
|
``,
|
|
11404
11404
|
`- If the feedback is a **question** ("why did you...", "what about...", "can you explain..."), answer it conversationally first. If the answer implies a change is needed, explain that and then apply it.`,
|
|
11405
11405
|
`- If the feedback is an **approval** ("approved", "lgtm", "looks good", "ship it"), finalise the current work \u2014 create commits and/or a PR as appropriate.`,
|
|
11406
|
-
`- If the feedback is a **refinement** ("change task 2", "use a different approach", "add error handling"), explain what you're changing and why, then apply the changes. Present an updated summary
|
|
11406
|
+
`- If the feedback is a **refinement** ("change task 2", "use a different approach", "add error handling"), explain what you're changing and why, then apply the changes. Present an updated summary with the full updated plan in a collapsible block:`,
|
|
11407
|
+
` <details>`,
|
|
11408
|
+
` <summary>View full plan</summary>`,
|
|
11409
|
+
` `,
|
|
11410
|
+
` [full updated plan content here as markdown]`,
|
|
11411
|
+
` `,
|
|
11412
|
+
` </details>`,
|
|
11407
11413
|
``,
|
|
11408
11414
|
`Read state.yaml and any existing plan files to understand what was previously done. Apply changes incrementally \u2014 do not restart from scratch.`
|
|
11409
11415
|
].join(`
|
|
@@ -11650,7 +11656,7 @@ var setupActionCommand = defineCommand({
|
|
|
11650
11656
|
// package.json
|
|
11651
11657
|
var package_default = {
|
|
11652
11658
|
name: "@benzotti/jedi",
|
|
11653
|
-
version: "0.1.
|
|
11659
|
+
version: "0.1.21",
|
|
11654
11660
|
description: "JDI - Context-efficient AI development framework for Claude Code",
|
|
11655
11661
|
type: "module",
|
|
11656
11662
|
bin: {
|
|
@@ -58,12 +58,23 @@ Plan files use human-readable slugged names: `{phase}-{plan}-{slug}.{suffix}`
|
|
|
58
58
|
|
|
59
59
|
## Task Sizing
|
|
60
60
|
|
|
61
|
+
Use t-shirt sizes instead of time estimates:
|
|
62
|
+
|
|
63
|
+
| Size | Scope |
|
|
64
|
+
|------|-------|
|
|
65
|
+
| **S** | Single file change, simple logic |
|
|
66
|
+
| **M** | 2-4 files, moderate logic or integration |
|
|
67
|
+
| **L** | 5+ files, complex logic, multiple subsystems |
|
|
68
|
+
| **XL** | Too large — must be split into multiple tasks |
|
|
69
|
+
|
|
61
70
|
| Constraint | Value |
|
|
62
71
|
|------------|-------|
|
|
63
|
-
| Duration | 15-60 min per task |
|
|
64
72
|
| Tasks per plan | 2-4 maximum |
|
|
65
73
|
| Context target | ~50% of budget |
|
|
66
74
|
| Each task | Independently verifiable |
|
|
75
|
+
| Max task size | L (split XL into smaller tasks) |
|
|
76
|
+
|
|
77
|
+
Never use time estimates. Use S/M/L sizing in task manifests and plan summaries.
|
|
67
78
|
|
|
68
79
|
---
|
|
69
80
|
|
|
@@ -137,7 +148,7 @@ Read `.jdi/config/variables.yaml` (create from template if missing). Update: `fe
|
|
|
137
148
|
3. Write each task to `.jdi/plans/{phase}-{plan}-{slug}.T{n}.md` — follow template from `.jdi/framework/templates/PLAN-TASK.md`. One file per task.
|
|
138
149
|
|
|
139
150
|
#### 7b: Update ROADMAP.yaml
|
|
140
|
-
Add plan entry to appropriate phase section with wave and
|
|
151
|
+
Add plan entry to appropriate phase section with wave and sizing.
|
|
141
152
|
|
|
142
153
|
#### 7c: Update REQUIREMENTS.yaml Traceability
|
|
143
154
|
Map requirements to plan tasks.
|
|
@@ -153,7 +164,7 @@ task_files:
|
|
|
153
164
|
- .jdi/plans/{phase}-{plan}-{slug}.T1.md
|
|
154
165
|
- .jdi/plans/{phase}-{plan}-{slug}.T2.md
|
|
155
166
|
task_count: {n}
|
|
156
|
-
|
|
167
|
+
overall_size: S | M | L
|
|
157
168
|
wave: {assigned_wave}
|
|
158
169
|
provides: [what this plan delivers]
|
|
159
170
|
```
|
|
@@ -62,11 +62,11 @@ tech_stack:
|
|
|
62
62
|
|
|
63
63
|
## Tasks
|
|
64
64
|
|
|
65
|
-
| Task | Name | Type | Wave | File |
|
|
66
|
-
|
|
67
|
-
| T1 | {Task Name} | auto | 1 | `{X}-{YY}-{plan-slug}.T1.md` |
|
|
68
|
-
| T2 | {Task Name} | auto | 1 | `{X}-{YY}-{plan-slug}.T2.md` |
|
|
69
|
-
| T3 | {Task Name} | checkpoint:human-verify | 2 | `{X}-{YY}-{plan-slug}.T3.md` |
|
|
65
|
+
| Task | Name | Size | Type | Wave | File |
|
|
66
|
+
|------|------|------|------|------|------|
|
|
67
|
+
| T1 | {Task Name} | S | auto | 1 | `{X}-{YY}-{plan-slug}.T1.md` |
|
|
68
|
+
| T2 | {Task Name} | M | auto | 1 | `{X}-{YY}-{plan-slug}.T2.md` |
|
|
69
|
+
| T3 | {Task Name} | S | checkpoint:human-verify | 2 | `{X}-{YY}-{plan-slug}.T3.md` |
|
|
70
70
|
|
|
71
71
|
> Task details are in individual files. See `task_files` in frontmatter.
|
|
72
72
|
|