@arvorco/relentless 0.1.0 → 0.1.5

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 (53) hide show
  1. package/README.md +30 -13
  2. package/bin/relentless.ts +1 -1
  3. package/package.json +3 -2
  4. package/.claude/commands/relentless.plan.old.md +0 -89
  5. package/.claude/settings.local.json +0 -23
  6. package/.claude/skills/analyze/SKILL.md +0 -149
  7. package/.claude/skills/checklist/SKILL.md +0 -173
  8. package/.claude/skills/checklist/templates/checklist-template.md +0 -40
  9. package/.claude/skills/clarify/SKILL.md +0 -174
  10. package/.claude/skills/constitution/SKILL.md +0 -150
  11. package/.claude/skills/constitution/templates/constitution-template.md +0 -228
  12. package/.claude/skills/implement/SKILL.md +0 -141
  13. package/.claude/skills/plan/SKILL.md +0 -179
  14. package/.claude/skills/plan/templates/plan-template.md +0 -104
  15. package/.claude/skills/prd/SKILL.md +0 -242
  16. package/.claude/skills/relentless/SKILL.md +0 -265
  17. package/.claude/skills/specify/SKILL.md +0 -220
  18. package/.claude/skills/specify/scripts/bash/check-prerequisites.sh +0 -166
  19. package/.claude/skills/specify/scripts/bash/common.sh +0 -156
  20. package/.claude/skills/specify/scripts/bash/create-new-feature.sh +0 -305
  21. package/.claude/skills/specify/scripts/bash/setup-plan.sh +0 -61
  22. package/.claude/skills/specify/scripts/bash/update-agent-context.sh +0 -799
  23. package/.claude/skills/specify/templates/spec-template.md +0 -115
  24. package/.claude/skills/tasks/SKILL.md +0 -202
  25. package/.claude/skills/tasks/templates/tasks-template.md +0 -251
  26. package/.claude/skills/taskstoissues/SKILL.md +0 -97
  27. package/.specify/memory/constitution.md +0 -50
  28. package/.specify/scripts/bash/check-prerequisites.sh +0 -166
  29. package/.specify/scripts/bash/common.sh +0 -156
  30. package/.specify/scripts/bash/create-new-feature.sh +0 -297
  31. package/.specify/scripts/bash/setup-plan.sh +0 -61
  32. package/.specify/scripts/bash/update-agent-context.sh +0 -799
  33. package/.specify/templates/agent-file-template.md +0 -28
  34. package/.specify/templates/checklist-template.md +0 -40
  35. package/.specify/templates/plan-template.md +0 -104
  36. package/.specify/templates/spec-template.md +0 -115
  37. package/.specify/templates/tasks-template.md +0 -251
  38. package/CHANGES_SUMMARY.md +0 -255
  39. package/CLAUDE.md +0 -92
  40. package/GEMINI_SETUP.md +0 -256
  41. package/REFACTOR_SUMMARY.md +0 -267
  42. package/bun.lock +0 -352
  43. package/prompt.md +0 -108
  44. package/ralph.sh +0 -80
  45. package/relentless/features/ghsk-ideas/prd.json +0 -229
  46. package/relentless/features/ghsk-ideas/prd.md +0 -191
  47. package/relentless/features/ghsk-ideas/progress.txt +0 -408
  48. package/relentless/prompt.md +0 -79
  49. package/skills/checklist/SKILL.md +0 -349
  50. package/skills/clarify/SKILL.md +0 -476
  51. package/skills/prd/SKILL.md +0 -242
  52. package/skills/relentless/SKILL.md +0 -268
  53. package/skills/tasks/SKILL.md +0 -577
