jumpstart-mode 1.1.12 → 1.1.13

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 (146) hide show
  1. package/.github/agents/jumpstart-adversary.agent.md +2 -1
  2. package/.github/agents/jumpstart-architect.agent.md +5 -6
  3. package/.github/agents/jumpstart-challenger.agent.md +2 -1
  4. package/.github/agents/jumpstart-devops.agent.md +2 -2
  5. package/.github/agents/jumpstart-diagram-verifier.agent.md +2 -1
  6. package/.github/agents/jumpstart-maintenance.agent.md +1 -0
  7. package/.github/agents/jumpstart-performance.agent.md +1 -0
  8. package/.github/agents/jumpstart-pm.agent.md +1 -1
  9. package/.github/agents/jumpstart-refactor.agent.md +1 -0
  10. package/.github/agents/jumpstart-requirements-extractor.agent.md +1 -0
  11. package/.github/agents/jumpstart-researcher.agent.md +1 -0
  12. package/.github/agents/jumpstart-retrospective.agent.md +1 -0
  13. package/.github/agents/jumpstart-reviewer.agent.md +2 -0
  14. package/.github/agents/jumpstart-scout.agent.md +1 -1
  15. package/.github/agents/jumpstart-scrum-master.agent.md +1 -0
  16. package/.github/agents/jumpstart-security.agent.md +2 -1
  17. package/.github/agents/jumpstart-tech-writer.agent.md +1 -0
  18. package/.github/workflows/quality.yml +19 -2
  19. package/.jumpstart/agents/analyst.md +38 -0
  20. package/.jumpstart/agents/architect.md +38 -0
  21. package/.jumpstart/agents/challenger.md +38 -0
  22. package/.jumpstart/agents/developer.md +41 -0
  23. package/.jumpstart/agents/pm.md +38 -0
  24. package/.jumpstart/agents/scout.md +33 -0
  25. package/.jumpstart/agents/ux-designer.md +4 -0
  26. package/.jumpstart/config.yaml +24 -0
  27. package/.jumpstart/schemas/timeline.schema.json +1 -0
  28. package/.jumpstart/skills/skill-creator/SKILL.md +485 -357
  29. package/.jumpstart/skills/skill-creator/agents/analyzer.md +274 -0
  30. package/.jumpstart/skills/skill-creator/agents/comparator.md +202 -0
  31. package/.jumpstart/skills/skill-creator/agents/grader.md +223 -0
  32. package/.jumpstart/skills/skill-creator/assets/eval_review.html +146 -0
  33. package/.jumpstart/skills/skill-creator/eval-viewer/generate_review.py +471 -0
  34. package/.jumpstart/skills/skill-creator/eval-viewer/viewer.html +1325 -0
  35. package/.jumpstart/skills/skill-creator/references/schemas.md +430 -0
  36. package/.jumpstart/skills/skill-creator/scripts/__init__.py +0 -0
  37. package/.jumpstart/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  38. package/.jumpstart/skills/skill-creator/scripts/generate_report.py +326 -0
  39. package/.jumpstart/skills/skill-creator/scripts/improve_description.py +247 -0
  40. package/.jumpstart/skills/skill-creator/scripts/package_skill.py +136 -110
  41. package/.jumpstart/skills/skill-creator/scripts/run_eval.py +310 -0
  42. package/.jumpstart/skills/skill-creator/scripts/run_loop.py +328 -0
  43. package/.jumpstart/skills/skill-creator/scripts/utils.py +47 -0
  44. package/.jumpstart/state/timeline.json +659 -0
  45. package/.jumpstart/usage-log.json +74 -3
  46. package/README.md +62 -1
  47. package/bin/cli.js +3217 -1
  48. package/bin/headless-runner.js +62 -2
  49. package/bin/lib/agent-checkpoint.js +168 -0
  50. package/bin/lib/ai-evaluation.js +104 -0
  51. package/bin/lib/ai-intake.js +152 -0
  52. package/bin/lib/ambiguity-heatmap.js +152 -0
  53. package/bin/lib/artifact-comparison.js +104 -0
  54. package/bin/lib/ast-edit-engine.js +157 -0
  55. package/bin/lib/backlog-sync.js +338 -0
  56. package/bin/lib/bcdr-planning.js +158 -0
  57. package/bin/lib/bidirectional-trace.js +199 -0
  58. package/bin/lib/branch-workflow.js +266 -0
  59. package/bin/lib/cab-output.js +119 -0
  60. package/bin/lib/chat-integration.js +122 -0
  61. package/bin/lib/ci-cd-integration.js +208 -0
  62. package/bin/lib/codebase-retrieval.js +125 -0
  63. package/bin/lib/collaboration.js +168 -0
  64. package/bin/lib/compliance-packs.js +213 -0
  65. package/bin/lib/context-chunker.js +128 -0
  66. package/bin/lib/context-onboarding.js +122 -0
  67. package/bin/lib/contract-first.js +124 -0
  68. package/bin/lib/cost-router.js +148 -0
  69. package/bin/lib/credential-boundary.js +155 -0
  70. package/bin/lib/data-classification.js +180 -0
  71. package/bin/lib/data-contracts.js +129 -0
  72. package/bin/lib/db-evolution.js +158 -0
  73. package/bin/lib/decision-conflicts.js +299 -0
  74. package/bin/lib/delivery-confidence.js +361 -0
  75. package/bin/lib/dependency-upgrade.js +153 -0
  76. package/bin/lib/design-system.js +133 -0
  77. package/bin/lib/deterministic-artifacts.js +151 -0
  78. package/bin/lib/diagram-studio.js +115 -0
  79. package/bin/lib/domain-ontology.js +140 -0
  80. package/bin/lib/ea-review-packet.js +151 -0
  81. package/bin/lib/enterprise-search.js +123 -0
  82. package/bin/lib/enterprise-templates.js +140 -0
  83. package/bin/lib/environment-promotion.js +220 -0
  84. package/bin/lib/estimation-studio.js +130 -0
  85. package/bin/lib/event-modeling.js +133 -0
  86. package/bin/lib/evidence-collector.js +179 -0
  87. package/bin/lib/finops-planner.js +182 -0
  88. package/bin/lib/fitness-functions.js +279 -0
  89. package/bin/lib/focus.js +448 -0
  90. package/bin/lib/governance-dashboard.js +165 -0
  91. package/bin/lib/guided-handoff.js +120 -0
  92. package/bin/lib/impact-analysis.js +190 -0
  93. package/bin/lib/incident-feedback.js +157 -0
  94. package/bin/lib/integrate.js +1 -1
  95. package/bin/lib/knowledge-graph.js +122 -0
  96. package/bin/lib/legacy-modernizer.js +160 -0
  97. package/bin/lib/migration-planner.js +144 -0
  98. package/bin/lib/model-governance.js +185 -0
  99. package/bin/lib/model-router.js +144 -0
  100. package/bin/lib/multi-repo.js +272 -0
  101. package/bin/lib/next-phase.js +53 -8
  102. package/bin/lib/ops-ownership.js +152 -0
  103. package/bin/lib/parallel-agents.js +257 -0
  104. package/bin/lib/pattern-library.js +115 -0
  105. package/bin/lib/persona-packs.js +99 -0
  106. package/bin/lib/plan-executor.js +366 -0
  107. package/bin/lib/platform-engineering.js +119 -0
  108. package/bin/lib/playback-summaries.js +126 -0
  109. package/bin/lib/policy-engine.js +240 -0
  110. package/bin/lib/portfolio-reporting.js +357 -0
  111. package/bin/lib/pr-package.js +197 -0
  112. package/bin/lib/project-memory.js +235 -0
  113. package/bin/lib/prompt-governance.js +130 -0
  114. package/bin/lib/promptless-mode.js +128 -0
  115. package/bin/lib/quality-graph.js +193 -0
  116. package/bin/lib/raci-matrix.js +188 -0
  117. package/bin/lib/refactor-planner.js +167 -0
  118. package/bin/lib/reference-architectures.js +304 -0
  119. package/bin/lib/release-readiness.js +171 -0
  120. package/bin/lib/repo-graph.js +262 -0
  121. package/bin/lib/requirements-baseline.js +358 -0
  122. package/bin/lib/risk-register.js +211 -0
  123. package/bin/lib/role-approval.js +249 -0
  124. package/bin/lib/role-views.js +142 -0
  125. package/bin/lib/root-cause-analysis.js +132 -0
  126. package/bin/lib/runtime-debugger.js +154 -0
  127. package/bin/lib/safe-rename.js +135 -0
  128. package/bin/lib/semantic-diff.js +335 -0
  129. package/bin/lib/sla-slo.js +210 -0
  130. package/bin/lib/spec-comments.js +147 -0
  131. package/bin/lib/spec-maturity.js +287 -0
  132. package/bin/lib/sre-integration.js +154 -0
  133. package/bin/lib/structured-elicitation.js +174 -0
  134. package/bin/lib/telemetry-feedback.js +118 -0
  135. package/bin/lib/test-generator.js +146 -0
  136. package/bin/lib/timeline.js +2 -1
  137. package/bin/lib/tool-bridge.js +107 -0
  138. package/bin/lib/tool-guardrails.js +139 -0
  139. package/bin/lib/tool-schemas.js +172 -3
  140. package/bin/lib/transcript-ingestion.js +150 -0
  141. package/bin/lib/vendor-risk.js +173 -0
  142. package/bin/lib/waiver-workflow.js +174 -0
  143. package/bin/lib/web-dashboard.js +126 -0
  144. package/bin/lib/workshop-mode.js +165 -0
  145. package/bin/lib/workstream-ownership.js +104 -0
  146. package/package.json +1 -1
