popilot 0.2.0

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 (136) hide show
  1. package/README.md +372 -0
  2. package/adapters/claude-code/.claude/commands/_domain.md.hbs +32 -0
  3. package/adapters/claude-code/.claude/commands/analytics.md.hbs +55 -0
  4. package/adapters/claude-code/.claude/commands/daily.md.hbs +301 -0
  5. package/adapters/claude-code/.claude/commands/dev.md.hbs +62 -0
  6. package/adapters/claude-code/.claude/commands/handoff.md +258 -0
  7. package/adapters/claude-code/.claude/commands/market.md +120 -0
  8. package/adapters/claude-code/.claude/commands/metrics.md +123 -0
  9. package/adapters/claude-code/.claude/commands/oscar-loop.md +436 -0
  10. package/adapters/claude-code/.claude/commands/party.md +85 -0
  11. package/adapters/claude-code/.claude/commands/plan.md +43 -0
  12. package/adapters/claude-code/.claude/commands/research.md +203 -0
  13. package/adapters/claude-code/.claude/commands/retro.md +68 -0
  14. package/adapters/claude-code/.claude/commands/save.md +440 -0
  15. package/adapters/claude-code/.claude/commands/sessions.md +139 -0
  16. package/adapters/claude-code/.claude/commands/sprint.md +106 -0
  17. package/adapters/claude-code/.claude/commands/start.md +368 -0
  18. package/adapters/claude-code/.claude/commands/strategy.md +41 -0
  19. package/adapters/claude-code/.claude/commands/task.md +220 -0
  20. package/adapters/claude-code/.claude/commands/tracking.md +116 -0
  21. package/adapters/claude-code/.claude/commands/validate.md +58 -0
  22. package/adapters/claude-code/CLAUDE.md.hbs +208 -0
  23. package/adapters/claude-code/manifest.yaml +36 -0
  24. package/bin/cli.mjs +218 -0
  25. package/lib/adapter.mjs +68 -0
  26. package/lib/doctor.mjs +161 -0
  27. package/lib/hydrate.mjs +421 -0
  28. package/lib/prompt.mjs +78 -0
  29. package/lib/scaffold.mjs +155 -0
  30. package/lib/setup-wizard.mjs +331 -0
  31. package/lib/template-engine.mjs +164 -0
  32. package/lib/yaml-lite.mjs +476 -0
  33. package/package.json +30 -0
  34. package/scaffold/.context/.secrets.yaml.example +20 -0
  35. package/scaffold/.context/WORKFLOW.md.hbs +332 -0
  36. package/scaffold/.context/agents/TEMPLATE.md +115 -0
  37. package/scaffold/.context/agents/analyst.md.hbs +362 -0
  38. package/scaffold/.context/agents/developer.md.hbs +390 -0
  39. package/scaffold/.context/agents/handoff-specialist.md.hbs +292 -0
  40. package/scaffold/.context/agents/market-researcher.md.hbs +288 -0
  41. package/scaffold/.context/agents/ollie.md +323 -0
  42. package/scaffold/.context/agents/operations.md.hbs +293 -0
  43. package/scaffold/.context/agents/orchestrator.md.hbs +434 -0
  44. package/scaffold/.context/agents/planner.md.hbs +405 -0
  45. package/scaffold/.context/agents/qa.md.hbs +409 -0
  46. package/scaffold/.context/agents/researcher.md.hbs +330 -0
  47. package/scaffold/.context/agents/sage.md +349 -0
  48. package/scaffold/.context/agents/strategist.md.hbs +339 -0
  49. package/scaffold/.context/agents/tracking-governor.md.hbs +291 -0
  50. package/scaffold/.context/agents/validator.md.hbs +365 -0
  51. package/scaffold/.context/integrations/_registry.yaml +38 -0
  52. package/scaffold/.context/integrations/providers/channel_io.yaml +38 -0
  53. package/scaffold/.context/integrations/providers/corti.yaml +203 -0
  54. package/scaffold/.context/integrations/providers/ga4.yaml +116 -0
  55. package/scaffold/.context/integrations/providers/intercom.yaml +47 -0
  56. package/scaffold/.context/integrations/providers/linear.yaml +46 -0
  57. package/scaffold/.context/integrations/providers/mixpanel.yaml +73 -0
  58. package/scaffold/.context/integrations/providers/notebooklm.yaml +74 -0
  59. package/scaffold/.context/integrations/providers/notion.yaml +129 -0
  60. package/scaffold/.context/integrations/providers/prod_db.yaml +183 -0
  61. package/scaffold/.context/oscar/workflows/multi-agent.md +82 -0
  62. package/scaffold/.context/oscar/workflows/ollie-sage.md +128 -0
  63. package/scaffold/.context/oscar/workflows/session-git.md +71 -0
  64. package/scaffold/.context/oscar/workflows/setup.md +663 -0
  65. package/scaffold/.context/oscar/workflows/tracking.md +118 -0
  66. package/scaffold/.context/project.yaml.example +102 -0
  67. package/scaffold/.context/templates/dev-guide.md +217 -0
  68. package/scaffold/.context/templates/epic-spec.md +225 -0
  69. package/scaffold/.context/templates/guardrail.md +94 -0
  70. package/scaffold/.context/templates/handoff-checklist.md +197 -0
  71. package/scaffold/.context/templates/prd.md +80 -0
  72. package/scaffold/.context/templates/retrospective.md +78 -0
  73. package/scaffold/.context/templates/screen-spec.md +714 -0
  74. package/scaffold/.context/templates/sprint-plan.md +72 -0
  75. package/scaffold/.context/templates/sprint-status.yaml +109 -0
  76. package/scaffold/.context/templates/story-v2.md +228 -0
  77. package/scaffold/.context/templates/validation-report.md +99 -0
  78. package/scaffold/.gitignore.append +7 -0
  79. package/scaffold/spec-site/env.d.ts +7 -0
  80. package/scaffold/spec-site/index.html +14 -0
  81. package/scaffold/spec-site/package.json +20 -0
  82. package/scaffold/spec-site/src/App.vue +27 -0
  83. package/scaffold/spec-site/src/assets/icons/menu/ic_ads.svg +10 -0
  84. package/scaffold/spec-site/src/assets/icons/menu/ic_ads_on.svg +10 -0
  85. package/scaffold/spec-site/src/assets/icons/menu/ic_board.svg +14 -0
  86. package/scaffold/spec-site/src/assets/icons/menu/ic_board_on.svg +14 -0
  87. package/scaffold/spec-site/src/assets/icons/menu/ic_dashboard.svg +21 -0
  88. package/scaffold/spec-site/src/assets/icons/menu/ic_dashboard_on.svg +21 -0
  89. package/scaffold/spec-site/src/assets/icons/menu/ic_pricing.svg +20 -0
  90. package/scaffold/spec-site/src/assets/icons/menu/ic_pricing_on.svg +20 -0
  91. package/scaffold/spec-site/src/assets/icons/menu/ic_store.svg +11 -0
  92. package/scaffold/spec-site/src/assets/icons/menu/ic_store_on.svg +11 -0
  93. package/scaffold/spec-site/src/components/Accordion.vue +108 -0
  94. package/scaffold/spec-site/src/components/AppHeader.vue +304 -0
  95. package/scaffold/spec-site/src/components/Badge.vue +25 -0
  96. package/scaffold/spec-site/src/components/CoachingCard.vue +112 -0
  97. package/scaffold/spec-site/src/components/MemoSidebar.vue +239 -0
  98. package/scaffold/spec-site/src/components/MockupShell.vue +100 -0
  99. package/scaffold/spec-site/src/components/RuleTable.vue +99 -0
  100. package/scaffold/spec-site/src/components/ScenarioSwitcher.vue +103 -0
  101. package/scaffold/spec-site/src/components/SpecNav.vue +26 -0
  102. package/scaffold/spec-site/src/components/SpecSection.vue +59 -0
  103. package/scaffold/spec-site/src/components/SummaryGrid.vue +39 -0
  104. package/scaffold/spec-site/src/components/VersionBadge.vue +38 -0
  105. package/scaffold/spec-site/src/composables/useActiveSection.ts +53 -0
  106. package/scaffold/spec-site/src/composables/useMemo.ts +138 -0
  107. package/scaffold/spec-site/src/composables/useRetro.ts +313 -0
  108. package/scaffold/spec-site/src/composables/useScenario.ts +43 -0
  109. package/scaffold/spec-site/src/composables/useScenarioStore.ts +102 -0
  110. package/scaffold/spec-site/src/composables/useTurso.ts +160 -0
  111. package/scaffold/spec-site/src/composables/useUser.ts +25 -0
  112. package/scaffold/spec-site/src/data/navigation.ts +59 -0
  113. package/scaffold/spec-site/src/data/types.ts +90 -0
  114. package/scaffold/spec-site/src/data/wireframeRegistry.ts +25 -0
  115. package/scaffold/spec-site/src/layouts/SplitPaneLayout.vue +79 -0
  116. package/scaffold/spec-site/src/main.ts +10 -0
  117. package/scaffold/spec-site/src/pages/IndexPage.vue +66 -0
  118. package/scaffold/spec-site/src/pages/PolicyDetail.vue +215 -0
  119. package/scaffold/spec-site/src/pages/PolicyIndex.vue +74 -0
  120. package/scaffold/spec-site/src/pages/retro/RetroActions.vue +191 -0
  121. package/scaffold/spec-site/src/pages/retro/RetroBoard.vue +192 -0
  122. package/scaffold/spec-site/src/pages/retro/RetroCard.vue +131 -0
  123. package/scaffold/spec-site/src/pages/retro/RetroHeader.vue +287 -0
  124. package/scaffold/spec-site/src/pages/retro/RetroPage.vue +178 -0
  125. package/scaffold/spec-site/src/pages/shared/NoContentPlaceholder.vue +34 -0
  126. package/scaffold/spec-site/src/pages/shared/PlaceholderContent.vue +22 -0
  127. package/scaffold/spec-site/src/pages/shared/PlaceholderSpecPanel.vue +16 -0
  128. package/scaffold/spec-site/src/pages/shared/PolicyFallback.vue +145 -0
  129. package/scaffold/spec-site/src/pages/wireframe/WireframeShell.vue +151 -0
  130. package/scaffold/spec-site/src/router.ts +85 -0
  131. package/scaffold/spec-site/src/styles/base.css +21 -0
  132. package/scaffold/spec-site/src/styles/split-pane.css +143 -0
  133. package/scaffold/spec-site/src/styles/variables.css +47 -0
  134. package/scaffold/spec-site/src/utils/markdown.ts +197 -0
  135. package/scaffold/spec-site/tsconfig.json +20 -0
  136. package/scaffold/spec-site/vite.config.ts +18 -0
