jettypod 4.4.90 → 4.4.91
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 +23 -7
- package/package.json +1 -1
package/jettypod.js
CHANGED
|
@@ -245,16 +245,32 @@ Status: ${currentWork.status}
|
|
|
245
245
|
<jettypod_essentials>
|
|
246
246
|
JettyPod: Structured workflow system with skills that guide complex workflows.
|
|
247
247
|
|
|
248
|
-
## ⚠️ CRITICAL: All Work
|
|
249
|
-
|
|
250
|
-
-
|
|
251
|
-
|
|
252
|
-
|
|
248
|
+
## ⚠️ CRITICAL: All Work Starts with request-routing
|
|
249
|
+
|
|
250
|
+
**WHY:** request-routing creates a safe workspace (worktree) where your changes can actually be committed. Without it, you'll edit files on main, then discover the pre-commit hook blocks you—leaving uncommitted changes that can't be saved.
|
|
251
|
+
|
|
252
|
+
**FIRST RESPONSE RULE:** If user describes ANY code change, your FIRST action must be invoking request-routing. Not after reading files. Not after understanding the problem. FIRST.
|
|
253
|
+
|
|
254
|
+
**Trigger phrases → invoke request-routing immediately:**
|
|
255
|
+
- "we should...", "let's...", "can you..." (implementation requests)
|
|
256
|
+
- "fix", "broken", "not working", "bug" (bug reports)
|
|
257
|
+
- "add", "build", "create", "implement" (feature requests)
|
|
258
|
+
- "refactor", "migrate", "upgrade" (technical work)
|
|
259
|
+
- "I noticed...", "I'm thinking..." (when followed by desired change)
|
|
260
|
+
|
|
261
|
+
**⚠️ ANTI-PATTERN: Do NOT edit files before invoking request-routing.**
|
|
262
|
+
Wrong: See problem → edit files → realize you're on main → ask about workflow
|
|
263
|
+
Wrong: Read files → understand problem → try to fix → get blocked → create work item
|
|
264
|
+
Right: User describes work → invoke request-routing → skill creates worktree → then edit
|
|
253
265
|
|
|
254
266
|
## ⚠️ CRITICAL: Skills are MANDATORY for workflows
|
|
255
267
|
Skills auto-activate and MUST complete their full workflow:
|
|
256
|
-
-
|
|
257
|
-
-
|
|
268
|
+
- **request-routing**: ⚡ ENTRY POINT - routes ALL work requests to correct skill
|
|
269
|
+
- epic-planning: Guides architectural decisions (invoked by request-routing)
|
|
270
|
+
- feature-planning: Guides UX discovery + BDD scenarios (invoked by request-routing)
|
|
271
|
+
- chore-planning: Guides technical work planning (invoked by request-routing)
|
|
272
|
+
- bug-planning: Guides bug investigation (invoked by request-routing)
|
|
273
|
+
- simple-improvement: Direct implementation for obvious changes (invoked by request-routing)
|
|
258
274
|
- speed-mode: Implements happy path, THEN auto-invokes stable-mode
|
|
259
275
|
- stable-mode: Adds error handling to speed implementation
|
|
260
276
|
- external-transition: Guides launch preparation
|