@@ -1,267 +0,0 @@
1
- # Relentless Commands Refactoring Summary
2
-
3
- ## Overview
4
-
5
- Successfully forked and refactored Spec Kit-inspired commands into native Relentless commands. All commands now work with `relentless/features/` structure and are implemented as skills.
6
-
7
- ## Major Changes
8
-
9
- ### 1. Command Renaming
10
- - ✅ Renamed all `/speckit.*` commands to `/relentless.*`
11
- - ✅ Updated all internal references in command files
12
- - ✅ Updated documentation (README, etc.)
13
-
14
- ### 2. Directory Structure Migration
15
- - **From:** `.specify/specs/NNN-feature/`
16
- - **To:** `relentless/features/NNN-feature/`
17
-
18
- **New Feature Structure:**
19
- ```
20
- relentless/features/003-user-auth/
21
- ├── spec.md # Feature description (/relentless.specify)
22
- ├── plan.md # Technical plan (/relentless.plan)
23
- ├── tasks.md # User stories (/relentless.tasks) ← SOURCE FOR PRD.JSON
24
- ├── checklist.md # Quality checks (/relentless.checklist)
25
- ├── prd.json # For orchestrator (converted from tasks.md)
26
- └── progress.txt # Progress tracking
27
- ```
28
-
29
- ### 3. Skills Architecture
30
-
31
- **Commands are now thin wrappers that load skills:**
32
-
33
- ```
34
- .claude/
35
- ├── commands/ # Thin wrappers
36
- │ ├── relentless.constitution.md
37
- │ ├── relentless.specify.md
38
- │ ├── relentless.plan.md
39
- │ ├── relentless.tasks.md
40
- │ ├── relentless.checklist.md
41
- │ ├── relentless.clarify.md
42
- │ ├── relentless.analyze.md
43
- │ ├── relentless.implement.md
44
- │ └── relentless.taskstoissues.md
45
- └── skills/ # Heavy lifting
46
- ├── constitution/
47
- │ ├── SKILL.md
48
- │ └── templates/
49
- │ └── constitution-template.md
50
- ├── specify/
51
- │ ├── SKILL.md
52
- │ ├── templates/
53
- │ │ └── spec-template.md
54
- │ └── scripts/
55
- │ └── bash/
56
- │ ├── create-new-feature.sh # Refactored for relentless/features/
57
- │ ├── check-prerequisites.sh
58
- │ └── ...
59
- ├── plan/
60
- │ ├── SKILL.md
61
- │ └── templates/
62
- │ └── plan-template.md
63
- ├── tasks/
64
- │ ├── SKILL.md
65
- │ └── templates/
66
- │ └── tasks-template.md
67
- ├── checklist/
68
- │ ├── SKILL.md
69
- │ └── templates/
70
- │ └── checklist-template.md
71
- ├── clarify/
72
- │ └── SKILL.md
73
- ├── analyze/
74
- │ └── SKILL.md
75
- ├── implement/
76
- │ └── SKILL.md
77
- └── taskstoissues/
78
- └── SKILL.md
79
- ```
80
-
81
- ### 4. Constitution Flow
82
-
83
- **OLD (wrong):**
84
- ```bash
85
- relentless init → copies constitution template ❌
86
- ```
87
-
88
- **NEW (correct):**
89
- ```bash
90
- relentless init → creates empty structure
91
- /relentless.constitution → Asks questions, generates personalized constitution ✓
92
- ```
93
-
94
- Constitution is now generated per-project, not copied from a template.
95
-
96
- ### 5. Workflow Updates
97
-
98
- **NEW Complete Workflow:**
99
-
100
- ```bash
101
- # 1. Initialize
102
- relentless init
103
-
104
- # 2. Create personalized constitution (recommended first step)
105
- /relentless.constitution
106
-
107
- # 3. Create feature specification
108
- /relentless.specify Add user authentication with OAuth2
109
-
110
- # 4. Generate technical plan
111
- /relentless.plan I'm using React, TypeScript, PostgreSQL
112
-
113
- # 5. Generate user stories (THIS CREATES THE PRD SOURCE!)
114
- /relentless.tasks
115
-
116
- # 6. Generate quality checklist
117
- /relentless.checklist
118
-
119
- # 7. Convert tasks.md to prd.json
120
- relentless convert relentless/features/003-user-auth/tasks.md --feature 003-user-auth
121
-
122
- # 8. Run orchestration
123
- relentless run --feature 003-user-auth --tui
124
- ```
125
-
126
- ### 6. Convert Command Updates
127
-
128
- **OLD:**
129
- - Read any markdown file
130
- - Expected `prd.md` with user stories
131
-
132
- **NEW:**
133
- - Reads `tasks.md` (primary source for user stories)
134
- - Optional: `--with-checklist` flag to merge checklist items
135
- - Future: Will also read spec.md and plan.md for context
136
-
137
- ```bash
138
- # Basic conversion
139
- relentless convert relentless/features/003-user-auth/tasks.md --feature 003-user-auth
140
-
141
- # With checklist merging
142
- relentless convert relentless/features/003-user-auth/tasks.md --feature 003-user-auth --with-checklist
143
- ```
144
-
145
- ### 7. Scaffolder Updates
146
-
147
- **Init now installs all skills:**
148
- - constitution
149
- - specify
150
- - plan
151
- - tasks
152
- - checklist
153
- - clarify
154
- - analyze
155
- - implement
156
- - taskstoissues
157
- - prd (existing)
158
- - relentless (existing)
159
-
160
- **Does NOT copy constitution.md** - this must be generated via `/relentless.constitution`
161
-
162
- ### 8. Script Refactoring
163
-
164
- All bash scripts updated to work with `relentless/features/`:
165
- - ✅ `create-new-feature.sh` - Creates features in `relentless/features/`
166
- - ✅ `check-prerequisites.sh` - Updated paths
167
- - ✅ `setup-plan.sh` - Updated paths
168
- - ✅ All scripts use skills templates
169
-
170
- ## Key Files Modified
171
-
172
- ### Core Files
173
- - `bin/relentless.ts` - Updated convert command
174
- - `src/init/scaffolder.ts` - Updated skill installation
175
- - `README.md` - Updated workflow examples
176
-
177
- ### Commands (Simplified)
178
- All commands are now thin wrappers (~10-20 lines each):
179
- - Load the corresponding skill
180
- - Pass user context
181
- - Let skill do the heavy lifting
182
-
183
- ### Skills (New)
184
- Created 9 new comprehensive skills with:
185
- - Step-by-step instructions
186
- - Template references
187
- - Validation rules
188
- - Example outputs
189
-
190
- ## Testing Checklist
191
-
192
- - [ ] `relentless init` creates correct structure
193
- - [ ] Skills are installed in `.claude/skills/`
194
- - [ ] Commands are installed in `.claude/commands/`
195
- - [ ] `/relentless.constitution` generates constitution.md
196
- - [ ] `/relentless.specify` creates numbered feature directory
197
- - [ ] Scripts create files in `relentless/features/NNN-feature/`
198
- - [ ] `tasks.md` has correct user story format
199
- - [ ] `relentless convert tasks.md` generates prd.json
200
- - [ ] `relentless run` works with generated prd.json
201
-
202
- ## Breaking Changes
203
-
204
- 1. **Directory structure changed** - Old projects using `.specify/specs/` need migration
205
- 2. **Constitution not auto-copied** - Must run `/relentless.constitution`
206
- 3. **Convert expects tasks.md** - Not prd.md or spec.md
207
- 4. **Commands renamed** - `/speckit.*` → `/relentless.*`
208
-
209
- ## Migration Guide
210
-
211
- For existing projects using old structure:
212
-
213
- ```bash
214
- # 1. Move specs to features
215
- mv .specify/specs/* relentless/features/
216
-
217
- # 2. Rename spec.md → tasks.md if it contains user stories
218
- cd relentless/features/NNN-feature
219
- mv spec.md tasks.md # if spec.md contains user stories
220
-
221
- # 3. Run convert with new path
222
- relentless convert relentless/features/NNN-feature/tasks.md --feature NNN-feature
223
- ```
224
-
225
- ## Agent Support Strategy
226
-
227
- ### Tier 1: Full Skills Support ✅
228
- **Agents:** Claude Code, Amp, OpenCode
229
- **Status:** Ready to use
230
- **Experience:** Best - full interactive workflow with `/relentless.*` commands
231
-
232
- ### Tier 2: Extensions/Hybrid 🔄
233
- **Agents:** Gemini
234
- **Status:** In development
235
- **Experience:** Good - will use Gemini extensions format
236
- **Current Workaround:** Manual file creation + prompting
237
-
238
- ### Tier 3: Manual/CLI 📝
239
- **Agents:** Droid, Codex
240
- **Status:** Works but manual
241
- **Experience:** Basic - create files manually or prompt agent to create them
242
- **Workflow:** Use CLI commands + manual file editing
243
-
244
- ### Why This Approach?
245
-
246
- 1. **Best for power users** - Claude/Amp/OpenCode get full interactive workflow
247
- 2. **Extensible** - Easy to add support for new agents
248
- 3. **Universal core** - All agents can use `relentless run` for orchestration
249
- 4. **Graceful degradation** - Manual workflow always available
250
-
251
- ## Next Steps
252
-
253
- 1. ✅ Update README workflow section with new flow
254
- 2. ✅ Document agent support tiers
255
- 3. ✅ Create GEMINI_SETUP.md guide
256
- 4. Test complete workflow end-to-end with each agent tier
257
- 5. Add checklist merging logic to convert command
258
- 6. Create migration script for old projects
259
- 7. Implement Gemini extensions conversion script
260
- 8. Update video tutorials/documentation
261
-
262
- ## References
263
-
264
- - Inspired by GitHub Spec Kit
265
- - Forked and adapted for Relentless
266
- - Native integration with Relentless orchestration
267
- - Works with relentless/features/ structure