@benzotti/jedi 0.1.29 → 0.1.31
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/README.md +235 -412
- package/action/workflow-template.yml +20 -7
- package/dist/index.js +579 -335
- package/framework/agents/jdi-backend.md +1 -1
- package/framework/agents/jdi-devops.md +1 -1
- package/framework/agents/jdi-frontend.md +1 -1
- package/framework/agents/jdi-planner.md +4 -5
- package/framework/agents/jdi-quality.md +1 -1
- package/framework/commands/implement-plan.md +2 -0
- package/framework/commands/quick.md +2 -0
- package/framework/components/meta/AgentBase.md +1 -1
- package/framework/components/meta/StateUpdate.md +22 -163
- package/framework/components/quality/PRReview.md +19 -1
- package/framework/jedi.md +1 -1
- package/framework/templates/CLAUDE-SHARED.md +42 -0
- package/package.json +1 -1
- package/framework/components/quality/PRReviewLocal.md +0 -99
- package/framework/templates/PROJECT.md +0 -104
- package/framework/templates/REQUIREMENTS.md +0 -95
- package/framework/templates/ROADMAP.md +0 -116
- package/framework/templates/STATE.md +0 -137
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
# Requirements
|
|
2
|
-
|
|
3
|
-
> Scoped requirements for {Project Name}
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Overview
|
|
8
|
-
|
|
9
|
-
| Category | v1 | v2 | Out of Scope |
|
|
10
|
-
|----------|----|----|--------------|
|
|
11
|
-
| {Category 1} | {count} | {count} | {count} |
|
|
12
|
-
| {Category 2} | {count} | {count} | {count} |
|
|
13
|
-
| **Total** | **{total}** | **{total}** | **{total}** |
|
|
14
|
-
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
## v1 Requirements
|
|
18
|
-
|
|
19
|
-
### {Category 1}
|
|
20
|
-
|
|
21
|
-
| REQ-ID | Requirement | Priority | Status |
|
|
22
|
-
|--------|-------------|----------|--------|
|
|
23
|
-
| {CAT}-01 | {User can...} | High | Pending |
|
|
24
|
-
| {CAT}-02 | {User can...} | Medium | Pending |
|
|
25
|
-
|
|
26
|
-
#### {CAT}-01: {Short name}
|
|
27
|
-
|
|
28
|
-
**Requirement:** {Full description}
|
|
29
|
-
|
|
30
|
-
**Acceptance Criteria:**
|
|
31
|
-
- [ ] {Criterion 1}
|
|
32
|
-
- [ ] {Criterion 2}
|
|
33
|
-
- [ ] {Criterion 3}
|
|
34
|
-
|
|
35
|
-
**Notes:** {Any additional context}
|
|
36
|
-
|
|
37
|
-
---
|
|
38
|
-
|
|
39
|
-
#### {CAT}-02: {Short name}
|
|
40
|
-
|
|
41
|
-
**Requirement:** {Full description}
|
|
42
|
-
|
|
43
|
-
**Acceptance Criteria:**
|
|
44
|
-
- [ ] {Criterion 1}
|
|
45
|
-
- [ ] {Criterion 2}
|
|
46
|
-
|
|
47
|
-
---
|
|
48
|
-
|
|
49
|
-
### {Category 2}
|
|
50
|
-
|
|
51
|
-
| REQ-ID | Requirement | Priority | Status |
|
|
52
|
-
|--------|-------------|----------|--------|
|
|
53
|
-
| {CAT2}-01 | {User can...} | High | Pending |
|
|
54
|
-
|
|
55
|
-
---
|
|
56
|
-
|
|
57
|
-
## v2 Requirements
|
|
58
|
-
|
|
59
|
-
{Deferred to future version}
|
|
60
|
-
|
|
61
|
-
| REQ-ID | Requirement | Reason for Deferral |
|
|
62
|
-
|--------|-------------|---------------------|
|
|
63
|
-
| {CAT}-03 | {User can...} | {Not critical for MVP} |
|
|
64
|
-
|
|
65
|
-
---
|
|
66
|
-
|
|
67
|
-
## Out of Scope
|
|
68
|
-
|
|
69
|
-
{Explicitly excluded from all versions}
|
|
70
|
-
|
|
71
|
-
| Item | Reason |
|
|
72
|
-
|------|--------|
|
|
73
|
-
| {Feature} | {Why it's excluded} |
|
|
74
|
-
|
|
75
|
-
---
|
|
76
|
-
|
|
77
|
-
## Traceability
|
|
78
|
-
|
|
79
|
-
| REQ-ID | Phase | Plan | Status |
|
|
80
|
-
|--------|-------|------|--------|
|
|
81
|
-
| {CAT}-01 | 1 | 01 | Pending |
|
|
82
|
-
| {CAT}-02 | 1 | 02 | Pending |
|
|
83
|
-
| {CAT2}-01 | 2 | 01 | Pending |
|
|
84
|
-
|
|
85
|
-
---
|
|
86
|
-
|
|
87
|
-
## Change Log
|
|
88
|
-
|
|
89
|
-
| Date | Change | Reason |
|
|
90
|
-
|------|--------|--------|
|
|
91
|
-
| {date} | Initial requirements | Project initialisation |
|
|
92
|
-
|
|
93
|
-
---
|
|
94
|
-
|
|
95
|
-
*Last updated: {date}*
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
# Roadmap
|
|
2
|
-
|
|
3
|
-
> Phase structure for {Project Name}
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Overview
|
|
8
|
-
|
|
9
|
-
| Phase | Name | Plans | Requirements | Status |
|
|
10
|
-
|-------|------|-------|--------------|--------|
|
|
11
|
-
| 1 | {name} | {count} | {REQ-IDs} | Pending |
|
|
12
|
-
| 2 | {name} | {count} | {REQ-IDs} | Pending |
|
|
13
|
-
| 3 | {name} | {count} | {REQ-IDs} | Pending |
|
|
14
|
-
|
|
15
|
-
**Total:** {N} phases | {M} plans | {R} requirements
|
|
16
|
-
|
|
17
|
-
---
|
|
18
|
-
|
|
19
|
-
## Phase 1: {Phase Name}
|
|
20
|
-
|
|
21
|
-
**Goal:** {What this phase achieves - one sentence}
|
|
22
|
-
|
|
23
|
-
**Requirements:** {REQ-IDs covered}
|
|
24
|
-
|
|
25
|
-
**Must-Haves:**
|
|
26
|
-
- {Observable outcome 1}
|
|
27
|
-
- {Observable outcome 2}
|
|
28
|
-
- {Observable outcome 3}
|
|
29
|
-
|
|
30
|
-
**Plans:**
|
|
31
|
-
| Plan | Name | Tasks | Wave | Status |
|
|
32
|
-
|------|------|-------|------|--------|
|
|
33
|
-
| 01 | {name} | {count} | 1 | Pending |
|
|
34
|
-
| 02 | {name} | {count} | 1 | Pending |
|
|
35
|
-
| 03 | {name} | {count} | 2 | Pending |
|
|
36
|
-
|
|
37
|
-
**Dependencies:** None (first phase)
|
|
38
|
-
|
|
39
|
-
---
|
|
40
|
-
|
|
41
|
-
## Phase 2: {Phase Name}
|
|
42
|
-
|
|
43
|
-
**Goal:** {What this phase achieves}
|
|
44
|
-
|
|
45
|
-
**Requirements:** {REQ-IDs covered}
|
|
46
|
-
|
|
47
|
-
**Must-Haves:**
|
|
48
|
-
- {Observable outcome 1}
|
|
49
|
-
- {Observable outcome 2}
|
|
50
|
-
|
|
51
|
-
**Plans:**
|
|
52
|
-
| Plan | Name | Tasks | Wave | Status |
|
|
53
|
-
|------|------|-------|------|--------|
|
|
54
|
-
| 01 | {name} | {count} | 1 | Pending |
|
|
55
|
-
| 02 | {name} | {count} | 2 | Pending |
|
|
56
|
-
|
|
57
|
-
**Dependencies:** Phase 1 complete
|
|
58
|
-
|
|
59
|
-
---
|
|
60
|
-
|
|
61
|
-
## Phase 3: {Phase Name}
|
|
62
|
-
|
|
63
|
-
**Goal:** {What this phase achieves}
|
|
64
|
-
|
|
65
|
-
**Requirements:** {REQ-IDs covered}
|
|
66
|
-
|
|
67
|
-
**Must-Haves:**
|
|
68
|
-
- {Observable outcome 1}
|
|
69
|
-
- {Observable outcome 2}
|
|
70
|
-
|
|
71
|
-
**Plans:**
|
|
72
|
-
| Plan | Name | Tasks | Wave | Status |
|
|
73
|
-
|------|------|-------|------|--------|
|
|
74
|
-
| 01 | {name} | {count} | 1 | Pending |
|
|
75
|
-
|
|
76
|
-
**Dependencies:** Phase 2 complete
|
|
77
|
-
|
|
78
|
-
---
|
|
79
|
-
|
|
80
|
-
## Milestone Summary
|
|
81
|
-
|
|
82
|
-
```
|
|
83
|
-
Phase 1: {name}
|
|
84
|
-
├── Plan 01: {name}
|
|
85
|
-
├── Plan 02: {name}
|
|
86
|
-
└── Plan 03: {name}
|
|
87
|
-
|
|
88
|
-
Phase 2: {name}
|
|
89
|
-
├── Plan 01: {name}
|
|
90
|
-
└── Plan 02: {name}
|
|
91
|
-
|
|
92
|
-
Phase 3: {name}
|
|
93
|
-
└── Plan 01: {name}
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
---
|
|
97
|
-
|
|
98
|
-
## Requirement Coverage
|
|
99
|
-
|
|
100
|
-
| REQ-ID | Requirement | Phase | Plan |
|
|
101
|
-
|--------|-------------|-------|------|
|
|
102
|
-
| {CAT}-01 | {short name} | 1 | 01 |
|
|
103
|
-
| {CAT}-02 | {short name} | 1 | 02 |
|
|
104
|
-
| {CAT2}-01 | {short name} | 2 | 01 |
|
|
105
|
-
|
|
106
|
-
**Coverage:** 100% of v1 requirements mapped
|
|
107
|
-
|
|
108
|
-
---
|
|
109
|
-
|
|
110
|
-
## Notes
|
|
111
|
-
|
|
112
|
-
{Any additional context about the roadmap structure, sequencing decisions, etc.}
|
|
113
|
-
|
|
114
|
-
---
|
|
115
|
-
|
|
116
|
-
*Last updated: {date}*
|
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
# Project State
|
|
2
|
-
|
|
3
|
-
> Living memory for {Project Name}
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
<section name="Position">
|
|
8
|
-
|
|
9
|
-
## Current Position
|
|
10
|
-
|
|
11
|
-
**Phase:** {X} of {Y} ({phase name})
|
|
12
|
-
**Plan:** {A} of {B} ({plan name})
|
|
13
|
-
**Status:** {Idle | Planning | Executing | Verifying | Complete | Blocked}
|
|
14
|
-
**Last activity:** {date} - {what happened}
|
|
15
|
-
|
|
16
|
-
**Progress:**
|
|
17
|
-
```
|
|
18
|
-
[████████████░░░░░░░░] 60%
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
</section>
|
|
22
|
-
|
|
23
|
-
---
|
|
24
|
-
|
|
25
|
-
<section name="Continuity">
|
|
26
|
-
|
|
27
|
-
## Session Continuity
|
|
28
|
-
|
|
29
|
-
**Last session:** {date and time}
|
|
30
|
-
**Stopped at:** {where work stopped}
|
|
31
|
-
**Resume file:** {path to plan index file or "None"}
|
|
32
|
-
|
|
33
|
-
**To continue:**
|
|
34
|
-
1. {Next step}
|
|
35
|
-
2. {Following step}
|
|
36
|
-
|
|
37
|
-
## Brief Alignment
|
|
38
|
-
|
|
39
|
-
{2-3 sentences about current project state. What's done? What's next? Any blockers?}
|
|
40
|
-
|
|
41
|
-
</section>
|
|
42
|
-
|
|
43
|
-
---
|
|
44
|
-
|
|
45
|
-
<section name="Decisions">
|
|
46
|
-
|
|
47
|
-
## Decisions
|
|
48
|
-
|
|
49
|
-
| Date | Phase | Decision | Rationale |
|
|
50
|
-
|------|-------|----------|-----------|
|
|
51
|
-
| {date} | {X} | {decision} | {why} |
|
|
52
|
-
|
|
53
|
-
</section>
|
|
54
|
-
|
|
55
|
-
---
|
|
56
|
-
|
|
57
|
-
<section name="Blockers">
|
|
58
|
-
|
|
59
|
-
## Blockers
|
|
60
|
-
|
|
61
|
-
### Active
|
|
62
|
-
|
|
63
|
-
- [ ] **{Type}**: {description}
|
|
64
|
-
- Impact: {what's blocked}
|
|
65
|
-
- Added: {date}
|
|
66
|
-
|
|
67
|
-
### Resolved
|
|
68
|
-
|
|
69
|
-
- [x] **{Type}**: {description}
|
|
70
|
-
- Resolved: {date} - {how}
|
|
71
|
-
|
|
72
|
-
</section>
|
|
73
|
-
|
|
74
|
-
---
|
|
75
|
-
|
|
76
|
-
<section name="Progress">
|
|
77
|
-
|
|
78
|
-
## Phase Progress
|
|
79
|
-
|
|
80
|
-
### Phase 1: {name}
|
|
81
|
-
|
|
82
|
-
| Plan | Name | Status | SUMMARY |
|
|
83
|
-
|------|------|--------|---------|
|
|
84
|
-
| 01 | {name} | Complete | ✓ |
|
|
85
|
-
| 02 | {name} | In Progress | — |
|
|
86
|
-
| 03 | {name} | Pending | — |
|
|
87
|
-
|
|
88
|
-
### Phase 2: {name}
|
|
89
|
-
|
|
90
|
-
| Plan | Name | Status | SUMMARY |
|
|
91
|
-
|------|------|--------|---------|
|
|
92
|
-
| 01 | {name} | Pending | — |
|
|
93
|
-
|
|
94
|
-
</section>
|
|
95
|
-
|
|
96
|
-
---
|
|
97
|
-
|
|
98
|
-
<section name="Context">
|
|
99
|
-
|
|
100
|
-
## Accumulated Context
|
|
101
|
-
|
|
102
|
-
### Key Files
|
|
103
|
-
|
|
104
|
-
| File | Purpose |
|
|
105
|
-
|------|---------|
|
|
106
|
-
| {path} | {what it does} |
|
|
107
|
-
|
|
108
|
-
### Patterns Established
|
|
109
|
-
|
|
110
|
-
- {Pattern 1}: {description}
|
|
111
|
-
- {Pattern 2}: {description}
|
|
112
|
-
|
|
113
|
-
### Things to Watch
|
|
114
|
-
|
|
115
|
-
- {Item 1}
|
|
116
|
-
- {Item 2}
|
|
117
|
-
|
|
118
|
-
## Metrics
|
|
119
|
-
|
|
120
|
-
| Metric | Value |
|
|
121
|
-
|--------|-------|
|
|
122
|
-
| Plans completed | {X} / {Y} |
|
|
123
|
-
| Tasks completed | {A} / {B} |
|
|
124
|
-
| Commits | {count} |
|
|
125
|
-
| Deviations | {count} |
|
|
126
|
-
|
|
127
|
-
## Session Log
|
|
128
|
-
|
|
129
|
-
| Date | Duration | Activity | Outcome |
|
|
130
|
-
|------|----------|----------|---------|
|
|
131
|
-
| {date} | {time} | {what was done} | {result} |
|
|
132
|
-
|
|
133
|
-
</section>
|
|
134
|
-
|
|
135
|
-
---
|
|
136
|
-
|
|
137
|
-
*Auto-updated during execution*
|