@boshu2/vibe-check 1.6.2 → 1.8.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 (156) hide show
  1. package/.agents/bundles/actionable-coaching-plan-2025-12-02.md +209 -0
  2. package/.agents/bundles/automatic-learning-cadence-plan-2025-12-02.md +1297 -0
  3. package/.agents/bundles/automatic-learning-cadence-research-2025-12-02.md +481 -0
  4. package/.agents/bundles/dashboard-data-quality-plan.md +458 -0
  5. package/.agents/bundles/rating-scoring-alignment-plan.md +427 -0
  6. package/.agents/bundles/rpi-session-capture-plan-2025-12-02.md +693 -0
  7. package/.agents/bundles/rpi-session-capture-research-2025-12-02.md +433 -0
  8. package/.agents/bundles/session-integration-plan-2025-12-02.md +144 -0
  9. package/.agents/plans/git-forensics-enhancement-2025-12-05.md +493 -0
  10. package/.claude/skills/typescript-review.md +152 -0
  11. package/CHANGELOG.md +53 -0
  12. package/CLAUDE.md +79 -3
  13. package/Makefile +160 -0
  14. package/README.md +141 -155
  15. package/SECURITY.md +5 -1
  16. package/assets/logo-dark.svg +47 -0
  17. package/assets/logo.svg +47 -0
  18. package/claude-progress.json +54 -4
  19. package/claude-progress.txt +114 -0
  20. package/dashboard/app.js +699 -66
  21. package/dashboard/chart.min.js +20 -0
  22. package/dashboard/dashboard-data.js +764 -0
  23. package/dashboard/dashboard-data.json +182 -71
  24. package/dashboard/index.html +139 -14
  25. package/dashboard/styles.css +579 -4
  26. package/dist/analyzers/patterns.d.ts +62 -0
  27. package/dist/analyzers/patterns.d.ts.map +1 -0
  28. package/dist/analyzers/patterns.js +103 -0
  29. package/dist/analyzers/patterns.js.map +1 -0
  30. package/dist/analyzers/quality.d.ts +58 -0
  31. package/dist/analyzers/quality.d.ts.map +1 -0
  32. package/dist/analyzers/quality.js +114 -0
  33. package/dist/analyzers/quality.js.map +1 -0
  34. package/dist/analyzers/sessions.d.ts +45 -0
  35. package/dist/analyzers/sessions.d.ts.map +1 -0
  36. package/dist/analyzers/sessions.js +123 -0
  37. package/dist/analyzers/sessions.js.map +1 -0
  38. package/dist/cli.js +5 -1
  39. package/dist/cli.js.map +1 -1
  40. package/dist/commands/analyze.d.ts.map +1 -1
  41. package/dist/commands/analyze.js +43 -2
  42. package/dist/commands/analyze.js.map +1 -1
  43. package/dist/commands/dashboard.js +4 -1
  44. package/dist/commands/dashboard.js.map +1 -1
  45. package/dist/commands/forensics.d.ts +29 -0
  46. package/dist/commands/forensics.d.ts.map +1 -0
  47. package/dist/commands/forensics.js +213 -0
  48. package/dist/commands/forensics.js.map +1 -0
  49. package/dist/commands/index.d.ts +5 -1
  50. package/dist/commands/index.d.ts.map +1 -1
  51. package/dist/commands/index.js +13 -3
  52. package/dist/commands/index.js.map +1 -1
  53. package/dist/commands/insights.d.ts +3 -0
  54. package/dist/commands/insights.d.ts.map +1 -0
  55. package/dist/commands/insights.js +120 -0
  56. package/dist/commands/insights.js.map +1 -0
  57. package/dist/commands/learn.d.ts +3 -0
  58. package/dist/commands/learn.d.ts.map +1 -0
  59. package/dist/commands/learn.js +161 -0
  60. package/dist/commands/learn.js.map +1 -0
  61. package/dist/commands/lesson.d.ts +8 -0
  62. package/dist/commands/lesson.d.ts.map +1 -0
  63. package/dist/commands/lesson.js +206 -0
  64. package/dist/commands/lesson.js.map +1 -0
  65. package/dist/commands/pipeline.d.ts +3 -0
  66. package/dist/commands/pipeline.d.ts.map +1 -0
  67. package/dist/commands/pipeline.js +485 -0
  68. package/dist/commands/pipeline.js.map +1 -0
  69. package/dist/commands/profile.d.ts +0 -1
  70. package/dist/commands/profile.d.ts.map +1 -1
  71. package/dist/commands/profile.js +3 -206
  72. package/dist/commands/profile.js.map +1 -1
  73. package/dist/commands/session.d.ts +51 -0
  74. package/dist/commands/session.d.ts.map +1 -0
  75. package/dist/commands/session.js +599 -0
  76. package/dist/commands/session.js.map +1 -0
  77. package/dist/commands/sessions.d.ts +20 -0
  78. package/dist/commands/sessions.d.ts.map +1 -0
  79. package/dist/commands/sessions.js +201 -0
  80. package/dist/commands/sessions.js.map +1 -0
  81. package/dist/commands/watch.d.ts.map +1 -1
  82. package/dist/commands/watch.js +48 -7
  83. package/dist/commands/watch.js.map +1 -1
  84. package/dist/gamification/index.d.ts +1 -3
  85. package/dist/gamification/index.d.ts.map +1 -1
  86. package/dist/gamification/index.js +2 -5
  87. package/dist/gamification/index.js.map +1 -1
  88. package/dist/gamification/pattern-memory.d.ts +1 -1
  89. package/dist/gamification/pattern-memory.d.ts.map +1 -1
  90. package/dist/gamification/pattern-memory.js.map +1 -1
  91. package/dist/gamification/profile.d.ts +2 -2
  92. package/dist/gamification/profile.d.ts.map +1 -1
  93. package/dist/gamification/profile.js +2 -15
  94. package/dist/gamification/profile.js.map +1 -1
  95. package/dist/gamification/types.d.ts +8 -2
  96. package/dist/gamification/types.d.ts.map +1 -1
  97. package/dist/gamification/types.js.map +1 -1
  98. package/dist/insights/index.d.ts.map +1 -1
  99. package/dist/insights/index.js +16 -4
  100. package/dist/insights/index.js.map +1 -1
  101. package/dist/insights/types.d.ts +14 -0
  102. package/dist/insights/types.d.ts.map +1 -1
  103. package/dist/learning/cadence.d.ts +15 -0
  104. package/dist/learning/cadence.d.ts.map +1 -0
  105. package/dist/learning/cadence.js +130 -0
  106. package/dist/learning/cadence.js.map +1 -0
  107. package/dist/learning/index.d.ts +19 -0
  108. package/dist/learning/index.d.ts.map +1 -0
  109. package/dist/learning/index.js +35 -0
  110. package/dist/learning/index.js.map +1 -0
  111. package/dist/learning/lessons-storage.d.ts +48 -0
  112. package/dist/learning/lessons-storage.d.ts.map +1 -0
  113. package/dist/learning/lessons-storage.js +266 -0
  114. package/dist/learning/lessons-storage.js.map +1 -0
  115. package/dist/learning/lessons-types.d.ts +83 -0
  116. package/dist/learning/lessons-types.d.ts.map +1 -0
  117. package/dist/learning/lessons-types.js +15 -0
  118. package/dist/learning/lessons-types.js.map +1 -0
  119. package/dist/learning/nudges.d.ts +20 -0
  120. package/dist/learning/nudges.d.ts.map +1 -0
  121. package/dist/learning/nudges.js +68 -0
  122. package/dist/learning/nudges.js.map +1 -0
  123. package/dist/learning/retrospective.d.ts +27 -0
  124. package/dist/learning/retrospective.d.ts.map +1 -0
  125. package/dist/learning/retrospective.js +184 -0
  126. package/dist/learning/retrospective.js.map +1 -0
  127. package/dist/learning/storage.d.ts +44 -0
  128. package/dist/learning/storage.d.ts.map +1 -0
  129. package/dist/learning/storage.js +194 -0
  130. package/dist/learning/storage.js.map +1 -0
  131. package/dist/learning/surfacing.d.ts +36 -0
  132. package/dist/learning/surfacing.d.ts.map +1 -0
  133. package/dist/learning/surfacing.js +255 -0
  134. package/dist/learning/surfacing.js.map +1 -0
  135. package/dist/learning/synthesis.d.ts +17 -0
  136. package/dist/learning/synthesis.d.ts.map +1 -0
  137. package/dist/learning/synthesis.js +293 -0
  138. package/dist/learning/synthesis.js.map +1 -0
  139. package/dist/learning/types.d.ts +60 -0
  140. package/dist/learning/types.d.ts.map +1 -0
  141. package/dist/learning/types.js +17 -0
  142. package/dist/learning/types.js.map +1 -0
  143. package/dist/storage/index.d.ts +1 -0
  144. package/dist/storage/index.d.ts.map +1 -1
  145. package/dist/storage/index.js +11 -1
  146. package/dist/storage/index.js.map +1 -1
  147. package/dist/storage/spiral-history.d.ts +62 -0
  148. package/dist/storage/spiral-history.d.ts.map +1 -0
  149. package/dist/storage/spiral-history.js +265 -0
  150. package/dist/storage/spiral-history.js.map +1 -0
  151. package/docs/ARCHITECTURE.md +2 -10
  152. package/docs/GAMIFICATION.md +19 -266
  153. package/docs/METRICS.md +528 -0
  154. package/docs/VIBE-ECOSYSTEM.md +12 -78
  155. package/feature-list.json +141 -68
  156. package/package.json +1 -1
