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
|
@@ -0,0 +1,659 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"session_id": "ses-framework-init-001",
|
|
4
|
+
"started_at": "2026-04-01T10:00:00.000Z",
|
|
5
|
+
"ended_at": "2026-04-01T13:25:02.000Z",
|
|
6
|
+
"events": [
|
|
7
|
+
{
|
|
8
|
+
"id": "evt-init-001",
|
|
9
|
+
"timestamp": "2026-04-01T10:00:00.000Z",
|
|
10
|
+
"session_id": "ses-framework-init-001",
|
|
11
|
+
"phase": "init",
|
|
12
|
+
"agent": "System",
|
|
13
|
+
"parent_agent": null,
|
|
14
|
+
"event_type": "phase_start",
|
|
15
|
+
"action": "Jump Start framework initialized — workspace scaffolded",
|
|
16
|
+
"metadata": {
|
|
17
|
+
"project_type": "brownfield",
|
|
18
|
+
"config_path": ".jumpstart/config.yaml"
|
|
19
|
+
},
|
|
20
|
+
"duration_ms": null
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "evt-init-002",
|
|
24
|
+
"timestamp": "2026-04-01T10:00:01.000Z",
|
|
25
|
+
"session_id": "ses-framework-init-001",
|
|
26
|
+
"phase": "init",
|
|
27
|
+
"agent": "System",
|
|
28
|
+
"parent_agent": null,
|
|
29
|
+
"event_type": "template_read",
|
|
30
|
+
"action": "Read template: .jumpstart/templates/config.yaml",
|
|
31
|
+
"metadata": {
|
|
32
|
+
"template_path": ".jumpstart/templates/config.yaml"
|
|
33
|
+
},
|
|
34
|
+
"duration_ms": null
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"id": "evt-init-003",
|
|
38
|
+
"timestamp": "2026-04-01T10:00:02.000Z",
|
|
39
|
+
"session_id": "ses-framework-init-001",
|
|
40
|
+
"phase": "init",
|
|
41
|
+
"agent": "System",
|
|
42
|
+
"parent_agent": null,
|
|
43
|
+
"event_type": "file_write",
|
|
44
|
+
"action": "Created framework config: .jumpstart/config.yaml",
|
|
45
|
+
"metadata": {
|
|
46
|
+
"file_path": ".jumpstart/config.yaml"
|
|
47
|
+
},
|
|
48
|
+
"duration_ms": null
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "evt-init-004",
|
|
52
|
+
"timestamp": "2026-04-01T10:00:03.000Z",
|
|
53
|
+
"session_id": "ses-framework-init-001",
|
|
54
|
+
"phase": "init",
|
|
55
|
+
"agent": "System",
|
|
56
|
+
"parent_agent": null,
|
|
57
|
+
"event_type": "file_write",
|
|
58
|
+
"action": "Created state store: .jumpstart/state/state.json",
|
|
59
|
+
"metadata": {
|
|
60
|
+
"file_path": ".jumpstart/state/state.json"
|
|
61
|
+
},
|
|
62
|
+
"duration_ms": null
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"id": "evt-init-005",
|
|
66
|
+
"timestamp": "2026-04-01T10:00:04.000Z",
|
|
67
|
+
"session_id": "ses-framework-init-001",
|
|
68
|
+
"phase": "init",
|
|
69
|
+
"agent": "System",
|
|
70
|
+
"parent_agent": null,
|
|
71
|
+
"event_type": "file_write",
|
|
72
|
+
"action": "Created usage log: .jumpstart/usage-log.json",
|
|
73
|
+
"metadata": {
|
|
74
|
+
"file_path": ".jumpstart/usage-log.json"
|
|
75
|
+
},
|
|
76
|
+
"duration_ms": null
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"id": "evt-init-006",
|
|
80
|
+
"timestamp": "2026-04-01T10:00:05.000Z",
|
|
81
|
+
"session_id": "ses-framework-init-001",
|
|
82
|
+
"phase": "init",
|
|
83
|
+
"agent": "System",
|
|
84
|
+
"parent_agent": null,
|
|
85
|
+
"event_type": "phase_end",
|
|
86
|
+
"action": "Framework initialization complete — ready for Phase 0",
|
|
87
|
+
"metadata": {
|
|
88
|
+
"status": "PASS",
|
|
89
|
+
"agents_available": 23,
|
|
90
|
+
"templates_loaded": 18
|
|
91
|
+
},
|
|
92
|
+
"duration_ms": 5000
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "evt-scout-001",
|
|
96
|
+
"timestamp": "2026-04-01T10:10:00.000Z",
|
|
97
|
+
"session_id": "ses-framework-init-001",
|
|
98
|
+
"phase": "scout",
|
|
99
|
+
"agent": "Scout",
|
|
100
|
+
"parent_agent": null,
|
|
101
|
+
"event_type": "phase_start",
|
|
102
|
+
"action": "Phase started: Scout — brownfield codebase analysis",
|
|
103
|
+
"metadata": {
|
|
104
|
+
"model": "copilot",
|
|
105
|
+
"project_type": "brownfield"
|
|
106
|
+
},
|
|
107
|
+
"duration_ms": null
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"id": "evt-scout-002",
|
|
111
|
+
"timestamp": "2026-04-01T10:10:05.000Z",
|
|
112
|
+
"session_id": "ses-framework-init-001",
|
|
113
|
+
"phase": "scout",
|
|
114
|
+
"agent": "Scout",
|
|
115
|
+
"parent_agent": null,
|
|
116
|
+
"event_type": "template_read",
|
|
117
|
+
"action": "Read template: .jumpstart/templates/codebase-context.md",
|
|
118
|
+
"metadata": {
|
|
119
|
+
"template_path": ".jumpstart/templates/codebase-context.md"
|
|
120
|
+
},
|
|
121
|
+
"duration_ms": null
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"id": "evt-scout-003",
|
|
125
|
+
"timestamp": "2026-04-01T10:12:00.000Z",
|
|
126
|
+
"session_id": "ses-framework-init-001",
|
|
127
|
+
"phase": "scout",
|
|
128
|
+
"agent": "Scout",
|
|
129
|
+
"parent_agent": null,
|
|
130
|
+
"event_type": "artifact_write",
|
|
131
|
+
"action": "Created artifact: specs/codebase-context.md",
|
|
132
|
+
"metadata": {
|
|
133
|
+
"artifact_path": "specs/codebase-context.md"
|
|
134
|
+
},
|
|
135
|
+
"duration_ms": null
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"id": "evt-scout-004",
|
|
139
|
+
"timestamp": "2026-04-01T10:12:30.000Z",
|
|
140
|
+
"session_id": "ses-framework-init-001",
|
|
141
|
+
"phase": "scout",
|
|
142
|
+
"agent": "Scout",
|
|
143
|
+
"parent_agent": null,
|
|
144
|
+
"event_type": "usage_logged",
|
|
145
|
+
"action": "Usage logged: 2450 tokens ($0.0049)",
|
|
146
|
+
"metadata": {
|
|
147
|
+
"estimated_tokens": 2450,
|
|
148
|
+
"estimated_cost_usd": 0.0049,
|
|
149
|
+
"model": "copilot"
|
|
150
|
+
},
|
|
151
|
+
"duration_ms": null
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"id": "evt-scout-005",
|
|
155
|
+
"timestamp": "2026-04-01T10:12:31.000Z",
|
|
156
|
+
"session_id": "ses-framework-init-001",
|
|
157
|
+
"phase": "scout",
|
|
158
|
+
"agent": "Scout",
|
|
159
|
+
"parent_agent": null,
|
|
160
|
+
"event_type": "phase_end",
|
|
161
|
+
"action": "Phase ended: Scout — PASS",
|
|
162
|
+
"metadata": {
|
|
163
|
+
"status": "PASS",
|
|
164
|
+
"turns": 8
|
|
165
|
+
},
|
|
166
|
+
"duration_ms": 151000
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"id": "evt-challenger-001",
|
|
170
|
+
"timestamp": "2026-04-01T10:30:00.000Z",
|
|
171
|
+
"session_id": "ses-framework-init-001",
|
|
172
|
+
"phase": 0,
|
|
173
|
+
"agent": "Challenger",
|
|
174
|
+
"parent_agent": null,
|
|
175
|
+
"event_type": "phase_start",
|
|
176
|
+
"action": "Phase started: Challenger — problem elicitation",
|
|
177
|
+
"metadata": {
|
|
178
|
+
"model": "copilot",
|
|
179
|
+
"elicitation_depth": "standard"
|
|
180
|
+
},
|
|
181
|
+
"duration_ms": null
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"id": "evt-challenger-002",
|
|
185
|
+
"timestamp": "2026-04-01T10:30:10.000Z",
|
|
186
|
+
"session_id": "ses-framework-init-001",
|
|
187
|
+
"phase": 0,
|
|
188
|
+
"agent": "Challenger",
|
|
189
|
+
"parent_agent": null,
|
|
190
|
+
"event_type": "template_read",
|
|
191
|
+
"action": "Read template: .jumpstart/templates/challenger-brief.md",
|
|
192
|
+
"metadata": {
|
|
193
|
+
"template_path": ".jumpstart/templates/challenger-brief.md"
|
|
194
|
+
},
|
|
195
|
+
"duration_ms": null
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"id": "evt-challenger-003",
|
|
199
|
+
"timestamp": "2026-04-01T10:32:00.000Z",
|
|
200
|
+
"session_id": "ses-framework-init-001",
|
|
201
|
+
"phase": 0,
|
|
202
|
+
"agent": "Challenger",
|
|
203
|
+
"parent_agent": null,
|
|
204
|
+
"event_type": "question_asked",
|
|
205
|
+
"action": "Asked 5 question(s) — assumption validation",
|
|
206
|
+
"metadata": {
|
|
207
|
+
"questions": [
|
|
208
|
+
{"id": "q1", "text": "What is the primary problem you are solving?"},
|
|
209
|
+
{"id": "q2", "text": "Who are the key stakeholders?"},
|
|
210
|
+
{"id": "q3", "text": "What constraints exist (timeline, budget, regulatory)?"},
|
|
211
|
+
{"id": "q4", "text": "Have similar solutions been attempted?"},
|
|
212
|
+
{"id": "q5", "text": "What does success look like?"}
|
|
213
|
+
]
|
|
214
|
+
},
|
|
215
|
+
"duration_ms": null
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"id": "evt-challenger-004",
|
|
219
|
+
"timestamp": "2026-04-01T10:35:00.000Z",
|
|
220
|
+
"session_id": "ses-framework-init-001",
|
|
221
|
+
"phase": 0,
|
|
222
|
+
"agent": "Challenger",
|
|
223
|
+
"parent_agent": null,
|
|
224
|
+
"event_type": "question_answered",
|
|
225
|
+
"action": "Received answers for 5 question(s)",
|
|
226
|
+
"metadata": {
|
|
227
|
+
"answers": {
|
|
228
|
+
"q1": "AI-assisted KYC onboarding with regulatory compliance",
|
|
229
|
+
"q2": "Compliance team, engineering, end-users",
|
|
230
|
+
"q3": "Must meet AML/KYC regulations, 3-month timeline",
|
|
231
|
+
"q4": "Manual KYC process exists, no AI augmentation",
|
|
232
|
+
"q5": "90%+ automated ID verification, <5min onboarding"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"duration_ms": null
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"id": "evt-challenger-005",
|
|
239
|
+
"timestamp": "2026-04-01T10:40:00.000Z",
|
|
240
|
+
"session_id": "ses-framework-init-001",
|
|
241
|
+
"phase": 0,
|
|
242
|
+
"agent": "Challenger",
|
|
243
|
+
"parent_agent": null,
|
|
244
|
+
"event_type": "artifact_write",
|
|
245
|
+
"action": "Created artifact: specs/challenger-brief.md",
|
|
246
|
+
"metadata": {
|
|
247
|
+
"artifact_path": "specs/challenger-brief.md"
|
|
248
|
+
},
|
|
249
|
+
"duration_ms": null
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "evt-challenger-006",
|
|
253
|
+
"timestamp": "2026-04-01T10:40:30.000Z",
|
|
254
|
+
"session_id": "ses-framework-init-001",
|
|
255
|
+
"phase": 0,
|
|
256
|
+
"agent": "Challenger",
|
|
257
|
+
"parent_agent": null,
|
|
258
|
+
"event_type": "usage_logged",
|
|
259
|
+
"action": "Usage logged: 3200 tokens ($0.0064)",
|
|
260
|
+
"metadata": {
|
|
261
|
+
"estimated_tokens": 3200,
|
|
262
|
+
"estimated_cost_usd": 0.0064,
|
|
263
|
+
"model": "copilot"
|
|
264
|
+
},
|
|
265
|
+
"duration_ms": null
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"id": "evt-challenger-007",
|
|
269
|
+
"timestamp": "2026-04-01T10:40:31.000Z",
|
|
270
|
+
"session_id": "ses-framework-init-001",
|
|
271
|
+
"phase": 0,
|
|
272
|
+
"agent": "Challenger",
|
|
273
|
+
"parent_agent": null,
|
|
274
|
+
"event_type": "phase_end",
|
|
275
|
+
"action": "Phase ended: Challenger — PASS",
|
|
276
|
+
"metadata": {
|
|
277
|
+
"status": "PASS",
|
|
278
|
+
"turns": 12
|
|
279
|
+
},
|
|
280
|
+
"duration_ms": 631000
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"id": "evt-analyst-001",
|
|
284
|
+
"timestamp": "2026-04-01T11:00:00.000Z",
|
|
285
|
+
"session_id": "ses-framework-init-001",
|
|
286
|
+
"phase": 1,
|
|
287
|
+
"agent": "Analyst",
|
|
288
|
+
"parent_agent": null,
|
|
289
|
+
"event_type": "phase_start",
|
|
290
|
+
"action": "Phase started: Analyst — persona and journey mapping",
|
|
291
|
+
"metadata": {
|
|
292
|
+
"model": "copilot"
|
|
293
|
+
},
|
|
294
|
+
"duration_ms": null
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"id": "evt-analyst-002",
|
|
298
|
+
"timestamp": "2026-04-01T11:00:05.000Z",
|
|
299
|
+
"session_id": "ses-framework-init-001",
|
|
300
|
+
"phase": 1,
|
|
301
|
+
"agent": "Analyst",
|
|
302
|
+
"parent_agent": null,
|
|
303
|
+
"event_type": "artifact_read",
|
|
304
|
+
"action": "Read artifact: specs/challenger-brief.md",
|
|
305
|
+
"metadata": {
|
|
306
|
+
"artifact_path": "specs/challenger-brief.md"
|
|
307
|
+
},
|
|
308
|
+
"duration_ms": null
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": "evt-analyst-003",
|
|
312
|
+
"timestamp": "2026-04-01T11:05:00.000Z",
|
|
313
|
+
"session_id": "ses-framework-init-001",
|
|
314
|
+
"phase": 1,
|
|
315
|
+
"agent": "Analyst",
|
|
316
|
+
"parent_agent": null,
|
|
317
|
+
"event_type": "artifact_write",
|
|
318
|
+
"action": "Created artifact: specs/product-brief.md",
|
|
319
|
+
"metadata": {
|
|
320
|
+
"artifact_path": "specs/product-brief.md"
|
|
321
|
+
},
|
|
322
|
+
"duration_ms": null
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"id": "evt-analyst-004",
|
|
326
|
+
"timestamp": "2026-04-01T11:05:30.000Z",
|
|
327
|
+
"session_id": "ses-framework-init-001",
|
|
328
|
+
"phase": 1,
|
|
329
|
+
"agent": "Analyst",
|
|
330
|
+
"parent_agent": null,
|
|
331
|
+
"event_type": "usage_logged",
|
|
332
|
+
"action": "Usage logged: 2800 tokens ($0.0056)",
|
|
333
|
+
"metadata": {
|
|
334
|
+
"estimated_tokens": 2800,
|
|
335
|
+
"estimated_cost_usd": 0.0056,
|
|
336
|
+
"model": "copilot"
|
|
337
|
+
},
|
|
338
|
+
"duration_ms": null
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"id": "evt-analyst-005",
|
|
342
|
+
"timestamp": "2026-04-01T11:05:31.000Z",
|
|
343
|
+
"session_id": "ses-framework-init-001",
|
|
344
|
+
"phase": 1,
|
|
345
|
+
"agent": "Analyst",
|
|
346
|
+
"parent_agent": null,
|
|
347
|
+
"event_type": "phase_end",
|
|
348
|
+
"action": "Phase ended: Analyst — PASS",
|
|
349
|
+
"metadata": {
|
|
350
|
+
"status": "PASS",
|
|
351
|
+
"turns": 10
|
|
352
|
+
},
|
|
353
|
+
"duration_ms": 331000
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"id": "evt-pm-001",
|
|
357
|
+
"timestamp": "2026-04-01T11:30:00.000Z",
|
|
358
|
+
"session_id": "ses-framework-init-001",
|
|
359
|
+
"phase": 2,
|
|
360
|
+
"agent": "PM",
|
|
361
|
+
"parent_agent": null,
|
|
362
|
+
"event_type": "phase_start",
|
|
363
|
+
"action": "Phase started: PM — PRD generation with user stories",
|
|
364
|
+
"metadata": {
|
|
365
|
+
"model": "copilot",
|
|
366
|
+
"story_format": "user_story",
|
|
367
|
+
"prioritization": "moscow"
|
|
368
|
+
},
|
|
369
|
+
"duration_ms": null
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"id": "evt-pm-002",
|
|
373
|
+
"timestamp": "2026-04-01T11:30:05.000Z",
|
|
374
|
+
"session_id": "ses-framework-init-001",
|
|
375
|
+
"phase": 2,
|
|
376
|
+
"agent": "PM",
|
|
377
|
+
"parent_agent": null,
|
|
378
|
+
"event_type": "artifact_read",
|
|
379
|
+
"action": "Read artifact: specs/product-brief.md",
|
|
380
|
+
"metadata": {
|
|
381
|
+
"artifact_path": "specs/product-brief.md"
|
|
382
|
+
},
|
|
383
|
+
"duration_ms": null
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"id": "evt-pm-003",
|
|
387
|
+
"timestamp": "2026-04-01T11:35:00.000Z",
|
|
388
|
+
"session_id": "ses-framework-init-001",
|
|
389
|
+
"phase": 2,
|
|
390
|
+
"agent": "PM",
|
|
391
|
+
"parent_agent": null,
|
|
392
|
+
"event_type": "artifact_write",
|
|
393
|
+
"action": "Created artifact: specs/prd.md",
|
|
394
|
+
"metadata": {
|
|
395
|
+
"artifact_path": "specs/prd.md"
|
|
396
|
+
},
|
|
397
|
+
"duration_ms": null
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"id": "evt-pm-004",
|
|
401
|
+
"timestamp": "2026-04-01T11:35:30.000Z",
|
|
402
|
+
"session_id": "ses-framework-init-001",
|
|
403
|
+
"phase": 2,
|
|
404
|
+
"agent": "PM",
|
|
405
|
+
"parent_agent": null,
|
|
406
|
+
"event_type": "usage_logged",
|
|
407
|
+
"action": "Usage logged: 3500 tokens ($0.0070)",
|
|
408
|
+
"metadata": {
|
|
409
|
+
"estimated_tokens": 3500,
|
|
410
|
+
"estimated_cost_usd": 0.007,
|
|
411
|
+
"model": "copilot"
|
|
412
|
+
},
|
|
413
|
+
"duration_ms": null
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"id": "evt-pm-005",
|
|
417
|
+
"timestamp": "2026-04-01T11:35:31.000Z",
|
|
418
|
+
"session_id": "ses-framework-init-001",
|
|
419
|
+
"phase": 2,
|
|
420
|
+
"agent": "PM",
|
|
421
|
+
"parent_agent": null,
|
|
422
|
+
"event_type": "phase_end",
|
|
423
|
+
"action": "Phase ended: PM — PASS",
|
|
424
|
+
"metadata": {
|
|
425
|
+
"status": "PASS",
|
|
426
|
+
"turns": 14
|
|
427
|
+
},
|
|
428
|
+
"duration_ms": 331000
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"id": "evt-arch-001",
|
|
432
|
+
"timestamp": "2026-04-01T12:00:00.000Z",
|
|
433
|
+
"session_id": "ses-framework-init-001",
|
|
434
|
+
"phase": 3,
|
|
435
|
+
"agent": "Architect",
|
|
436
|
+
"parent_agent": null,
|
|
437
|
+
"event_type": "phase_start",
|
|
438
|
+
"action": "Phase started: Architect — tech stack, data model, API design",
|
|
439
|
+
"metadata": {
|
|
440
|
+
"model": "copilot",
|
|
441
|
+
"adr_required": true
|
|
442
|
+
},
|
|
443
|
+
"duration_ms": null
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"id": "evt-arch-002",
|
|
447
|
+
"timestamp": "2026-04-01T12:00:05.000Z",
|
|
448
|
+
"session_id": "ses-framework-init-001",
|
|
449
|
+
"phase": 3,
|
|
450
|
+
"agent": "Architect",
|
|
451
|
+
"parent_agent": null,
|
|
452
|
+
"event_type": "artifact_read",
|
|
453
|
+
"action": "Read artifact: specs/prd.md",
|
|
454
|
+
"metadata": {
|
|
455
|
+
"artifact_path": "specs/prd.md"
|
|
456
|
+
},
|
|
457
|
+
"duration_ms": null
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"id": "evt-arch-003",
|
|
461
|
+
"timestamp": "2026-04-01T12:05:00.000Z",
|
|
462
|
+
"session_id": "ses-framework-init-001",
|
|
463
|
+
"phase": 3,
|
|
464
|
+
"agent": "Architect",
|
|
465
|
+
"parent_agent": null,
|
|
466
|
+
"event_type": "subagent_invoked",
|
|
467
|
+
"action": "Invoked Security subagent for STRIDE threat model",
|
|
468
|
+
"metadata": {
|
|
469
|
+
"subagent_name": "Security",
|
|
470
|
+
"subagent_query": "Perform STRIDE threat analysis for KYC document processing pipeline"
|
|
471
|
+
},
|
|
472
|
+
"duration_ms": null
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"id": "evt-arch-004",
|
|
476
|
+
"timestamp": "2026-04-01T12:06:00.000Z",
|
|
477
|
+
"session_id": "ses-framework-init-001",
|
|
478
|
+
"phase": 3,
|
|
479
|
+
"agent": "Architect",
|
|
480
|
+
"parent_agent": null,
|
|
481
|
+
"event_type": "subagent_completed",
|
|
482
|
+
"action": "Security subagent completed — STRIDE analysis incorporated",
|
|
483
|
+
"metadata": {
|
|
484
|
+
"subagent_name": "Security",
|
|
485
|
+
"subagent_result": "Identified 4 threat vectors, recommended encryption at rest and mTLS"
|
|
486
|
+
},
|
|
487
|
+
"duration_ms": 60000
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"id": "evt-arch-005",
|
|
491
|
+
"timestamp": "2026-04-01T12:10:00.000Z",
|
|
492
|
+
"session_id": "ses-framework-init-001",
|
|
493
|
+
"phase": 3,
|
|
494
|
+
"agent": "Architect",
|
|
495
|
+
"parent_agent": null,
|
|
496
|
+
"event_type": "artifact_write",
|
|
497
|
+
"action": "Created artifact: specs/architecture.md",
|
|
498
|
+
"metadata": {
|
|
499
|
+
"artifact_path": "specs/architecture.md"
|
|
500
|
+
},
|
|
501
|
+
"duration_ms": null
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"id": "evt-arch-006",
|
|
505
|
+
"timestamp": "2026-04-01T12:12:00.000Z",
|
|
506
|
+
"session_id": "ses-framework-init-001",
|
|
507
|
+
"phase": 3,
|
|
508
|
+
"agent": "Architect",
|
|
509
|
+
"parent_agent": null,
|
|
510
|
+
"event_type": "artifact_write",
|
|
511
|
+
"action": "Created artifact: specs/implementation-plan.md",
|
|
512
|
+
"metadata": {
|
|
513
|
+
"artifact_path": "specs/implementation-plan.md"
|
|
514
|
+
},
|
|
515
|
+
"duration_ms": null
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"id": "evt-arch-007",
|
|
519
|
+
"timestamp": "2026-04-01T12:12:30.000Z",
|
|
520
|
+
"session_id": "ses-framework-init-001",
|
|
521
|
+
"phase": 3,
|
|
522
|
+
"agent": "Architect",
|
|
523
|
+
"parent_agent": null,
|
|
524
|
+
"event_type": "usage_logged",
|
|
525
|
+
"action": "Usage logged: 5200 tokens ($0.0104)",
|
|
526
|
+
"metadata": {
|
|
527
|
+
"estimated_tokens": 5200,
|
|
528
|
+
"estimated_cost_usd": 0.0104,
|
|
529
|
+
"model": "copilot"
|
|
530
|
+
},
|
|
531
|
+
"duration_ms": null
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"id": "evt-arch-008",
|
|
535
|
+
"timestamp": "2026-04-01T12:12:31.000Z",
|
|
536
|
+
"session_id": "ses-framework-init-001",
|
|
537
|
+
"phase": 3,
|
|
538
|
+
"agent": "Architect",
|
|
539
|
+
"parent_agent": null,
|
|
540
|
+
"event_type": "phase_end",
|
|
541
|
+
"action": "Phase ended: Architect — PASS",
|
|
542
|
+
"metadata": {
|
|
543
|
+
"status": "PASS",
|
|
544
|
+
"turns": 18
|
|
545
|
+
},
|
|
546
|
+
"duration_ms": 751000
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"id": "evt-dev-001",
|
|
550
|
+
"timestamp": "2026-04-01T13:00:00.000Z",
|
|
551
|
+
"session_id": "ses-framework-init-001",
|
|
552
|
+
"phase": 4,
|
|
553
|
+
"agent": "Developer",
|
|
554
|
+
"parent_agent": null,
|
|
555
|
+
"event_type": "phase_start",
|
|
556
|
+
"action": "Phase started: Developer — implementation from plan",
|
|
557
|
+
"metadata": {
|
|
558
|
+
"model": "copilot",
|
|
559
|
+
"test_framework": "vitest"
|
|
560
|
+
},
|
|
561
|
+
"duration_ms": null
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"id": "evt-dev-002",
|
|
565
|
+
"timestamp": "2026-04-01T13:00:05.000Z",
|
|
566
|
+
"session_id": "ses-framework-init-001",
|
|
567
|
+
"phase": 4,
|
|
568
|
+
"agent": "Developer",
|
|
569
|
+
"parent_agent": null,
|
|
570
|
+
"event_type": "artifact_read",
|
|
571
|
+
"action": "Read artifact: specs/implementation-plan.md",
|
|
572
|
+
"metadata": {
|
|
573
|
+
"artifact_path": "specs/implementation-plan.md"
|
|
574
|
+
},
|
|
575
|
+
"duration_ms": null
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"id": "evt-dev-003",
|
|
579
|
+
"timestamp": "2026-04-01T13:15:00.000Z",
|
|
580
|
+
"session_id": "ses-framework-init-001",
|
|
581
|
+
"phase": 4,
|
|
582
|
+
"agent": "Developer",
|
|
583
|
+
"parent_agent": null,
|
|
584
|
+
"event_type": "file_write",
|
|
585
|
+
"action": "Created file: src/App.tsx",
|
|
586
|
+
"metadata": {
|
|
587
|
+
"file_path": "src/App.tsx"
|
|
588
|
+
},
|
|
589
|
+
"duration_ms": null
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"id": "evt-dev-004",
|
|
593
|
+
"timestamp": "2026-04-01T13:20:00.000Z",
|
|
594
|
+
"session_id": "ses-framework-init-001",
|
|
595
|
+
"phase": 4,
|
|
596
|
+
"agent": "Developer",
|
|
597
|
+
"parent_agent": null,
|
|
598
|
+
"event_type": "file_write",
|
|
599
|
+
"action": "Created test: tests/App.test.tsx",
|
|
600
|
+
"metadata": {
|
|
601
|
+
"file_path": "tests/App.test.tsx"
|
|
602
|
+
},
|
|
603
|
+
"duration_ms": null
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"id": "evt-dev-005",
|
|
607
|
+
"timestamp": "2026-04-01T13:25:00.000Z",
|
|
608
|
+
"session_id": "ses-framework-init-001",
|
|
609
|
+
"phase": 4,
|
|
610
|
+
"agent": "Developer",
|
|
611
|
+
"parent_agent": null,
|
|
612
|
+
"event_type": "usage_logged",
|
|
613
|
+
"action": "Usage logged: 8500 tokens ($0.0170)",
|
|
614
|
+
"metadata": {
|
|
615
|
+
"estimated_tokens": 8500,
|
|
616
|
+
"estimated_cost_usd": 0.017,
|
|
617
|
+
"model": "copilot"
|
|
618
|
+
},
|
|
619
|
+
"duration_ms": null
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"id": "evt-dev-006",
|
|
623
|
+
"timestamp": "2026-04-01T13:25:01.000Z",
|
|
624
|
+
"session_id": "ses-framework-init-001",
|
|
625
|
+
"phase": 4,
|
|
626
|
+
"agent": "Developer",
|
|
627
|
+
"parent_agent": null,
|
|
628
|
+
"event_type": "phase_end",
|
|
629
|
+
"action": "Phase ended: Developer — PASS",
|
|
630
|
+
"metadata": {
|
|
631
|
+
"status": "PASS",
|
|
632
|
+
"turns": 25
|
|
633
|
+
},
|
|
634
|
+
"duration_ms": 1501000
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"id": "evt-handoff-001",
|
|
638
|
+
"timestamp": "2026-04-01T13:25:02.000Z",
|
|
639
|
+
"session_id": "ses-framework-init-001",
|
|
640
|
+
"phase": 4,
|
|
641
|
+
"agent": "System",
|
|
642
|
+
"parent_agent": null,
|
|
643
|
+
"event_type": "handoff",
|
|
644
|
+
"action": "All phases complete — workflow finished",
|
|
645
|
+
"metadata": {
|
|
646
|
+
"source_phase": 4,
|
|
647
|
+
"target_phase": null,
|
|
648
|
+
"context_files": [
|
|
649
|
+
"specs/challenger-brief.md",
|
|
650
|
+
"specs/product-brief.md",
|
|
651
|
+
"specs/prd.md",
|
|
652
|
+
"specs/architecture.md",
|
|
653
|
+
"specs/implementation-plan.md"
|
|
654
|
+
]
|
|
655
|
+
},
|
|
656
|
+
"duration_ms": null
|
|
657
|
+
}
|
|
658
|
+
]
|
|
659
|
+
}
|
|
@@ -43,7 +43,7 @@ This document defines which AI model is assigned to each phase and advisory agen
|
|
|
43
43
|
|
|
44
44
|
| Agent | Model Provider | Model ID | Rationale |
|
|
45
45
|
|---|---|---|---|
|
|
46
|
-
| UX Designer | {{provider}} | {{model}} | {{Rationale}} |
|
|
46
|
+
| UI/UX Designer | {{provider}} | {{model}} | {{Rationale}} |
|
|
47
47
|
| QA | {{provider}} | {{model}} | {{Rationale}} |
|
|
48
48
|
| Security | {{provider}} | {{model}} | {{Rationale}} |
|
|
49
49
|
| Performance | {{provider}} | {{model}} | {{Rationale}} |
|
|
@@ -16,16 +16,16 @@ owners: []
|
|
|
16
16
|
sha256: ""
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
# UX Design: {{Project Name}}
|
|
19
|
+
# UI/UX Design: {{Project Name}}
|
|
20
20
|
|
|
21
|
-
> **User Experience Analysis, Emotional Response Mapping, and Interaction Design**
|
|
21
|
+
> **User Interface Design, User Experience Analysis, Emotional Response Mapping, and Interaction Design**
|
|
22
22
|
|
|
23
23
|
## Metadata
|
|
24
24
|
|
|
25
25
|
| Field | Value |
|
|
26
26
|
|---|---|
|
|
27
27
|
| Project | {{Project Name}} |
|
|
28
|
-
| UX Designer | AI UX Designer Agent |
|
|
28
|
+
| UI/UX Designer | AI UI/UX Designer Agent |
|
|
29
29
|
| Date | {{Date}} |
|
|
30
30
|
| Product Brief | `specs/product-brief.md` |
|
|
31
31
|
|