jumpstart-mode 1.1.11 → 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.
- package/.github/agents/jumpstart-adversary.agent.md +2 -1
- package/.github/agents/jumpstart-architect.agent.md +6 -7
- package/.github/agents/jumpstart-challenger.agent.md +2 -1
- package/.github/agents/jumpstart-developer.agent.md +1 -1
- package/.github/agents/jumpstart-devops.agent.md +2 -2
- package/.github/agents/jumpstart-diagram-verifier.agent.md +2 -1
- package/.github/agents/jumpstart-maintenance.agent.md +1 -0
- package/.github/agents/jumpstart-performance.agent.md +1 -0
- package/.github/agents/jumpstart-pm.agent.md +1 -1
- package/.github/agents/jumpstart-refactor.agent.md +1 -0
- package/.github/agents/jumpstart-requirements-extractor.agent.md +1 -0
- package/.github/agents/jumpstart-researcher.agent.md +1 -0
- package/.github/agents/jumpstart-retrospective.agent.md +1 -0
- package/.github/agents/jumpstart-reviewer.agent.md +2 -0
- package/.github/agents/jumpstart-scout.agent.md +1 -1
- package/.github/agents/jumpstart-scrum-master.agent.md +1 -0
- package/.github/agents/jumpstart-security.agent.md +2 -1
- package/.github/agents/jumpstart-tech-writer.agent.md +1 -0
- package/.github/agents/jumpstart-uiux-designer.agent.md +66 -0
- package/.github/workflows/quality.yml +19 -2
- package/.jumpstart/agents/analyst.md +38 -0
- package/.jumpstart/agents/architect.md +39 -1
- package/.jumpstart/agents/challenger.md +38 -0
- package/.jumpstart/agents/developer.md +41 -0
- package/.jumpstart/agents/pm.md +38 -0
- package/.jumpstart/agents/scout.md +33 -0
- package/.jumpstart/agents/ux-designer.md +29 -9
- package/.jumpstart/commands/commands.md +6 -5
- package/.jumpstart/config.yaml +25 -1
- package/.jumpstart/roadmap.md +1 -1
- package/.jumpstart/schemas/timeline.schema.json +1 -0
- package/.jumpstart/skills/README.md +1 -0
- package/.jumpstart/skills/quality-gates/SKILL.md +126 -0
- package/.jumpstart/skills/skill-creator/SKILL.md +485 -357
- package/.jumpstart/skills/skill-creator/agents/analyzer.md +274 -0
- package/.jumpstart/skills/skill-creator/agents/comparator.md +202 -0
- package/.jumpstart/skills/skill-creator/agents/grader.md +223 -0
- package/.jumpstart/skills/skill-creator/assets/eval_review.html +146 -0
- package/.jumpstart/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/.jumpstart/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/.jumpstart/skills/skill-creator/references/schemas.md +430 -0
- package/.jumpstart/skills/skill-creator/scripts/__init__.py +0 -0
- package/.jumpstart/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/.jumpstart/skills/skill-creator/scripts/generate_report.py +326 -0
- package/.jumpstart/skills/skill-creator/scripts/improve_description.py +247 -0
- package/.jumpstart/skills/skill-creator/scripts/package_skill.py +136 -110
- package/.jumpstart/skills/skill-creator/scripts/run_eval.py +310 -0
- package/.jumpstart/skills/skill-creator/scripts/run_loop.py +328 -0
- package/.jumpstart/skills/skill-creator/scripts/utils.py +47 -0
- package/.jumpstart/skills/ui-ux-pro-max/SKILL.md +266 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/icons.csv +101 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/styles.csv +68 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/.jumpstart/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
- package/.jumpstart/skills/ui-ux-pro-max/scripts/core.py +253 -0
- package/.jumpstart/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
- package/.jumpstart/skills/ui-ux-pro-max/scripts/search.py +114 -0
- package/.jumpstart/state/timeline.json +659 -0
- package/.jumpstart/templates/model-map.md +1 -1
- package/.jumpstart/templates/ux-design.md +3 -3
- package/.jumpstart/usage-log.json +74 -3
- package/AGENTS.md +1 -1
- package/README.md +64 -3
- package/bin/cli.js +3217 -1
- package/bin/headless-runner.js +62 -2
- package/bin/lib/agent-checkpoint.js +168 -0
- package/bin/lib/ai-evaluation.js +104 -0
- package/bin/lib/ai-intake.js +152 -0
- package/bin/lib/ambiguity-heatmap.js +152 -0
- package/bin/lib/artifact-comparison.js +104 -0
- package/bin/lib/ast-edit-engine.js +157 -0
- package/bin/lib/backlog-sync.js +338 -0
- package/bin/lib/bcdr-planning.js +158 -0
- package/bin/lib/bidirectional-trace.js +199 -0
- package/bin/lib/branch-workflow.js +266 -0
- package/bin/lib/cab-output.js +119 -0
- package/bin/lib/chat-integration.js +122 -0
- package/bin/lib/ci-cd-integration.js +208 -0
- package/bin/lib/codebase-retrieval.js +125 -0
- package/bin/lib/collaboration.js +168 -0
- package/bin/lib/compliance-packs.js +213 -0
- package/bin/lib/context-chunker.js +128 -0
- package/bin/lib/context-onboarding.js +122 -0
- package/bin/lib/contract-first.js +124 -0
- package/bin/lib/cost-router.js +148 -0
- package/bin/lib/credential-boundary.js +155 -0
- package/bin/lib/data-classification.js +180 -0
- package/bin/lib/data-contracts.js +129 -0
- package/bin/lib/db-evolution.js +158 -0
- package/bin/lib/decision-conflicts.js +299 -0
- package/bin/lib/delivery-confidence.js +361 -0
- package/bin/lib/dependency-upgrade.js +153 -0
- package/bin/lib/design-system.js +133 -0
- package/bin/lib/deterministic-artifacts.js +151 -0
- package/bin/lib/diagram-studio.js +115 -0
- package/bin/lib/domain-ontology.js +140 -0
- package/bin/lib/ea-review-packet.js +151 -0
- package/bin/lib/enterprise-search.js +123 -0
- package/bin/lib/enterprise-templates.js +140 -0
- package/bin/lib/environment-promotion.js +220 -0
- package/bin/lib/estimation-studio.js +130 -0
- package/bin/lib/event-modeling.js +133 -0
- package/bin/lib/evidence-collector.js +179 -0
- package/bin/lib/finops-planner.js +182 -0
- package/bin/lib/fitness-functions.js +279 -0
- package/bin/lib/focus.js +448 -0
- package/bin/lib/governance-dashboard.js +165 -0
- package/bin/lib/guided-handoff.js +120 -0
- package/bin/lib/impact-analysis.js +190 -0
- package/bin/lib/incident-feedback.js +157 -0
- package/bin/lib/integrate.js +1 -1
- package/bin/lib/knowledge-graph.js +122 -0
- package/bin/lib/legacy-modernizer.js +160 -0
- package/bin/lib/migration-planner.js +144 -0
- package/bin/lib/model-governance.js +185 -0
- package/bin/lib/model-router.js +144 -0
- package/bin/lib/multi-repo.js +272 -0
- package/bin/lib/next-phase.js +53 -8
- package/bin/lib/ops-ownership.js +152 -0
- package/bin/lib/parallel-agents.js +257 -0
- package/bin/lib/pattern-library.js +115 -0
- package/bin/lib/persona-packs.js +99 -0
- package/bin/lib/plan-executor.js +366 -0
- package/bin/lib/platform-engineering.js +119 -0
- package/bin/lib/playback-summaries.js +126 -0
- package/bin/lib/policy-engine.js +240 -0
- package/bin/lib/portfolio-reporting.js +357 -0
- package/bin/lib/pr-package.js +197 -0
- package/bin/lib/project-memory.js +235 -0
- package/bin/lib/prompt-governance.js +130 -0
- package/bin/lib/promptless-mode.js +128 -0
- package/bin/lib/quality-graph.js +193 -0
- package/bin/lib/raci-matrix.js +188 -0
- package/bin/lib/refactor-planner.js +167 -0
- package/bin/lib/reference-architectures.js +304 -0
- package/bin/lib/release-readiness.js +171 -0
- package/bin/lib/repo-graph.js +262 -0
- package/bin/lib/requirements-baseline.js +358 -0
- package/bin/lib/risk-register.js +211 -0
- package/bin/lib/role-approval.js +249 -0
- package/bin/lib/role-views.js +142 -0
- package/bin/lib/root-cause-analysis.js +132 -0
- package/bin/lib/runtime-debugger.js +154 -0
- package/bin/lib/safe-rename.js +135 -0
- package/bin/lib/secret-scanner.js +313 -0
- package/bin/lib/semantic-diff.js +335 -0
- package/bin/lib/sla-slo.js +210 -0
- package/bin/lib/smoke-tester.js +344 -0
- package/bin/lib/spec-comments.js +147 -0
- package/bin/lib/spec-maturity.js +287 -0
- package/bin/lib/sre-integration.js +154 -0
- package/bin/lib/structured-elicitation.js +174 -0
- package/bin/lib/telemetry-feedback.js +118 -0
- package/bin/lib/test-generator.js +146 -0
- package/bin/lib/timeline.js +2 -1
- package/bin/lib/tool-bridge.js +159 -0
- package/bin/lib/tool-guardrails.js +139 -0
- package/bin/lib/tool-schemas.js +281 -3
- package/bin/lib/transcript-ingestion.js +150 -0
- package/bin/lib/type-checker.js +261 -0
- package/bin/lib/uat-coverage.js +411 -0
- package/bin/lib/vendor-risk.js +173 -0
- package/bin/lib/waiver-workflow.js +174 -0
- package/bin/lib/web-dashboard.js +126 -0
- package/bin/lib/workshop-mode.js +165 -0
- package/bin/lib/workstream-ownership.js +104 -0
- package/package.json +1 -1
- package/.github/agents/jumpstart-ux-designer.agent.md +0 -45
|
@@ -1,5 +1,76 @@
|
|
|
1
1
|
{
|
|
2
|
-
"entries": [
|
|
3
|
-
|
|
4
|
-
|
|
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/AGENTS.md
CHANGED
|
@@ -160,7 +160,7 @@ Phase agents may invoke advisory agents as subagents using the `agent` tool. Thi
|
|
|
160
160
|
| **Jump Start: Performance** | `@Jump Start: Performance` | NFR quantification, load profiles, bottleneck analysis |
|
|
161
161
|
| **Jump Start: Researcher** | `@Jump Start: Researcher` | Context7-verified technology evaluation, library health |
|
|
162
162
|
| **Jump Start: Requirements Extractor** | `@Jump Start: Requirements Extractor` | PRD requirements checklist curation, upstream context cross-referencing, question prioritisation |
|
|
163
|
-
| **Jump Start: UX Designer** | `@Jump Start: UX Designer` |
|
|
163
|
+
| **Jump Start: UI/UX Designer** | `@Jump Start: UI/UX Designer` | UI/UX design intelligence, emotional mapping, accessibility, interaction patterns |
|
|
164
164
|
| **Jump Start: Refactor** | `@Jump Start: Refactor` | Complexity analysis, code smells, structural improvements |
|
|
165
165
|
| **Jump Start: Tech Writer** | `@Jump Start: Tech Writer` | Documentation freshness, README audits |
|
|
166
166
|
| **Jump Start: Scrum Master** | `@Jump Start: Scrum Master` | Sprint feasibility, dependency ordering |
|
package/README.md
CHANGED
|
@@ -260,7 +260,7 @@ npx jumpstart-mode upgrade --restore --dry-run
|
|
|
260
260
|
|---------|-------|---------|
|
|
261
261
|
| `/jumpstart.adversary` | Adversary | Stress-test spec artifacts for gaps and violations |
|
|
262
262
|
| `/jumpstart.reviewer` | Peer Reviewer | Score artifacts across quality dimensions |
|
|
263
|
-
| `/jumpstart.ux-design` | UX Designer |
|
|
263
|
+
| `/jumpstart.ux-design` | UI/UX Designer | Visual design direction, emotional response mapping, typography, colour systems, and design consistency |
|
|
264
264
|
| `/jumpstart.security` | Security Architect | OWASP audit and trust boundary analysis |
|
|
265
265
|
| `/jumpstart.qa` | QA Engineer | Test strategy and release readiness |
|
|
266
266
|
| `/jumpstart.performance` | Performance Engineer | Performance budgets and scale analysis |
|
|
@@ -294,7 +294,7 @@ Beyond the six core phase agents, Jump Start includes **16 advisory agents** tha
|
|
|
294
294
|
| Adversary | `/jumpstart.adversary` | Stress-tests specs for violations, gaps, and ambiguities |
|
|
295
295
|
| Peer Reviewer | `/jumpstart.reviewer` | Scores artifacts across completeness, consistency, clarity, feasibility |
|
|
296
296
|
| Facilitator | `/jumpstart.pitcrew` | Orchestrates multi-agent roundtable discussions |
|
|
297
|
-
| UX Designer | `/jumpstart.ux-design` |
|
|
297
|
+
| UI/UX Designer | `/jumpstart.ux-design` | Visual design direction, emotional response mapping, information architecture, typography, colour systems, design tokens, accessibility |
|
|
298
298
|
| Security Architect | `/jumpstart.security` | OWASP audits, trust boundaries, encryption review |
|
|
299
299
|
| DevOps Engineer | `/jumpstart.deploy` | CI/CD pipelines, deployment plans, environment management |
|
|
300
300
|
| QA Engineer | `/jumpstart.qa` | Test coverage, test strategy, release readiness assessment |
|
|
@@ -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
|
|
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
|