@@ -1,5 +1,76 @@
1
1
  {
2
- "entries": [],
3
- "total_tokens": 0,
4
- "total_cost_usd": 0
2
+ "entries": [
3
+ {
4
+ "timestamp": "2026-04-01T10:12:30.000Z",
5
+ "phase": "scout",
6
+ "agent": "Scout",
7
+ "action": "generation",
8
+ "estimated_tokens": 2450,
9
+ "estimated_cost_usd": 0.0049,
10
+ "model": "copilot",
11
+ "metadata": { "artifact": "specs/codebase-context.md", "turns": 8 }
12
+ },
13
+ {
14
+ "timestamp": "2026-04-01T10:40:30.000Z",
15
+ "phase": "phase-0",
16
+ "agent": "Challenger",
17
+ "action": "generation",
18
+ "estimated_tokens": 3200,
19
+ "estimated_cost_usd": 0.0064,
20
+ "model": "copilot",
21
+ "metadata": { "artifact": "specs/challenger-brief.md", "turns": 12 }
22
+ },
23
+ {
24
+ "timestamp": "2026-04-01T11:05:30.000Z",
25
+ "phase": "phase-1",
26
+ "agent": "Analyst",
27
+ "action": "generation",
28
+ "estimated_tokens": 2800,
29
+ "estimated_cost_usd": 0.0056,
30
+ "model": "copilot",
31
+ "metadata": { "artifact": "specs/product-brief.md", "turns": 10 }
32
+ },
33
+ {
34
+ "timestamp": "2026-04-01T11:35:30.000Z",
35
+ "phase": "phase-2",
36
+ "agent": "PM",
37
+ "action": "generation",
38
+ "estimated_tokens": 3500,
39
+ "estimated_cost_usd": 0.007,
40
+ "model": "copilot",
41
+ "metadata": { "artifact": "specs/prd.md", "turns": 14 }
42
+ },
43
+ {
44
+ "timestamp": "2026-04-01T12:06:00.000Z",
45
+ "phase": "phase-3",
46
+ "agent": "Security",
47
+ "action": "consultation",
48
+ "estimated_tokens": 1200,
49
+ "estimated_cost_usd": 0.0024,
50
+ "model": "copilot",
51
+ "metadata": { "parent_agent": "Architect", "query": "STRIDE threat analysis" }
52
+ },
53
+ {
54
+ "timestamp": "2026-04-01T12:12:30.000Z",
55
+ "phase": "phase-3",
56
+ "agent": "Architect",
57
+ "action": "generation",
58
+ "estimated_tokens": 5200,
59
+ "estimated_cost_usd": 0.0104,
60
+ "model": "copilot",
61
+ "metadata": { "artifacts": ["specs/architecture.md", "specs/implementation-plan.md"], "turns": 18 }
62
+ },
63
+ {
64
+ "timestamp": "2026-04-01T13:25:00.000Z",
65
+ "phase": "phase-4",
66
+ "agent": "Developer",
67
+ "action": "generation",
68
+ "estimated_tokens": 8500,
69
+ "estimated_cost_usd": 0.017,
70
+ "model": "copilot",
71
+ "metadata": { "files_created": 12, "tests_created": 8, "turns": 25 }
72
+ }
73
+ ],
74
+ "total_tokens": 26850,
75
+ "total_cost_usd": 0.0537
5
76
  }