@@ -0,0 +1,94 @@
1
+ # Guard Rail Inspection Template
2
+
3
+ > 📊 Side-effect monitoring template used by Vicky
4
+
5
+ ## Guard Rail Inspection Report
6
+
7
+ ### Inspection Information
8
+ - **Inspection date**: [Date]
9
+ - **Inspection period**: [Start date] ~ [End date]
10
+ - **Related sprint**: Sprint [N]
11
+ - **Related feature**: [Feature name]
12
+
13
+ ---
14
+
15
+ ## Guard Rail Metric Status
16
+
17
+ ### Core Guard Rail
18
+ | Metric | Threshold | Before | After | Change | Status |
19
+ |--------|-----------|--------|-------|--------|--------|
20
+ | [Metric 1] | ≤ [Value] | [Value] | [Value] | [+/-]% | 🟢/🟡/🔴 |
21
+ | [Metric 2] | ≥ [Value] | [Value] | [Value] | [+/-]% | 🟢/🟡/🔴 |
22
+ | [Metric 3] | ≤ [Value] | [Value] | [Value] | [+/-]% | 🟢/🟡/🔴 |
23
+
24
+ ### Status Definitions
25
+ - 🟢 **Normal**: Threshold met, stable
26
+ - 🟡 **Caution**: Near threshold (±10%), monitoring needed
27
+ - 🔴 **Warning**: Threshold exceeded, immediate action required
28
+
29
+ ---
30
+
31
+ ## Detailed Analysis
32
+
33
+ ### 🟢 Normal Metrics
34
+ | Metric | Status | Notes |
35
+ |--------|--------|-------|
36
+ | [Metric] | Within threshold | [Additional comment] |
37
+
38
+ ### 🟡 Caution Metrics
39
+ | Metric | Current Value | Threshold | Trend | Recommended Action |
40
+ |--------|--------------|-----------|-------|-------------------|
41
+ | [Metric] | [Value] | [Threshold] | ↑/↓/→ | [Action] |
42
+
43
+ ### 🔴 Warning Metrics
44
+ | Metric | Current Value | Threshold | Excess | Immediate Action |
45
+ |--------|--------------|-----------|--------|-----------------|
46
+ | [Metric] | [Value] | [Threshold] | [+/-]% | [Action] |
47
+
48
+ ---
49
+
50
+ ## Warning Details
51
+
52
+ ### [Warning Metric Name]
53
+
54
+ **Situation**
55
+ - Current value: [Value]
56
+ - Threshold: [Threshold]
57
+ - Excess: [%]
58
+
59
+ **Root Cause Analysis**
60
+ - [Suspected cause 1]
61
+ - [Suspected cause 2]
62
+
63
+ **Immediate Actions**
64
+ - [ ] [Action 1]
65
+ - [ ] [Action 2]
66
+
67
+ **Monitoring Plan**
68
+ - Next inspection: [Date]
69
+ - Responsible: [Owner]
70
+
71
+ ---
72
+
73
+ ## Recommendations
74
+
75
+ ### Immediate Execution
76
+ - [ ] [Action 1]
77
+
78
+ ### Verify at Next Inspection
79
+ - [ ] [Verification item]
80
+
81
+ ### Long-term Improvement
82
+ - [ ] [Improvement item]
83
+
84
+ ---
85
+
86
+ ## Next Inspection
87
+
88
+ - **Scheduled date**: [Date]
89
+ - **Focus area**: [Metric]
90
+
91
+ ---
92
+
93
+ *Written by: 📊 Vicky*
94
+ *Written date: [Date]*
@@ -0,0 +1,197 @@
1
+ # Handoff Quality Verification Checklist
2
+
3
+ > 📋 Pre-handoff story quality verification used by Penny (BMAD-METHOD based)
4
+
5
+ ---
6
+
7
+ ## Verification Target
8
+
9
+ | Item | Value |
10
+ |------|-------|
11
+ | **Story ID** | [E-N-S-M] |
12
+ | **Story Title** | [Title] |
13
+ | **Reviewer** | [Penny / Person name] |
14
+ | **Review Date** | [YYYY-MM-DD] |
15
+
16
+ ---
17
+
18
+ ## Phase 1: Context & Requirements Verification
19
+
20
+ ### User Story Verification
21
+ - [ ] Is the **Role** clearly defined?
22
+ - [ ] Is the **Feature (Want)** specifically described?
23
+ - [ ] Is the **Value (So that)** connected to business goals?
24
+
25
+ ### Acceptance Criteria Verification
26
+ - [ ] Are all acceptance criteria **testable**?
27
+ - [ ] Is the **Given-When-Then** format complete?
28
+ - [ ] Is there **consistency** with PRD/Epic?
29
+ - [ ] Are **edge cases** included?
30
+
31
+ ### Task Breakdown Verification
32
+ - [ ] Are tasks **mapped** to acceptance criteria?
33
+ - [ ] Are subtasks **specific** enough?
34
+ - [ ] Is the estimated workload **realistic**?
35
+
36
+ ---
37
+
38
+ ## Phase 2: Disaster Prevention Analysis
39
+
40
+ ### Feature Duplication Check
41
+ - [ ] Confirmed whether **similar functionality** exists in current code?
42
+ - [ ] Identified **reusable components**?
43
+ - [ ] Is there an **integration plan** if duplicated?
44
+
45
+ **Duplicates Found**:
46
+ ```
47
+ [None / Detail if found]
48
+ ```
49
+
50
+ ### Technical Error Check
51
+ - [ ] Are **library versions** compatible?
52
+ - [ ] Analyzed **API contract** change impact?
53
+ - [ ] Are **type definitions** consistent?
54
+
55
+ **Technical Cautions**:
56
+ ```
57
+ [None / Detail if found]
58
+ ```
59
+
60
+ ### File Structure Check
61
+ - [ ] Does file creation location follow **project conventions**?
62
+ - [ ] No impact on **build process**?
63
+ - [ ] Are **import paths** correct?
64
+
65
+ ### Regression Check
66
+ - [ ] Do **existing tests** pass?
67
+ - [ ] Created list of **affected features**?
68
+ - [ ] Reviewed **side effect** possibilities?
69
+
70
+ **Affected Features**:
71
+ ```
72
+ [None / Detail if found]
73
+ ```
74
+
75
+ ### Implementation Ambiguity Check
76
+ - [ ] Are all **edge cases** defined?
77
+ - [ ] Are **error handling methods** specified?
78
+ - [ ] Is **null/undefined handling** defined?
79
+ - [ ] Is **concurrency/race condition** considered?
80
+
81
+ **Ambiguous Areas**:
82
+ ```
83
+ [None / Detail with resolution plan if found]
84
+ ```
85
+
86
+ ---
87
+
88
+ ## Phase 2.5: Screen Spec Verification (For UI Epics)
89
+
90
+ > Applies only to Epics with UI. N/A for backend-only Epics
91
+
92
+ ### Screen Spec Completeness
93
+
94
+ - [ ] **Level 1~2** (IA/Main screen): Is the overall structure and layout expressed in ASCII?
95
+ - [ ] **Level 3** (Components): Are all state variants defined?
96
+ - [ ] **Level 4** (Modals): Are validation and save behavior defined?
97
+ - [ ] **Level 5** (External integration): Are connections with existing screens defined?
98
+ - [ ] **Level 6** (State-based UI): Are loading/empty/error states defined?
99
+ - [ ] **Level 7** (Policies): Are all policies organized in tables?
100
+
101
+ ### Screen Spec Quality
102
+
103
+ - [ ] Are **specs (size, color, behavior)** specified for all UI elements?
104
+ - [ ] Are **ASCII diagrams** at a level developers can understand?
105
+ - [ ] Is the Epic Spec **business logic** reflected in the screen spec?
106
+ - [ ] Are **edge case UIs** defined?
107
+
108
+ ### Story Linkage
109
+
110
+ - [ ] Is the screen spec **link added** to References in all related Stories?
111
+ - [ ] Are Story tasks **mapped** to screen spec Levels?
112
+
113
+ **Screen spec file**:
114
+ ```
115
+ sprints/s{N}/design/{Epic-ID}-screen-spec.md
116
+ ```
117
+
118
+ ### spec-site Verification
119
+ - [ ] Does the interactive mockup match the ACs?
120
+ - [ ] Are all scenarios defined?
121
+ - [ ] Are empty/error states included in the mockup?
122
+
123
+ ---
124
+
125
+ ## Phase 3: AI Agent Optimization Verification
126
+
127
+ ### Dev Notes Verification
128
+ - [ ] Is the **architecture pattern** specified?
129
+ - [ ] Is the **reference implementation** provided with accurate paths?
130
+ - [ ] Are **things to avoid** specified?
131
+
132
+ ### Source Tree Verification
133
+ - [ ] Is the **affected file list** complete?
134
+ - [ ] Are **new files** marked?
135
+ - [ ] Are **change summaries** present?
136
+
137
+ ### References Verification
138
+ - [ ] Is the PRD link **valid**?
139
+ - [ ] Is the design link **up to date**?
140
+ - [ ] Are reference implementation paths **accurate**?
141
+
142
+ ### Conflict Detection Verification
143
+ - [ ] Are all conflict items in **✅ None** status?
144
+ - [ ] Are there resolution plans for **⚠️ Caution** items?
145
+
146
+ ---
147
+
148
+ ## Phase 4: Final Check
149
+
150
+ ### Meta Information
151
+ - [ ] Is the **Story ID** correct?
152
+ - [ ] Is the **Epic connection** established?
153
+ - [ ] Is the **priority** set?
154
+ - [ ] Is the **size** estimated?
155
+
156
+ ### Event Logging
157
+ - [ ] Are **required events** defined?
158
+ - [ ] Are **parameters** specified?
159
+ - [ ] Is **GA4 status** indicated?
160
+
161
+ ### Status
162
+ - [ ] Is the status set to **`ready-for-dev`**?
163
+
164
+ ---
165
+
166
+ ## Verification Result
167
+
168
+ ### Overall Assessment
169
+
170
+ | Phase | Result |
171
+ |-------|--------|
172
+ | Phase 1: Context & Requirements | ✅ PASS / ❌ FAIL |
173
+ | Phase 2: Disaster Prevention | ✅ PASS / ❌ FAIL |
174
+ | Phase 2.5: Screen Spec | ✅ PASS / ❌ FAIL / ⏭️ N/A |
175
+ | Phase 3: AI Agent Optimization | ✅ PASS / ❌ FAIL |
176
+ | Phase 4: Final Check | ✅ PASS / ❌ FAIL |
177
+
178
+ ### Final Verdict
179
+
180
+ **✅ PASS** - Ready for handoff
181
+
182
+ or
183
+
184
+ **❌ FAIL** - Modifications required
185
+
186
+ ### Required Modifications (If FAIL)
187
+
188
+ | Priority | Item | Description |
189
+ |----------|------|-------------|
190
+ | Required | [Item] | [Modification needed] |
191
+ | Recommended | [Item] | [Modification needed] |
192
+
193
+ ---
194
+
195
+ **Reviewer**: [Name]
196
+ **Review Date**: [YYYY-MM-DD]
197
+ **Signature**: ✓
@@ -0,0 +1,80 @@
1
+ # PRD Template
2
+
3
+ > 🎯 PRD writing template used by Simon
4
+
5
+ ## [Feature/Sprint Name]
6
+
7
+ ### One Question
8
+ [The single question this sprint must answer]
9
+
10
+ ---
11
+
12
+ ### Background
13
+ #### Problem Definition
14
+ [What problem are we trying to solve?]
15
+
16
+ #### Current State
17
+ [Before - Current metrics/situation]
18
+
19
+ #### Expected Outcome
20
+ [After - Anticipated improvements]
21
+
22
+ ---
23
+
24
+ ### Hypothesis
25
+ > [IF] we do ______,
26
+ > [THEN] ______ will improve.
27
+ > [BECAUSE] ______.
28
+
29
+ **Falsifiability**: [How would we know if the hypothesis is wrong?]
30
+
31
+ ---
32
+
33
+ ### OMTM (One Metric That Matters)
34
+ | Metric | Before | Target | Measurement Method |
35
+ |--------|--------|--------|-------------------|
36
+ | [Key metric] | [Current value] | [Target value] | [GA4 event, etc.] |
37
+
38
+ ---
39
+
40
+ ### Validation Method
41
+ - **Measurement period**: [Start date] ~ [End date]
42
+ - **Sample**: [Target user group]
43
+ - **Success criteria**: [Quantitative criteria]
44
+ - **Failure criteria**: [When do we abandon?]
45
+
46
+ ---
47
+
48
+ ### Guard Rail
49
+ | Metric | Current | Acceptable Range | Monitoring |
50
+ |--------|---------|-----------------|------------|
51
+ | [Side-effect metric 1] | [Value] | ≤ [Threshold] | [Method] |
52
+ | [Side-effect metric 2] | [Value] | ≤ [Threshold] | [Method] |
53
+
54
+ ---
55
+
56
+ ### Scope
57
+ #### In Scope
58
+ - [ ] Included item 1
59
+ - [ ] Included item 2
60
+
61
+ #### Out of Scope
62
+ - Excluded item 1
63
+ - Excluded item 2
64
+
65
+ ---
66
+
67
+ ### References
68
+ - Related PRD: [Link]
69
+ - Competitive analysis: [Link]
70
+ - User research: [Link]
71
+
72
+ ---
73
+
74
+ ## Checklist
75
+ - [ ] Is the One Question clear?
76
+ - [ ] Is the hypothesis falsifiable?
77
+ - [ ] Is the OMTM quantified?
78
+ - [ ] Is the validation method realistic?
79
+ - [ ] Is the Guard Rail set?
80
+ - [ ] Is the scope clear?
@@ -0,0 +1,78 @@
1
+ # Sprint Retrospective Template
2
+
3
+ > 📋 Penny + 📊 Vicky collaborative template
4
+
5
+ ## Sprint [N] Retrospective
6
+
7
+ ### Sprint Information
8
+ - **Period**: [Start date] ~ [End date]
9
+ - **Goal**: [Sprint goal]
10
+
11
+ ---
12
+
13
+ ## Results Summary (📊 Vicky)
14
+
15
+ ### KR Achievement Status
16
+ | KR | Target | Result | Achievement Rate | Verdict |
17
+ |----|--------|--------|-----------------|---------|
18
+ | KR1 | [Target] | [Result] | [%] | ✅/❌ |
19
+ | KR2 | [Target] | [Result] | [%] | ✅/❌ |
20
+ | KR3 | [Target] | [Result] | [%] | ✅/❌ |
21
+
22
+ ### Guard Rail
23
+ | Metric | Threshold | Result | Status |
24
+ |--------|-----------|--------|--------|
25
+ | [Metric 1] | ≤ [Value] | [Value] | 🟢/🟡/🔴 |
26
+
27
+ ### Key Findings
28
+ - [Insight discovered from data]
29
+
30
+ ---
31
+
32
+ ## Retrospective (📋 Penny)
33
+
34
+ ### What Went Well (Liked)
35
+ - [Good thing 1]
36
+ - [Good thing 2]
37
+
38
+ ### What We Learned (Learned)
39
+ - [Learning 1]
40
+ - [Learning 2]
41
+
42
+ ### What Was Lacking (Lacked)
43
+ - [Shortcoming 1]
44
+ - [Shortcoming 2]
45
+
46
+ ### What We Wished For (Longed for)
47
+ - [Wish 1]
48
+ - [Wish 2]
49
+
50
+ ---
51
+
52
+ ## Action Items
53
+
54
+ ### Apply to Next Sprint
55
+ | Action | Type | Owner | Priority |
56
+ |--------|------|-------|----------|
57
+ | [Action 1] | Start | [Owner] | P0/P1/P2 |
58
+ | [Action 2] | Stop | [Owner] | P0/P1/P2 |
59
+ | [Action 3] | Continue | [Owner] | P0/P1/P2 |
60
+
61
+ ### Add to Backlog
62
+ - [ ] [Backlog item]
63
+
64
+ ---
65
+
66
+ ## Team Health
67
+
68
+ | Item | Score (1-5) | Comment |
69
+ |------|-------------|---------|
70
+ | Goal clarity | [Score] | [Comment] |
71
+ | Communication | [Score] | [Comment] |
72
+ | Execution | [Score] | [Comment] |
73
+ | Learning | [Score] | [Comment] |
74
+
75
+ ---
76
+
77
+ *Retrospective date: [Date]*
78
+ *Participants: [Participants]*