kspec 1.0.14 → 1.0.15
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 +1 -1
- package/src/index.js +12 -12
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -334,7 +334,7 @@ Your job:
|
|
|
334
334
|
4. Identify risks, tech debt, improvement areas
|
|
335
335
|
|
|
336
336
|
Output a clear analysis report. Propose specific steering doc updates.`,
|
|
337
|
-
keyboardShortcut: 'ctrl+a',
|
|
337
|
+
keyboardShortcut: 'ctrl+shift+a',
|
|
338
338
|
welcomeMessage: 'Analysing codebase...'
|
|
339
339
|
},
|
|
340
340
|
|
|
@@ -368,7 +368,7 @@ WORKFLOW (do this autonomously):
|
|
|
368
368
|
6. Update .kspec/CONTEXT.md with current state
|
|
369
369
|
|
|
370
370
|
After completion, suggest: "Switch to kspec-tasks agent to generate implementation tasks"`,
|
|
371
|
-
keyboardShortcut: 'ctrl+s',
|
|
371
|
+
keyboardShortcut: 'ctrl+shift+s',
|
|
372
372
|
welcomeMessage: 'Ready to create specification. Describe your feature.'
|
|
373
373
|
},
|
|
374
374
|
|
|
@@ -400,7 +400,7 @@ WORKFLOW:
|
|
|
400
400
|
Tasks must be atomic and independently verifiable.
|
|
401
401
|
|
|
402
402
|
After completion, suggest: "Switch to kspec-build agent to start implementing tasks"`,
|
|
403
|
-
keyboardShortcut: 'ctrl+t',
|
|
403
|
+
keyboardShortcut: 'ctrl+shift+t',
|
|
404
404
|
welcomeMessage: 'Reading current spec and generating tasks...'
|
|
405
405
|
},
|
|
406
406
|
|
|
@@ -437,7 +437,7 @@ CRITICAL:
|
|
|
437
437
|
- Use non-interactive flags for commands (--yes, -y)
|
|
438
438
|
|
|
439
439
|
When all tasks complete, suggest: "Switch to kspec-verify agent to verify implementation"`,
|
|
440
|
-
keyboardShortcut: 'ctrl+b',
|
|
440
|
+
keyboardShortcut: 'ctrl+shift+b',
|
|
441
441
|
welcomeMessage: 'Reading current task and building...'
|
|
442
442
|
},
|
|
443
443
|
|
|
@@ -477,7 +477,7 @@ VERIFY-IMPLEMENTATION:
|
|
|
477
477
|
- List any gaps between spec and implementation
|
|
478
478
|
|
|
479
479
|
Output a clear verification report with pass/fail status.`,
|
|
480
|
-
keyboardShortcut: 'ctrl+v',
|
|
480
|
+
keyboardShortcut: 'ctrl+shift+v',
|
|
481
481
|
welcomeMessage: 'What should I verify?'
|
|
482
482
|
},
|
|
483
483
|
|
|
@@ -507,7 +507,7 @@ Your job:
|
|
|
507
507
|
4. Provide actionable feedback
|
|
508
508
|
|
|
509
509
|
Output: APPROVE / REQUEST_CHANGES with specific issues.`,
|
|
510
|
-
keyboardShortcut: 'ctrl+r',
|
|
510
|
+
keyboardShortcut: 'ctrl+shift+r',
|
|
511
511
|
welcomeMessage: 'Ready to review. What should I look at?'
|
|
512
512
|
}
|
|
513
513
|
};
|
|
@@ -807,12 +807,12 @@ kspec Agents
|
|
|
807
807
|
|
|
808
808
|
Agent Shortcut Purpose
|
|
809
809
|
─────────────────────────────────────────────
|
|
810
|
-
kspec-analyse Ctrl+A Analyse codebase, update steering
|
|
811
|
-
kspec-spec Ctrl+S Create specifications
|
|
812
|
-
kspec-tasks Ctrl+T Generate tasks from spec
|
|
813
|
-
kspec-build Ctrl+B Execute tasks with TDD
|
|
814
|
-
kspec-verify Ctrl+V Verify spec/tasks/implementation
|
|
815
|
-
kspec-review Ctrl+R Code review
|
|
810
|
+
kspec-analyse Ctrl+Shift+A Analyse codebase, update steering
|
|
811
|
+
kspec-spec Ctrl+Shift+S Create specifications
|
|
812
|
+
kspec-tasks Ctrl+Shift+T Generate tasks from spec
|
|
813
|
+
kspec-build Ctrl+Shift+B Execute tasks with TDD
|
|
814
|
+
kspec-verify Ctrl+Shift+V Verify spec/tasks/implementation
|
|
815
|
+
kspec-review Ctrl+Shift+R Code review
|
|
816
816
|
|
|
817
817
|
Switch: /agent swap or use keyboard shortcuts
|
|
818
818
|
`);
|