package/README.md CHANGED
@@ -312,7 +312,7 @@ Beyond the six core phase agents, Jump Start includes **16 advisory agents** tha
312
312
 
313
313
  ## CLI Tools
314
314
 
315
- The `jumpstart-mode` CLI provides 29 subcommands for automated quality checks and project management. Run them from the command line:
315
+ The `jumpstart-mode` CLI provides 39 subcommands for automated quality checks and project management. Run them from the command line:
316
316
 
317
317
  ```bash
318
318
  npx jumpstart-mode <subcommand> [options]
@@ -364,6 +364,67 @@ npx jumpstart-mode <subcommand> [options]
364
364
  | `upgrade` | Safely upgrade framework files (preserves user content) |
365
365
  | `upgrade --restore` | Restore files from upgrade backups |
366
366
 
367
+ ### Enterprise Platform Features
368
+
369
+ The following 10 commands unlock top-tier platform capabilities for scaled, multi-team projects:
370
+
371
+ | Subcommand | Purpose |
372
+ |------------|--------|
373
+ | `multi-repo <init\|link\|status\|plan>` | **Multi-repo program orchestration** — link frontend, backend, infra, data and docs repos into one initiative with shared specs, dependencies, and release plans |
374
+ | `bidirectional-trace [scan\|report]` | **True bidirectional traceability** — auto-link requirements to files, functions, tests, PRs, and deployments; measure coverage gaps |
375
+ | `impact <file> [--symbol] [--spec]` | **Agentic change impact analysis** — before editing, see which requirements, tests, services and APIs are affected |
376
+ | `repo-graph [build\|query]` | **Automated repo understanding graph** — build and persist a semantic graph of domains, modules, APIs, ownership, decisions and dependencies |
377
+ | `memory <add\|list\|search\|recall>` | **Persistent long-term project memory** — capture team decisions, rejected options, recurring pitfalls, and tribal knowledge |
378
+ | `policy <check\|list\|add>` | **Enterprise policy engine** — enforce org-specific rules for architecture, naming, security, legal, AI usage and deployment standards |
379
+ | `branch-workflow [track\|status\|sync]` | **Branch-aware workflow engine** — track specs, approvals and implementation plans per git branch and PR |
380
+ | `pr-package <create\|list\|export>` | **PR-native execution mode** — generate PR-ready work packages with summary, risk notes, test evidence and rollback guidance |
381
+ | `parallel-agents [run\|status\|reconcile]` | **Multi-agent concurrent execution** — run architect, security, QA, docs and performance sidecars in parallel and reconcile conflicts |
382
+ | `role-approval <assign\|approve\|reject\|status>` | **Human approval workflows with roles** — assign named approvers by role (product, architect, security, legal, platform) |
383
+
384
+ #### Quick examples
385
+
386
+ ```bash
387
+ # Initialize a cross-repo program
388
+ npx jumpstart-mode multi-repo init "Platform v2"
389
+ npx jumpstart-mode multi-repo link https://github.com/org/frontend frontend
390
+ npx jumpstart-mode multi-repo link https://github.com/org/backend backend
391
+
392
+ # Scan bidirectional traceability and view gap report
393
+ npx jumpstart-mode bidirectional-trace scan
394
+ npx jumpstart-mode bidirectional-trace report
395
+
396
+ # Analyze impact of changing auth.service.js
397
+ npx jumpstart-mode impact src/auth.service.js
398
+
399
+ # Build semantic repo graph and query for APIs
400
+ npx jumpstart-mode repo-graph build
401
+ npx jumpstart-mode repo-graph query --type api
402
+
403
+ # Record a team decision in persistent memory
404
+ npx jumpstart-mode memory add --type decision --title "Use JWT" --content "Chose JWT over sessions for statelessness."
405
+ npx jumpstart-mode memory search jwt
406
+
407
+ # Add and run enterprise policies
408
+ npx jumpstart-mode policy add --name "No console.log" --desc "Remove debug logging" --category security --pattern "console\\.log"
409
+ npx jumpstart-mode policy check
410
+
411
+ # Track the current branch and link a PR
412
+ npx jumpstart-mode branch-workflow track --pr 42
413
+ npx jumpstart-mode branch-workflow status
414
+
415
+ # Create a PR work package
416
+ npx jumpstart-mode pr-package create --title "Add auth" --summary "JWT auth implementation" --risk "Session expiry"
417
+
418
+ # Run security + QA agents in parallel and reconcile
419
+ npx jumpstart-mode parallel-agents run security,qa
420
+ npx jumpstart-mode parallel-agents reconcile <run-id>
421
+
422
+ # Set up role-based approval for the PRD
423
+ npx jumpstart-mode role-approval assign specs/prd.md product,architect,security
424
+ npx jumpstart-mode role-approval approve specs/prd.md product --approver "Alice"
425
+ npx jumpstart-mode role-approval status specs/prd.md
426
+ ```
427
+
367
428
  ---
368
429
 
369
430
  ## Quality Gates