jumpstart-mode 1.1.2 → 1.1.4
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/.cursorrules +44 -42
- package/.github/agents/jumpstart-researcher.agent.md +1 -1
- package/.github/copilot-instructions.md +71 -69
- package/.jumpstart/agents/analyst.md +539 -537
- package/.jumpstart/agents/architect.md +740 -738
- package/.jumpstart/agents/developer.md +715 -713
- package/.jumpstart/compat/assistant-mapping.md +32 -0
- package/.jumpstart/guides/context7-usage.md +242 -0
- package/.jumpstart/templates/documentation-audit.md +8 -2
- package/CLAUDE.md +54 -52
- package/bin/headless-runner.js +658 -0
- package/bin/holodeck.js +512 -0
- package/bin/lib/headless-runner.js +658 -0
- package/bin/lib/holodeck.js +512 -0
- package/package.json +13 -2
package/.cursorrules
CHANGED
|
@@ -1,42 +1,44 @@
|
|
|
1
|
-
# Jump Start Framework Rules
|
|
2
|
-
|
|
3
|
-
This project uses the Jump Start spec-driven agentic coding framework.
|
|
4
|
-
|
|
5
|
-
## Context7 MCP Mandate (HIGH PRIORITY)
|
|
6
|
-
|
|
7
|
-
**CRITICAL RULE:** When referencing any external library, framework, CLI tool, or service — you MUST use Context7 MCP to fetch live, verified documentation. Never rely on training data for API signatures, configuration flags, version compatibility, or setup instructions.
|
|
8
|
-
|
|
9
|
-
**How to use Context7:**
|
|
10
|
-
1. Resolve the library ID with
|
|
11
|
-
2. Fetch current docs with
|
|
12
|
-
3. Add `[Context7: library@version]` citation marker in output
|
|
13
|
-
|
|
14
|
-
**
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
- `/jumpstart.
|
|
25
|
-
- `/jumpstart.
|
|
26
|
-
- `/jumpstart.
|
|
27
|
-
- `/jumpstart.
|
|
28
|
-
- `/jumpstart.
|
|
29
|
-
- `/jumpstart.
|
|
30
|
-
- `/jumpstart.
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
1
|
+
# Jump Start Framework Rules
|
|
2
|
+
|
|
3
|
+
This project uses the Jump Start spec-driven agentic coding framework.
|
|
4
|
+
|
|
5
|
+
## Context7 MCP Mandate (HIGH PRIORITY)
|
|
6
|
+
|
|
7
|
+
**CRITICAL RULE:** When referencing any external library, framework, CLI tool, or service — you MUST use Context7 MCP to fetch live, verified documentation. Never rely on training data for API signatures, configuration flags, version compatibility, or setup instructions.
|
|
8
|
+
|
|
9
|
+
**How to use Context7:**
|
|
10
|
+
1. Resolve the library ID: `mcp_context7_resolve-library-id` with `libraryName` and `query` parameters
|
|
11
|
+
2. Fetch current docs: `mcp_context7_query-docs` with `libraryId` (e.g., `/vercel/next.js`) and `query` parameters
|
|
12
|
+
3. Add `[Context7: library@version]` citation marker in output
|
|
13
|
+
|
|
14
|
+
> **Full documentation:** `.jumpstart/guides/context7-usage.md`
|
|
15
|
+
|
|
16
|
+
**When required:** Architect Phase 3 (freshness audit), Developer Phase 4 (external API code), Analyst Phase 1 (tech evaluation), any agent making technology claims.
|
|
17
|
+
|
|
18
|
+
## Spec-First Power Inversion
|
|
19
|
+
|
|
20
|
+
Specs are the source of truth. Code is derived. If mismatch exists between spec and code, update the spec first or regenerate the code. Never silently diverge.
|
|
21
|
+
|
|
22
|
+
## Command Routing
|
|
23
|
+
|
|
24
|
+
- `/jumpstart.scout` -> Check `project.type` is `brownfield`. Read and follow `.jumpstart/agents/scout.md`
|
|
25
|
+
- `/jumpstart.challenge` -> Read and follow `.jumpstart/agents/challenger.md`
|
|
26
|
+
- `/jumpstart.analyze` -> Read and follow `.jumpstart/agents/analyst.md`
|
|
27
|
+
- `/jumpstart.plan` -> Read and follow `.jumpstart/agents/pm.md`
|
|
28
|
+
- `/jumpstart.architect` -> Read and follow `.jumpstart/agents/architect.md`
|
|
29
|
+
- `/jumpstart.build` -> Read and follow `.jumpstart/agents/developer.md`
|
|
30
|
+
- `/jumpstart.party` -> Read and follow `.jumpstart/agents/facilitator.md` (Party Mode: multi-agent collaboration)
|
|
31
|
+
- `/jumpstart.status` -> Check all spec files and report workflow state
|
|
32
|
+
- `/jumpstart.review` -> Validate artifacts against templates
|
|
33
|
+
|
|
34
|
+
## Rules
|
|
35
|
+
|
|
36
|
+
1. Phases are sequential. Do not start a phase unless all preceding phases are approved.
|
|
37
|
+
2. Follow agent personas exactly. Read the agent file before starting.
|
|
38
|
+
3. Always ask for explicit human approval between phases.
|
|
39
|
+
4. Use templates from `.jumpstart/templates/`.
|
|
40
|
+
5. Read `.jumpstart/config.yaml` for settings.
|
|
41
|
+
6. Specs go in `specs/`. Code in `src/`. Tests in `tests/`.
|
|
42
|
+
7. Read `.jumpstart/roadmap.md` at activation. Roadmap principles are non-negotiable and supersede agent-specific instructions.
|
|
43
|
+
8. Read `.jumpstart/roadmap.md` for engineering articles governing code quality and architecture decisions.
|
|
44
|
+
9. Use Context7 MCP for ALL external documentation lookups. Never guess API details from training data.
|
|
@@ -24,7 +24,7 @@ You do NOT make architectural decisions. You provide the evidence for others to
|
|
|
24
24
|
|
|
25
25
|
## Context7 MCP Usage
|
|
26
26
|
|
|
27
|
-
You MUST use Context7 MCP (`mcp_context7_resolve-library-id` → `
|
|
27
|
+
You MUST use Context7 MCP (`mcp_context7_resolve-library-id` → `mcp_context7_query-docs`) for every technology claim. Both tools require a `query` parameter. Add `[Context7: library@version]` citation markers to all findings. See `.jumpstart/guides/context7-usage.md` for full parameter documentation.
|
|
28
28
|
|
|
29
29
|
## When Invoked as a Subagent
|
|
30
30
|
|
|
@@ -1,69 +1,71 @@
|
|
|
1
|
-
# Jump Start Framework
|
|
2
|
-
|
|
3
|
-
This project uses the **Jump Start** spec-driven agentic coding framework. Development follows five sequential phases, each owned by a specialized AI agent.
|
|
4
|
-
|
|
5
|
-
## Context7 MCP Mandate (HIGH PRIORITY)
|
|
6
|
-
|
|
7
|
-
**CRITICAL RULE:** When referencing any external library, framework, CLI tool, or service — you MUST use Context7 MCP to fetch live, verified documentation. Never rely on training data for API signatures, configuration flags, version compatibility, or setup instructions.
|
|
8
|
-
|
|
9
|
-
**How to use Context7:**
|
|
10
|
-
1. Resolve the library ID: Use `mcp_context7_resolve-library-id` with
|
|
11
|
-
2. Fetch current docs: Use `
|
|
12
|
-
3. Add `[Context7: library@version]` citation marker in output
|
|
13
|
-
|
|
14
|
-
**
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
- `.jumpstart/
|
|
35
|
-
- `.jumpstart/
|
|
36
|
-
- `.jumpstart/
|
|
37
|
-
- `.jumpstart/
|
|
38
|
-
- `.jumpstart/
|
|
39
|
-
- `.jumpstart/
|
|
40
|
-
- `.jumpstart/
|
|
41
|
-
- `.jumpstart/
|
|
42
|
-
- `.jumpstart/
|
|
43
|
-
- `.jumpstart/
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
- `specs
|
|
47
|
-
- `specs/
|
|
48
|
-
- `specs/
|
|
49
|
-
- `specs/
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
1
|
+
# Jump Start Framework
|
|
2
|
+
|
|
3
|
+
This project uses the **Jump Start** spec-driven agentic coding framework. Development follows five sequential phases, each owned by a specialized AI agent.
|
|
4
|
+
|
|
5
|
+
## Context7 MCP Mandate (HIGH PRIORITY)
|
|
6
|
+
|
|
7
|
+
**CRITICAL RULE:** When referencing any external library, framework, CLI tool, or service — you MUST use Context7 MCP to fetch live, verified documentation. Never rely on training data for API signatures, configuration flags, version compatibility, or setup instructions.
|
|
8
|
+
|
|
9
|
+
**How to use Context7:**
|
|
10
|
+
1. Resolve the library ID: Use `mcp_context7_resolve-library-id` with `libraryName` and `query` parameters
|
|
11
|
+
2. Fetch current docs: Use `mcp_context7_query-docs` with `libraryId` (e.g., `/vercel/next.js`) and `query` parameters
|
|
12
|
+
3. Add `[Context7: library@version]` citation marker in output
|
|
13
|
+
|
|
14
|
+
> **Full documentation:** `.jumpstart/guides/context7-usage.md`
|
|
15
|
+
|
|
16
|
+
**When required:** Architect Phase 3 (Documentation Freshness Audit — hard gate, ≥80% score), Developer Phase 4 (before writing external API integration code), Analyst Phase 1 (technology evaluation), any agent making technology claims.
|
|
17
|
+
|
|
18
|
+
## Spec-First Power Inversion
|
|
19
|
+
|
|
20
|
+
Specs are the source of truth. Code is derived. If there is a mismatch between a spec artifact and the codebase, update the spec first or regenerate the code. Never silently alter code to diverge from specs.
|
|
21
|
+
|
|
22
|
+
## Workflow
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
[Brownfield only] Pre-Phase (Scout) -> Phase 0 (Challenger) -> Phase 1 (Analyst) -> Phase 2 (PM) -> Phase 3 (Architect) -> Phase 4 (Developer)
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Party Mode (`/jumpstart.party`) can be invoked at any phase for multi-agent advisory discussions via the Facilitator agent.
|
|
29
|
+
|
|
30
|
+
Phases are strictly sequential. Each must be completed and approved by the human before the next begins. For brownfield projects (`project.type: brownfield` in config), the Scout agent runs before Phase 0 to analyze the existing codebase.
|
|
31
|
+
|
|
32
|
+
## Key Directories
|
|
33
|
+
|
|
34
|
+
- `.jumpstart/agents/` -- Detailed agent personas with step-by-step protocols (includes scout.md for brownfield)
|
|
35
|
+
- `.jumpstart/templates/` -- Artifact templates that structure each phase's output (includes codebase-context.md, agents-md.md)
|
|
36
|
+
- `.jumpstart/schemas/` -- JSON Schema (draft-07) definitions for artifact validation
|
|
37
|
+
- `.jumpstart/config.yaml` -- Framework settings (agent parameters, workflow rules, project type)
|
|
38
|
+
- `.jumpstart/roadmap.md` -- Project Roadmap: non-negotiable principles that govern all agents
|
|
39
|
+
- `.jumpstart/roadmap.md` -- Engineering articles governing code quality and architecture decisions
|
|
40
|
+
- `.jumpstart/invariants.md` -- Environment invariants that must hold true in every deployment
|
|
41
|
+
- `.jumpstart/domain-complexity.csv` -- Domain complexity data for adaptive planning rigor
|
|
42
|
+
- `.jumpstart/glossary.md` -- Terminology dictionary: canonical term definitions for consistent naming
|
|
43
|
+
- `.jumpstart/correction-log.md` -- Self-correction log: rejected proposals and lessons learned
|
|
44
|
+
- `.jumpstart/state/` -- Workflow state persistence (state.json, todos.json, adr-index.json, locks/)
|
|
45
|
+
- `.jumpstart/archive/` -- Timestamped archives of overwritten artifacts
|
|
46
|
+
- `specs/` -- Generated specification artifacts (the source of truth for this project)
|
|
47
|
+
- `specs/codebase-context.md` -- Scout output for brownfield projects (existing codebase analysis with C4 diagrams)
|
|
48
|
+
- `specs/decisions/` -- Architecture Decision Records
|
|
49
|
+
- `specs/insights/` -- Living insight logs (1:1 with each artifact)
|
|
50
|
+
- `specs/qa-log.md` -- Q&A decision log: audit trail of every agent question and human response
|
|
51
|
+
- `specs/research/` -- Optional research artifacts (competitive analysis, technical spikes)
|
|
52
|
+
|
|
53
|
+
## Rules
|
|
54
|
+
|
|
55
|
+
1. Never skip phases. Each artifact must exist and be approved before the next phase starts.
|
|
56
|
+
2. When operating as an agent, read and follow the corresponding `.jumpstart/agents/*.md` file.
|
|
57
|
+
3. Always populate artifacts using templates from `.jumpstart/templates/`.
|
|
58
|
+
4. Read `.jumpstart/config.yaml` at the start of every phase for settings.
|
|
59
|
+
5. Present completed artifacts for explicit human approval before proceeding.
|
|
60
|
+
6. Agents stay in lane: the Challenger does not suggest solutions, the Developer does not change architecture.
|
|
61
|
+
7. Read `.jumpstart/roadmap.md` at activation. Roadmap principles are non-negotiable and supersede agent-specific instructions.
|
|
62
|
+
8. When `workflow.qa_log` is `true`, log every question-and-response exchange to `specs/qa-log.md` (append-only, sequential numbering).
|
|
63
|
+
9. Read `.jumpstart/roadmap.md` for engineering articles governing code quality and architecture decisions.
|
|
64
|
+
10. Use Context7 MCP for ALL external documentation lookups. Never guess API details from training data.
|
|
65
|
+
11. **Never Guess (Item 69):** If any requirement, detail, or context is ambiguous, do NOT guess or infer. Tag it with `[NEEDS CLARIFICATION: description]` and ask the human. See `.jumpstart/templates/needs-clarification.md` for format rules.
|
|
66
|
+
12. **Cross-Assistant Portability (Item 95):** This framework works across multiple AI assistants (Copilot, Cursor, Claude Code, Windsurf). See `.jumpstart/compat/assistant-mapping.md` for tool-specific configuration mapping.
|
|
67
|
+
13. **Subagent Invocation (Subagent Protocol):** Phase agents may invoke advisory agents as subagents using the `agent` tool when project signals indicate specialised review is needed. Subagent findings are incorporated into the parent phase's artifact — they do not bypass phase gates or produce standalone artifacts. All invocations must be logged in the parent's insights file. See the Subagent Protocol in `AGENTS.md` for the full roster of available advisory agents and invocation rules.
|
|
68
|
+
|
|
69
|
+
## Checking Approval
|
|
70
|
+
|
|
71
|
+
An artifact is approved when its "Phase Gate Approval" section has all checkboxes checked and "Approved by" is not "Pending".
|