package/feature-list.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "project": "vibe-check",
3
3
  "created": "2025-11-29",
4
4
  "mode": "standard",
5
- "version": "1.5.0",
5
+ "version": "1.7.0",
6
6
  "features": [
7
7
  {
8
8
  "id": "VIBE-001",
@@ -71,124 +71,197 @@
71
71
  "completed_date": "2025-11-29"
72
72
  },
73
73
  {
74
- "id": "VIBE-012",
75
- "description": "Remove ML cruft (level prediction, calibration, ECE)",
76
- "passes": true,
77
- "completed_date": "2025-11-29"
78
- },
79
- {
80
- "id": "VIBE-013",
81
- "description": "Pattern memory (track your spiral triggers)",
82
- "passes": true,
83
- "completed_date": "2025-11-29"
84
- },
85
- {
86
- "id": "VIBE-014",
87
- "description": "Intervention tracking (what breaks your spirals)",
74
+ "id": "VIBE-024",
75
+ "description": "Timeline command Phase 1 MVP (session detection, day grouping, terminal output)",
88
76
  "passes": true,
89
- "completed_date": "2025-11-29"
77
+ "completed_date": "2025-11-30"
90
78
  },
91
79
  {
92
- "id": "VIBE-015",
93
- "description": "Weekly Challenges system (auto-generated based on weak metrics)",
80
+ "id": "VIBE-025",
81
+ "description": "Timeline Phase 2: Flow state detection",
94
82
  "passes": true,
95
- "completed_date": "2025-11-29"
83
+ "completed_date": "2025-11-30"
96
84
  },
97
85
  {
98
- "id": "VIBE-016",
99
- "description": "Prestige System (Archmage, Sage, Zenmester tiers beyond Grandmaster)",
86
+ "id": "VIBE-026",
87
+ "description": "Timeline Phase 2: Post-delete sprint detection",
100
88
  "passes": true,
101
- "completed_date": "2025-11-29"
89
+ "completed_date": "2025-11-30"
102
90
  },
103
91
  {
104
- "id": "VIBE-017",
105
- "description": "Enhanced streak display (visual progression with emoji tiers)",
92
+ "id": "VIBE-027",
93
+ "description": "Timeline Phase 2: Thrashing detection",
106
94
  "passes": true,
107
- "completed_date": "2025-11-29"
95
+ "completed_date": "2025-11-30"
108
96
  },
109
97
  {
110
- "id": "VIBE-018",
111
- "description": "Local leaderboards (personal high scores across repos)",
98
+ "id": "VIBE-028",
99
+ "description": "Timeline recommendation engine with actionable insights",
112
100
  "passes": true,
113
- "completed_date": "2025-11-29"
101
+ "completed_date": "2025-11-30"
114
102
  },
115
103
  {
116
- "id": "VIBE-019",
117
- "description": "Hall of Fame (personal bests and records)",
104
+ "id": "VIBE-029",
105
+ "description": "Timeline Phase 3: Detour detection and late-night spirals",
118
106
  "passes": true,
119
- "completed_date": "2025-11-29"
107
+ "completed_date": "2025-11-30"
120
108
  },
121
109
  {
122
- "id": "VIBE-020",
123
- "description": "Weekly stats with sparklines (trend visualization)",
110
+ "id": "VIBE-030",
111
+ "description": "Timeline Phase 4: Export formats (Markdown, HTML for sharing)",
124
112
  "passes": true,
125
- "completed_date": "2025-11-29"
113
+ "completed_date": "2025-11-30"
126
114
  },
127
115
  {
128
- "id": "VIBE-021",
129
- "description": "Rank badges (Bronze, Silver, Gold, Platinum, Diamond tiers)",
116
+ "id": "VIBE-031",
117
+ "description": "Timeline persistence: Cache to .vibe-check/timeline.json with compounding insights",
130
118
  "passes": true,
131
- "completed_date": "2025-11-29"
119
+ "completed_date": "2025-11-30"
132
120
  },
133
121
  {
134
- "id": "VIBE-022",
135
- "description": "Share-to-clipboard (shareable profile text and JSON)",
122
+ "id": "VIBE-033",
123
+ "description": "Session integration for AgentOps (session start/end/status commands)",
136
124
  "passes": true,
137
- "completed_date": "2025-11-29"
125
+ "completed_date": "2025-12-02"
138
126
  },
139
127
  {
140
- "id": "VIBE-023",
141
- "description": "Near-miss psychology messaging (SO CLOSE motivational messages)",
128
+ "id": "VIBE-034",
129
+ "description": "Feature audit and cleanup (remove bloated learning/gamification systems)",
142
130
  "passes": true,
143
- "completed_date": "2025-11-29"
131
+ "completed_date": "2025-12-02"
144
132
  },
145
133
  {
146
- "id": "VIBE-024",
147
- "description": "Timeline command Phase 1 MVP (session detection, day grouping, terminal output)",
134
+ "id": "VIBE-040",
135
+ "description": "Spiral history storage (NDJSON append-only log)",
148
136
  "passes": true,
149
- "completed_date": "2025-11-30"
137
+ "completed_date": "2025-12-02",
138
+ "plan_bundle": "actionable-coaching-plan-2025-12-02.md",
139
+ "files": ["src/storage/spiral-history.ts"]
150
140
  },
151
141
  {
152
- "id": "VIBE-025",
153
- "description": "Timeline Phase 2: Flow state detection",
142
+ "id": "VIBE-041",
143
+ "description": "Auto-record spirals to history during analyze/session",
154
144
  "passes": true,
155
- "completed_date": "2025-11-30"
145
+ "completed_date": "2025-12-02",
146
+ "plan_bundle": "actionable-coaching-plan-2025-12-02.md",
147
+ "files": ["src/commands/analyze.ts", "src/commands/session.ts"]
156
148
  },
157
149
  {
158
- "id": "VIBE-026",
159
- "description": "Timeline Phase 2: Post-delete sprint detection",
150
+ "id": "VIBE-042",
151
+ "description": "Personalized watch alerts (show what worked before)",
160
152
  "passes": true,
161
- "completed_date": "2025-11-30"
153
+ "completed_date": "2025-12-02",
154
+ "plan_bundle": "actionable-coaching-plan-2025-12-02.md",
155
+ "files": ["src/commands/watch.ts"]
162
156
  },
163
157
  {
164
- "id": "VIBE-027",
165
- "description": "Timeline Phase 2: Thrashing detection",
158
+ "id": "VIBE-043",
159
+ "description": "Session end coaching (actionable feedback, not just metrics)",
166
160
  "passes": true,
167
- "completed_date": "2025-11-30"
161
+ "completed_date": "2025-12-02",
162
+ "plan_bundle": "actionable-coaching-plan-2025-12-02.md",
163
+ "files": ["src/commands/session.ts"]
168
164
  },
169
165
  {
170
- "id": "VIBE-028",
171
- "description": "Timeline recommendation engine with actionable insights",
166
+ "id": "VIBE-044",
167
+ "description": "Insights command (vibe-check insights - pattern summary)",
172
168
  "passes": true,
173
- "completed_date": "2025-11-30"
169
+ "completed_date": "2025-12-02",
170
+ "plan_bundle": "actionable-coaching-plan-2025-12-02.md",
171
+ "files": ["src/commands/insights.ts", "src/cli.ts"]
174
172
  },
175
173
  {
176
- "id": "VIBE-029",
177
- "description": "Timeline Phase 3: Detour detection and late-night spirals",
174
+ "id": "VIBE-045",
175
+ "description": "Git forensics mode - pattern detection from history (vibe-check forensics)",
178
176
  "passes": true,
179
- "completed_date": "2025-11-30"
177
+ "completed_date": "2025-12-05",
178
+ "priority": 1,
179
+ "effort": "3-4 days",
180
+ "source": "release-engineering retrospective (475 commits analyzed)",
181
+ "plan_bundle": "git-forensics-enhancement-2025-12-05.md",
182
+ "files": [
183
+ "src/commands/forensics.ts",
184
+ "src/analyzers/patterns.ts",
185
+ "src/analyzers/quality.ts",
186
+ "src/cli.ts"
187
+ ],
188
+ "features": [
189
+ "Debug spiral detection (take N pattern)",
190
+ "Vague commit detection (<20 chars)",
191
+ "Context amnesia detection (scope revisits)",
192
+ "Quality metrics (conventional/descriptive/vague %)",
193
+ "Sweep recommendation engine",
194
+ "JSON/Markdown output"
195
+ ],
196
+ "evidence": {
197
+ "repo": "release-engineering",
198
+ "commits_analyzed": 475,
199
+ "spirals_detected": 14,
200
+ "vague_commits": 282,
201
+ "accuracy": "validated against manual analysis"
202
+ }
180
203
  },
181
204
  {
182
- "id": "VIBE-030",
183
- "description": "Timeline Phase 4: Export formats (Markdown, HTML for sharing)",
205
+ "id": "VIBE-046",
206
+ "description": "Session detection algorithm - identify work sessions (vibe-check sessions)",
184
207
  "passes": true,
185
- "completed_date": "2025-11-30"
208
+ "completed_date": "2025-12-05",
209
+ "priority": 2,
210
+ "effort": "2 days",
211
+ "source": "release-engineering retrospective (46 sessions detected)",
212
+ "plan_bundle": "git-forensics-enhancement-2025-12-05.md",
213
+ "files": [
214
+ "src/commands/sessions.ts",
215
+ "src/analyzers/sessions.ts",
216
+ "src/cli.ts"
217
+ ],
218
+ "dependencies": ["VIBE-045"],
219
+ "features": [
220
+ "90-minute gap threshold (configurable)",
221
+ "Session duration tracking",
222
+ "Commits per session metrics",
223
+ "Productivity pattern identification",
224
+ "JSON/Markdown output"
225
+ ],
226
+ "evidence": {
227
+ "repo": "release-engineering",
228
+ "sessions_detected": 46,
229
+ "avg_duration_min": 79.4,
230
+ "median_duration_min": 33.1,
231
+ "longest_session_min": 413.2
232
+ }
186
233
  },
187
234
  {
188
- "id": "VIBE-031",
189
- "description": "Timeline persistence: Cache to .vibe-check/timeline.json with compounding insights",
190
- "passes": true,
191
- "completed_date": "2025-11-30"
235
+ "id": "VIBE-047",
236
+ "description": "Era evolution tracking - transformation phases over time (vibe-check evolution)",
237
+ "passes": false,
238
+ "status": "deferred",
239
+ "deferred_reason": "Scope creep risk - shifts from personal dev tool to team retrospective tool. Build after VIBE-045/046 proven in production.",
240
+ "deferred_date": "2025-12-05",
241
+ "priority": null,
242
+ "effort": "2-3 days",
243
+ "source": "release-engineering retrospective (5 eras tracked)",
244
+ "plan_bundle": "git-forensics-enhancement-2025-12-05.md",
245
+ "files": [
246
+ "src/commands/evolution.ts",
247
+ "src/analyzers/eras.ts",
248
+ "src/config/eras.schema.json",
249
+ "src/cli.ts"
250
+ ],
251
+ "dependencies": ["VIBE-045", "VIBE-046"],
252
+ "features": [
253
+ "User-defined era configuration",
254
+ "Per-era metrics calculation",
255
+ "Before/after comparison",
256
+ "Transformation tracking",
257
+ "JSON/Markdown/HTML output"
258
+ ],
259
+ "evidence": {
260
+ "repo": "release-engineering",
261
+ "eras": ["genesis", "monolith", "reckoning", "transformation", "proof"],
262
+ "transformation": "0% conventional → 100%",
263
+ "vague_elimination": "97.4% → 0%"
264
+ }
192
265
  }
193
266
  ]
194
267
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boshu2/vibe-check",
3
- "version": "1.6.2",
3
+ "version": "1.8.0",
4
4
  "description": "Track git commit patterns during AI-assisted coding (experimental)",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {