jettypod 4.4.1 → 4.4.3
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/jettypod.js +89 -0
- package/package.json +1 -1
- package/skills-templates/epic-planning/SKILL.md +105 -11
- package/skills-templates/feature-planning/SKILL.md +158 -113
- package/skills-templates/production-mode/SKILL.md +4 -7
- package/skills-templates/speed-mode/SKILL.md +471 -463
- package/skills-templates/stable-mode/SKILL.md +319 -371
|
@@ -39,8 +39,8 @@ When this skill is activated, you are helping implement a production mode chore
|
|
|
39
39
|
**To detect context, check these conditions:**
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
# Get current work and parent feature
|
|
43
|
-
jettypod
|
|
42
|
+
# Get current work item and parent feature
|
|
43
|
+
sqlite3 .jettypod/work.db "SELECT wi.id, wi.title, wi.type, wi.parent_id, wi.epic_id, parent.title as parent_title FROM work_items wi LEFT JOIN work_items parent ON wi.parent_id = parent.id WHERE wi.status = 'in_progress'"
|
|
44
44
|
|
|
45
45
|
# Check for production scenarios in the feature file
|
|
46
46
|
# (Look for scenarios tagged with @production or containing production-related keywords)
|
|
@@ -230,11 +230,8 @@ This will:
|
|
|
230
230
|
**Get current work and identify target scenario:**
|
|
231
231
|
|
|
232
232
|
```bash
|
|
233
|
-
# Get current chore details
|
|
234
|
-
jettypod
|
|
235
|
-
|
|
236
|
-
# Get parent feature's scenario file
|
|
237
|
-
sqlite3 .jettypod/work.db "SELECT scenario_file FROM work_items WHERE id = <parent-feature-id>"
|
|
233
|
+
# Get current chore details and parent feature's scenario file
|
|
234
|
+
sqlite3 .jettypod/work.db "SELECT wi.id, wi.title, wi.description, wi.parent_id, parent.scenario_file FROM work_items wi LEFT JOIN work_items parent ON wi.parent_id = parent.id WHERE wi.status = 'in_progress'"
|
|
238
235
|
```
|
|
239
236
|
|
|
240
237
|
Parse the chore description to find which scenario it addresses (look for "Scenario: ..." in the description).
|