fivocell 5.0.0 → 5.1.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.
- package/dist/__tests__/code-health.test.d.ts +2 -0
- package/dist/__tests__/code-health.test.d.ts.map +1 -0
- package/dist/__tests__/code-health.test.js +90 -0
- package/dist/__tests__/code-health.test.js.map +1 -0
- package/dist/__tests__/developer-velocity.test.d.ts +2 -0
- package/dist/__tests__/developer-velocity.test.d.ts.map +1 -0
- package/dist/__tests__/developer-velocity.test.js +66 -0
- package/dist/__tests__/developer-velocity.test.js.map +1 -0
- package/dist/__tests__/error-trends.test.d.ts +2 -0
- package/dist/__tests__/error-trends.test.d.ts.map +1 -0
- package/dist/__tests__/error-trends.test.js +61 -0
- package/dist/__tests__/error-trends.test.js.map +1 -0
- package/dist/__tests__/memory-growth.test.d.ts +2 -0
- package/dist/__tests__/memory-growth.test.d.ts.map +1 -0
- package/dist/__tests__/memory-growth.test.js +61 -0
- package/dist/__tests__/memory-growth.test.js.map +1 -0
- package/dist/walls/06-memory/stores/code-health.d.ts +40 -0
- package/dist/walls/06-memory/stores/code-health.d.ts.map +1 -0
- package/dist/walls/06-memory/stores/code-health.js +344 -0
- package/dist/walls/06-memory/stores/code-health.js.map +1 -0
- package/dist/walls/06-memory/stores/developer-velocity.d.ts +53 -0
- package/dist/walls/06-memory/stores/developer-velocity.d.ts.map +1 -0
- package/dist/walls/06-memory/stores/developer-velocity.js +225 -0
- package/dist/walls/06-memory/stores/developer-velocity.js.map +1 -0
- package/dist/walls/06-memory/stores/error-trends.d.ts +53 -0
- package/dist/walls/06-memory/stores/error-trends.d.ts.map +1 -0
- package/dist/walls/06-memory/stores/error-trends.js +232 -0
- package/dist/walls/06-memory/stores/error-trends.js.map +1 -0
- package/dist/walls/06-memory/stores/memory-growth.d.ts +34 -0
- package/dist/walls/06-memory/stores/memory-growth.d.ts.map +1 -0
- package/dist/walls/06-memory/stores/memory-growth.js +150 -0
- package/dist/walls/06-memory/stores/memory-growth.js.map +1 -0
- package/dist/walls/07-runtime/cli/cli.js +67 -0
- package/dist/walls/07-runtime/cli/cli.js.map +1 -1
- package/dist/walls/07-runtime/daemon/server.d.ts.map +1 -1
- package/dist/walls/07-runtime/daemon/server.js +29 -0
- package/dist/walls/07-runtime/daemon/server.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.computeCodeHealth = computeCodeHealth;
|
|
37
|
+
exports.formatCodeHealth = formatCodeHealth;
|
|
38
|
+
const fs = __importStar(require("fs"));
|
|
39
|
+
const path = __importStar(require("path"));
|
|
40
|
+
function computeCodeHealth(projectDir, project) {
|
|
41
|
+
const suggestions = [];
|
|
42
|
+
// Scan files
|
|
43
|
+
const files = scanCodeFiles(projectDir);
|
|
44
|
+
const metrics = computeMetrics(files, projectDir);
|
|
45
|
+
// Complexity analysis (simplified: line count as proxy)
|
|
46
|
+
const complexity = computeComplexityScore(files);
|
|
47
|
+
// Duplication detection (simplified: similar file sizes)
|
|
48
|
+
const duplication = computeDuplicationScore(files);
|
|
49
|
+
// Test coverage (test file ratio)
|
|
50
|
+
const testCoverage = computeTestCoverage(files);
|
|
51
|
+
// Documentation (README, docs)
|
|
52
|
+
const documentation = computeDocumentationScore(projectDir);
|
|
53
|
+
// Error handling (try/catch usage)
|
|
54
|
+
const errorHandling = computeErrorHandlingScore(files);
|
|
55
|
+
// Modularity (avg file size, number of modules)
|
|
56
|
+
const modularity = computeModularityScore(files);
|
|
57
|
+
// Generate suggestions
|
|
58
|
+
if (metrics.testRatio < 0.2) {
|
|
59
|
+
suggestions.push('Add more test files — current test ratio is low');
|
|
60
|
+
}
|
|
61
|
+
if (metrics.highComplexityFiles > 3) {
|
|
62
|
+
suggestions.push('Refactor high-complexity files');
|
|
63
|
+
}
|
|
64
|
+
if (metrics.avgFileSize > 500) {
|
|
65
|
+
suggestions.push('Consider splitting large files');
|
|
66
|
+
}
|
|
67
|
+
if (documentation < 50) {
|
|
68
|
+
suggestions.push('Add README and documentation');
|
|
69
|
+
}
|
|
70
|
+
if (duplication < 60) {
|
|
71
|
+
suggestions.push('Reduce code duplication');
|
|
72
|
+
}
|
|
73
|
+
if (errorHandling < 50) {
|
|
74
|
+
suggestions.push('Improve error handling with try/catch');
|
|
75
|
+
}
|
|
76
|
+
// Overall score
|
|
77
|
+
const overallScore = Math.round(complexity * 0.2 +
|
|
78
|
+
duplication * 0.15 +
|
|
79
|
+
testCoverage * 0.25 +
|
|
80
|
+
documentation * 0.1 +
|
|
81
|
+
errorHandling * 0.15 +
|
|
82
|
+
modularity * 0.15);
|
|
83
|
+
const grade = scoreToGrade(overallScore);
|
|
84
|
+
// Top files by complexity
|
|
85
|
+
const topFiles = files
|
|
86
|
+
.sort((a, b) => b.lines - a.lines)
|
|
87
|
+
.slice(0, 20)
|
|
88
|
+
.map(f => ({
|
|
89
|
+
path: path.relative(projectDir, f.path),
|
|
90
|
+
lines: f.lines,
|
|
91
|
+
complexity: f.complexity,
|
|
92
|
+
health: f.lines > 500 ? 'critical' : f.lines > 200 ? 'warning' : 'good',
|
|
93
|
+
issues: f.lines > 500 ? ['File too large'] : [],
|
|
94
|
+
}));
|
|
95
|
+
return {
|
|
96
|
+
project,
|
|
97
|
+
overallScore,
|
|
98
|
+
grade,
|
|
99
|
+
dimensions: { complexity, duplication, testCoverage, documentation, errorHandling, modularity },
|
|
100
|
+
files: topFiles,
|
|
101
|
+
suggestions,
|
|
102
|
+
metrics,
|
|
103
|
+
computedAt: new Date().toISOString(),
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
function scanCodeFiles(dir) {
|
|
107
|
+
const files = [];
|
|
108
|
+
const extensions = new Set(['.ts', '.tsx', '.js', '.jsx', '.py', '.go', '.rs', '.java']);
|
|
109
|
+
const ignoreDirs = new Set(['node_modules', '.git', 'dist', 'build', '.cell', '__tests__', '__mocks__']);
|
|
110
|
+
function walk(currentDir) {
|
|
111
|
+
try {
|
|
112
|
+
const entries = fs.readdirSync(currentDir, { withFileTypes: true });
|
|
113
|
+
for (const entry of entries) {
|
|
114
|
+
if (ignoreDirs.has(entry.name))
|
|
115
|
+
continue;
|
|
116
|
+
const fullPath = path.join(currentDir, entry.name);
|
|
117
|
+
if (entry.isDirectory()) {
|
|
118
|
+
walk(fullPath);
|
|
119
|
+
}
|
|
120
|
+
else if (extensions.has(path.extname(entry.name).toLowerCase())) {
|
|
121
|
+
try {
|
|
122
|
+
const content = fs.readFileSync(fullPath, 'utf-8');
|
|
123
|
+
const lines = content.split('\n').length;
|
|
124
|
+
const complexity = estimateComplexity(content);
|
|
125
|
+
const isTest = entry.name.includes('.test.') || entry.name.includes('.spec.') || fullPath.includes('__tests__');
|
|
126
|
+
const isDoc = entry.name.endsWith('.md') || entry.name.endsWith('.txt');
|
|
127
|
+
const isConfig = entry.name.endsWith('.json') || entry.name.endsWith('.yaml') || entry.name.endsWith('.yml');
|
|
128
|
+
files.push({ path: fullPath, lines, complexity, isTest, isDoc, isConfig });
|
|
129
|
+
}
|
|
130
|
+
catch { }
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
catch { }
|
|
135
|
+
}
|
|
136
|
+
walk(dir);
|
|
137
|
+
return files;
|
|
138
|
+
}
|
|
139
|
+
function estimateComplexity(content) {
|
|
140
|
+
// Simple complexity heuristic: count control flow statements
|
|
141
|
+
let complexity = 1;
|
|
142
|
+
const lines = content.split('\n');
|
|
143
|
+
for (const line of lines) {
|
|
144
|
+
const trimmed = line.trim();
|
|
145
|
+
if (trimmed.startsWith('//') || trimmed.startsWith('*'))
|
|
146
|
+
continue;
|
|
147
|
+
if (/\b(if|else if|else)\b/.test(trimmed))
|
|
148
|
+
complexity++;
|
|
149
|
+
if (/\b(for|while|do)\b/.test(trimmed))
|
|
150
|
+
complexity++;
|
|
151
|
+
if (/\b(switch|case)\b/.test(trimmed))
|
|
152
|
+
complexity++;
|
|
153
|
+
if (/\b(try|catch|finally)\b/.test(trimmed))
|
|
154
|
+
complexity++;
|
|
155
|
+
if (/\b(function|class|=>)\b/.test(trimmed))
|
|
156
|
+
complexity++;
|
|
157
|
+
}
|
|
158
|
+
return complexity;
|
|
159
|
+
}
|
|
160
|
+
function computeMetrics(files, projectDir) {
|
|
161
|
+
const codeFiles = files.filter(f => !f.isDoc && !f.isConfig);
|
|
162
|
+
const testFiles = files.filter(f => f.isTest);
|
|
163
|
+
const docFiles = files.filter(f => f.isDoc);
|
|
164
|
+
const configFiles = files.filter(f => f.isConfig);
|
|
165
|
+
const totalLines = codeFiles.reduce((s, f) => s + f.lines, 0);
|
|
166
|
+
const avgFileSize = codeFiles.length > 0 ? Math.round(totalLines / codeFiles.length) : 0;
|
|
167
|
+
const largest = codeFiles.reduce((max, f) => f.lines > max.lines ? f : max, { path: '', lines: 0 });
|
|
168
|
+
const testRatio = codeFiles.length > 0 ? Math.round(testFiles.length / codeFiles.length * 100) : 0;
|
|
169
|
+
const highComplexityFiles = codeFiles.filter(f => f.complexity > 50).length;
|
|
170
|
+
const avgComplexity = codeFiles.length > 0
|
|
171
|
+
? Math.round(codeFiles.reduce((s, f) => s + f.complexity, 0) / codeFiles.length)
|
|
172
|
+
: 0;
|
|
173
|
+
return {
|
|
174
|
+
totalFiles: codeFiles.length,
|
|
175
|
+
totalLines,
|
|
176
|
+
avgFileSize,
|
|
177
|
+
largestFile: path.relative(projectDir, largest.path),
|
|
178
|
+
largestFileSize: largest.lines,
|
|
179
|
+
testFiles: testFiles.length,
|
|
180
|
+
testRatio,
|
|
181
|
+
docFiles: docFiles.length,
|
|
182
|
+
configFiles: configFiles.length,
|
|
183
|
+
avgComplexity,
|
|
184
|
+
highComplexityFiles,
|
|
185
|
+
};
|
|
186
|
+
}
|
|
187
|
+
function computeComplexityScore(files) {
|
|
188
|
+
const codeFiles = files.filter(f => !f.isDoc && !f.isConfig);
|
|
189
|
+
if (codeFiles.length === 0)
|
|
190
|
+
return 50;
|
|
191
|
+
const avgComplexity = codeFiles.reduce((s, f) => s + f.complexity, 0) / codeFiles.length;
|
|
192
|
+
// Lower complexity = higher score
|
|
193
|
+
if (avgComplexity < 10)
|
|
194
|
+
return 95;
|
|
195
|
+
if (avgComplexity < 20)
|
|
196
|
+
return 85;
|
|
197
|
+
if (avgComplexity < 30)
|
|
198
|
+
return 75;
|
|
199
|
+
if (avgComplexity < 50)
|
|
200
|
+
return 60;
|
|
201
|
+
if (avgComplexity < 80)
|
|
202
|
+
return 45;
|
|
203
|
+
return 30;
|
|
204
|
+
}
|
|
205
|
+
function computeDuplicationScore(files) {
|
|
206
|
+
// Simple: check if many files have same line count (proxy for copy-paste)
|
|
207
|
+
const codeFiles = files.filter(f => !f.isDoc && !f.isConfig && f.lines > 10);
|
|
208
|
+
if (codeFiles.length === 0)
|
|
209
|
+
return 80;
|
|
210
|
+
const lineCounts = codeFiles.map(f => f.lines);
|
|
211
|
+
const unique = new Set(lineCounts);
|
|
212
|
+
const ratio = unique.size / lineCounts.length;
|
|
213
|
+
return Math.round(ratio * 100);
|
|
214
|
+
}
|
|
215
|
+
function computeTestCoverage(files) {
|
|
216
|
+
const codeFiles = files.filter(f => !f.isDoc && !f.isConfig);
|
|
217
|
+
const testFiles = files.filter(f => f.isTest);
|
|
218
|
+
if (codeFiles.length === 0)
|
|
219
|
+
return 50;
|
|
220
|
+
const ratio = testFiles.length / codeFiles.length;
|
|
221
|
+
if (ratio > 0.5)
|
|
222
|
+
return 95;
|
|
223
|
+
if (ratio > 0.3)
|
|
224
|
+
return 85;
|
|
225
|
+
if (ratio > 0.2)
|
|
226
|
+
return 70;
|
|
227
|
+
if (ratio > 0.1)
|
|
228
|
+
return 55;
|
|
229
|
+
if (ratio > 0.05)
|
|
230
|
+
return 40;
|
|
231
|
+
return 25;
|
|
232
|
+
}
|
|
233
|
+
function computeDocumentationScore(projectDir) {
|
|
234
|
+
let score = 0;
|
|
235
|
+
const readme = path.join(projectDir, 'README.md');
|
|
236
|
+
if (fs.existsSync(readme))
|
|
237
|
+
score += 40;
|
|
238
|
+
const docsDir = path.join(projectDir, 'docs');
|
|
239
|
+
if (fs.existsSync(docsDir))
|
|
240
|
+
score += 30;
|
|
241
|
+
const changelog = path.join(projectDir, 'CHANGELOG.md');
|
|
242
|
+
if (fs.existsSync(changelog))
|
|
243
|
+
score += 15;
|
|
244
|
+
const license = path.join(projectDir, 'LICENSE');
|
|
245
|
+
if (fs.existsSync(license))
|
|
246
|
+
score += 15;
|
|
247
|
+
return Math.min(100, score);
|
|
248
|
+
}
|
|
249
|
+
function computeErrorHandlingScore(files) {
|
|
250
|
+
let totalFiles = 0;
|
|
251
|
+
let filesWithTry = 0;
|
|
252
|
+
for (const f of files) {
|
|
253
|
+
if (f.isTest || f.isDoc || f.isConfig)
|
|
254
|
+
continue;
|
|
255
|
+
totalFiles++;
|
|
256
|
+
try {
|
|
257
|
+
const content = fs.readFileSync(f.path, 'utf-8');
|
|
258
|
+
if (/\b(try|catch)\b/.test(content))
|
|
259
|
+
filesWithTry++;
|
|
260
|
+
}
|
|
261
|
+
catch { }
|
|
262
|
+
}
|
|
263
|
+
if (totalFiles === 0)
|
|
264
|
+
return 50;
|
|
265
|
+
const ratio = filesWithTry / totalFiles;
|
|
266
|
+
if (ratio > 0.5)
|
|
267
|
+
return 90;
|
|
268
|
+
if (ratio > 0.3)
|
|
269
|
+
return 75;
|
|
270
|
+
if (ratio > 0.15)
|
|
271
|
+
return 60;
|
|
272
|
+
if (ratio > 0.05)
|
|
273
|
+
return 45;
|
|
274
|
+
return 30;
|
|
275
|
+
}
|
|
276
|
+
function computeModularityScore(files) {
|
|
277
|
+
const codeFiles = files.filter(f => !f.isDoc && !f.isConfig);
|
|
278
|
+
if (codeFiles.length === 0)
|
|
279
|
+
return 50;
|
|
280
|
+
const avgSize = codeFiles.reduce((s, f) => s + f.lines, 0) / codeFiles.length;
|
|
281
|
+
// Smaller avg size = better modularity
|
|
282
|
+
if (avgSize < 100)
|
|
283
|
+
return 95;
|
|
284
|
+
if (avgSize < 200)
|
|
285
|
+
return 85;
|
|
286
|
+
if (avgSize < 300)
|
|
287
|
+
return 75;
|
|
288
|
+
if (avgSize < 500)
|
|
289
|
+
return 60;
|
|
290
|
+
if (avgSize < 800)
|
|
291
|
+
return 45;
|
|
292
|
+
return 30;
|
|
293
|
+
}
|
|
294
|
+
function scoreToGrade(score) {
|
|
295
|
+
if (score >= 95)
|
|
296
|
+
return 'A+';
|
|
297
|
+
if (score >= 90)
|
|
298
|
+
return 'A';
|
|
299
|
+
if (score >= 85)
|
|
300
|
+
return 'B+';
|
|
301
|
+
if (score >= 75)
|
|
302
|
+
return 'B';
|
|
303
|
+
if (score >= 70)
|
|
304
|
+
return 'C+';
|
|
305
|
+
if (score >= 60)
|
|
306
|
+
return 'C';
|
|
307
|
+
if (score >= 40)
|
|
308
|
+
return 'D';
|
|
309
|
+
return 'F';
|
|
310
|
+
}
|
|
311
|
+
function formatCodeHealth(health) {
|
|
312
|
+
const lines = [];
|
|
313
|
+
lines.push(`## Code Health — ${health.project}`);
|
|
314
|
+
lines.push(`**Score: ${health.overallScore}/100 (${health.grade})**\n`);
|
|
315
|
+
lines.push(`### Dimensions`);
|
|
316
|
+
lines.push(`| Dimension | Score |`);
|
|
317
|
+
lines.push(`|-----------|-------|`);
|
|
318
|
+
lines.push(`| Complexity | ${health.dimensions.complexity} |`);
|
|
319
|
+
lines.push(`| Duplication | ${health.dimensions.duplication} |`);
|
|
320
|
+
lines.push(`| Test Coverage | ${health.dimensions.testCoverage} |`);
|
|
321
|
+
lines.push(`| Documentation | ${health.dimensions.documentation} |`);
|
|
322
|
+
lines.push(`| Error Handling | ${health.dimensions.errorHandling} |`);
|
|
323
|
+
lines.push(`| Modularity | ${health.dimensions.modularity} |`);
|
|
324
|
+
lines.push('');
|
|
325
|
+
lines.push(`### Metrics`);
|
|
326
|
+
lines.push(`| Metric | Value |`);
|
|
327
|
+
lines.push(`|--------|-------|`);
|
|
328
|
+
lines.push(`| Total files | ${health.metrics.totalFiles} |`);
|
|
329
|
+
lines.push(`| Total lines | ${health.metrics.totalLines} |`);
|
|
330
|
+
lines.push(`| Avg file size | ${health.metrics.avgFileSize} lines |`);
|
|
331
|
+
lines.push(`| Largest file | ${health.metrics.largestFile} (${health.metrics.largestFileSize} lines) |`);
|
|
332
|
+
lines.push(`| Test files | ${health.metrics.testFiles} (${health.metrics.testRatio}% ratio) |`);
|
|
333
|
+
lines.push(`| Doc files | ${health.metrics.docFiles} |`);
|
|
334
|
+
lines.push(`| Avg complexity | ${health.metrics.avgComplexity} |`);
|
|
335
|
+
lines.push(`| High complexity | ${health.metrics.highComplexityFiles} files |`);
|
|
336
|
+
if (health.suggestions.length > 0) {
|
|
337
|
+
lines.push('');
|
|
338
|
+
lines.push(`### Suggestions`);
|
|
339
|
+
for (const s of health.suggestions)
|
|
340
|
+
lines.push(`- ${s}`);
|
|
341
|
+
}
|
|
342
|
+
return lines.join('\n');
|
|
343
|
+
}
|
|
344
|
+
//# sourceMappingURL=code-health.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"code-health.js","sourceRoot":"","sources":["../../../../src/walls/06-memory/stores/code-health.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export interface DeveloperVelocity {
|
|
2
|
+
project: string;
|
|
3
|
+
period: string;
|
|
4
|
+
metrics: VelocityMetrics;
|
|
5
|
+
breakdown: VelocityBreakdown;
|
|
6
|
+
trends: VelocityTrend[];
|
|
7
|
+
score: VelocityScore;
|
|
8
|
+
chart: string;
|
|
9
|
+
}
|
|
10
|
+
export interface VelocityMetrics {
|
|
11
|
+
totalCommits: number;
|
|
12
|
+
avgDailyCommits: number;
|
|
13
|
+
peakCommitDay: string;
|
|
14
|
+
peakCommitCount: number;
|
|
15
|
+
totalEdits: number;
|
|
16
|
+
avgDailyEdits: number;
|
|
17
|
+
totalDecisions: number;
|
|
18
|
+
avgDecisionFrequency: string;
|
|
19
|
+
totalFixes: number;
|
|
20
|
+
avgFixSpeed: string;
|
|
21
|
+
totalVerifications: number;
|
|
22
|
+
verificationRatio: number;
|
|
23
|
+
}
|
|
24
|
+
export interface VelocityBreakdown {
|
|
25
|
+
byType: Record<string, number>;
|
|
26
|
+
byDay: Record<string, number>;
|
|
27
|
+
byHour: Record<string, number>;
|
|
28
|
+
topTopics: Array<{
|
|
29
|
+
topic: string;
|
|
30
|
+
count: number;
|
|
31
|
+
}>;
|
|
32
|
+
}
|
|
33
|
+
export interface VelocityTrend {
|
|
34
|
+
date: string;
|
|
35
|
+
commits: number;
|
|
36
|
+
edits: number;
|
|
37
|
+
decisions: number;
|
|
38
|
+
fixes: number;
|
|
39
|
+
velocity: number;
|
|
40
|
+
}
|
|
41
|
+
export interface VelocityScore {
|
|
42
|
+
overall: number;
|
|
43
|
+
grade: 'S' | 'A' | 'B' | 'C' | 'D' | 'F';
|
|
44
|
+
dimensions: {
|
|
45
|
+
productivity: number;
|
|
46
|
+
consistency: number;
|
|
47
|
+
quality: number;
|
|
48
|
+
learning: number;
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
export declare function computeDeveloperVelocity(project: string, days?: number): DeveloperVelocity;
|
|
52
|
+
export declare function formatDeveloperVelocity(vel: DeveloperVelocity): string;
|
|
53
|
+
//# sourceMappingURL=developer-velocity.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"developer-velocity.d.ts","sourceRoot":"","sources":["../../../../src/walls/06-memory/stores/developer-velocity.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,iBAAiB;IAChC,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,eAAe,CAAC;IACzB,SAAS,EAAE,iBAAiB,CAAC;IAC7B,MAAM,EAAE,aAAa,EAAE,CAAC;IACxB,KAAK,EAAE,aAAa,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,eAAe;IAC9B,YAAY,EAAE,MAAM,CAAC;IACrB,eAAe,EAAE,MAAM,CAAC;IACxB,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,iBAAiB;IAChC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC/B,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC9B,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC/B,SAAS,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CACpD;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,aAAa;IAC5B,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;IACzC,UAAU,EAAE;QACV,YAAY,EAAE,MAAM,CAAC;QACrB,WAAW,EAAE,MAAM,CAAC;QACpB,OAAO,EAAE,MAAM,CAAC;QAChB,QAAQ,EAAE,MAAM,CAAC;KAClB,CAAC;CACH;AAED,wBAAgB,wBAAwB,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,GAAE,MAAW,GAAG,iBAAiB,CAuH9F;AAiFD,wBAAgB,uBAAuB,CAAC,GAAG,EAAE,iBAAiB,GAAG,MAAM,CAmCtE"}
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.computeDeveloperVelocity = computeDeveloperVelocity;
|
|
4
|
+
exports.formatDeveloperVelocity = formatDeveloperVelocity;
|
|
5
|
+
const database_1 = require("../database/database");
|
|
6
|
+
function computeDeveloperVelocity(project, days = 30) {
|
|
7
|
+
const db = (0, database_1.getDb)();
|
|
8
|
+
const since = new Date(Date.now() - days * 86400000).toISOString();
|
|
9
|
+
// All events
|
|
10
|
+
const events = db.prepare(`
|
|
11
|
+
SELECT type, summary, importance, topic, created_at, files_json FROM memory_events
|
|
12
|
+
WHERE project = ? AND created_at >= ?
|
|
13
|
+
ORDER BY created_at
|
|
14
|
+
`).all(project, since);
|
|
15
|
+
// Metrics
|
|
16
|
+
const byType = {};
|
|
17
|
+
const byDay = {};
|
|
18
|
+
const byHour = {};
|
|
19
|
+
const topicMap = new Map();
|
|
20
|
+
for (const e of events) {
|
|
21
|
+
byType[e.type] = (byType[e.type] || 0) + 1;
|
|
22
|
+
const day = e.created_at.slice(0, 10);
|
|
23
|
+
byDay[day] = (byDay[day] || 0) + 1;
|
|
24
|
+
const hour = e.created_at.slice(11, 13);
|
|
25
|
+
byHour[hour] = (byHour[hour] || 0) + 1;
|
|
26
|
+
if (e.topic)
|
|
27
|
+
topicMap.set(e.topic, (topicMap.get(e.topic) || 0) + 1);
|
|
28
|
+
}
|
|
29
|
+
const topTopics = [...topicMap.entries()]
|
|
30
|
+
.sort((a, b) => b[1] - a[1])
|
|
31
|
+
.slice(0, 10)
|
|
32
|
+
.map(([topic, count]) => ({ topic, count }));
|
|
33
|
+
const commitCount = byType.branch || 0;
|
|
34
|
+
const editCount = byType.edit || 0;
|
|
35
|
+
const decisionCount = byType.decision || 0;
|
|
36
|
+
const fixCount = byType.fix || 0;
|
|
37
|
+
const verificationCount = byType.verification || 0;
|
|
38
|
+
const avgDailyCommits = Math.round(commitCount / days * 10) / 10;
|
|
39
|
+
const avgDailyEdits = Math.round(editCount / days * 10) / 10;
|
|
40
|
+
const peakDay = Object.entries(byDay).reduce((max, [d, c]) => c > max.c ? { d, c } : max, { d: 'none', c: 0 });
|
|
41
|
+
// Decision frequency
|
|
42
|
+
const decisionFreq = decisionCount > 0
|
|
43
|
+
? `1 decision per ${Math.round(days / decisionCount)} days`
|
|
44
|
+
: 'no decisions';
|
|
45
|
+
// Fix speed: time between error and fix
|
|
46
|
+
const errors = events.filter(e => e.type === 'error');
|
|
47
|
+
const fixes = events.filter(e => e.type === 'fix');
|
|
48
|
+
let avgFixMs = 0;
|
|
49
|
+
if (errors.length > 0 && fixes.length > 0) {
|
|
50
|
+
const fixTimes = [];
|
|
51
|
+
for (const fix of fixes) {
|
|
52
|
+
const closestError = errors
|
|
53
|
+
.filter(e => new Date(e.created_at) < new Date(fix.created_at))
|
|
54
|
+
.sort((a, b) => new Date(b.created_at).getTime() - new Date(a.created_at).getTime())[0];
|
|
55
|
+
if (closestError) {
|
|
56
|
+
fixTimes.push(new Date(fix.created_at).getTime() - new Date(closestError.created_at).getTime());
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
avgFixMs = fixTimes.length > 0 ? fixTimes.reduce((s, t) => s + t, 0) / fixTimes.length : 0;
|
|
60
|
+
}
|
|
61
|
+
const avgFixSpeed = avgFixMs > 0
|
|
62
|
+
? avgFixMs < 3600000 ? `${Math.round(avgFixMs / 60000)}min`
|
|
63
|
+
: avgFixMs < 86400000 ? `${Math.round(avgFixMs / 3600000)}h`
|
|
64
|
+
: `${Math.round(avgFixMs / 86400000)}d`
|
|
65
|
+
: 'N/A';
|
|
66
|
+
const verificationRatio = editCount > 0 ? Math.round(verificationCount / editCount * 100) : 0;
|
|
67
|
+
const metrics = {
|
|
68
|
+
totalCommits: commitCount,
|
|
69
|
+
avgDailyCommits,
|
|
70
|
+
peakCommitDay: peakDay.d,
|
|
71
|
+
peakCommitCount: peakDay.c,
|
|
72
|
+
totalEdits: editCount,
|
|
73
|
+
avgDailyEdits,
|
|
74
|
+
totalDecisions: decisionCount,
|
|
75
|
+
avgDecisionFrequency: decisionFreq,
|
|
76
|
+
totalFixes: fixCount,
|
|
77
|
+
avgFixSpeed,
|
|
78
|
+
totalVerifications: verificationCount,
|
|
79
|
+
verificationRatio,
|
|
80
|
+
};
|
|
81
|
+
// Daily trends
|
|
82
|
+
const trends = [];
|
|
83
|
+
const sortedDays = Object.keys(byDay).sort();
|
|
84
|
+
let runningTotal = 0;
|
|
85
|
+
for (const day of sortedDays) {
|
|
86
|
+
runningTotal += byDay[day];
|
|
87
|
+
trends.push({
|
|
88
|
+
date: day,
|
|
89
|
+
commits: events.filter(e => e.type === 'branch' && e.created_at.startsWith(day)).length,
|
|
90
|
+
edits: events.filter(e => e.type === 'edit' && e.created_at.startsWith(day)).length,
|
|
91
|
+
decisions: events.filter(e => e.type === 'decision' && e.created_at.startsWith(day)).length,
|
|
92
|
+
fixes: events.filter(e => e.type === 'fix' && e.created_at.startsWith(day)).length,
|
|
93
|
+
velocity: byDay[day],
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
// Score
|
|
97
|
+
const score = computeVelocityScore(metrics, days);
|
|
98
|
+
// Chart
|
|
99
|
+
const chart = renderVelocityChart(trends, metrics);
|
|
100
|
+
return {
|
|
101
|
+
project,
|
|
102
|
+
period: `${days}d`,
|
|
103
|
+
metrics,
|
|
104
|
+
breakdown: { byType, byDay, byHour, topTopics },
|
|
105
|
+
trends,
|
|
106
|
+
score,
|
|
107
|
+
chart,
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
function computeVelocityScore(metrics, days) {
|
|
111
|
+
// Productivity (0-100): commits + edits per day
|
|
112
|
+
let productivity = 0;
|
|
113
|
+
if (metrics.avgDailyCommits > 0)
|
|
114
|
+
productivity += 30;
|
|
115
|
+
if (metrics.avgDailyCommits > 2)
|
|
116
|
+
productivity += 20;
|
|
117
|
+
if (metrics.avgDailyCommits > 5)
|
|
118
|
+
productivity += 10;
|
|
119
|
+
if (metrics.avgDailyEdits > 0)
|
|
120
|
+
productivity += 15;
|
|
121
|
+
if (metrics.avgDailyEdits > 5)
|
|
122
|
+
productivity += 15;
|
|
123
|
+
if (metrics.avgDailyEdits > 10)
|
|
124
|
+
productivity += 10;
|
|
125
|
+
// Consistency (0-100): active days / total days
|
|
126
|
+
const activeDays = Object.keys(metrics).length > 0 ? days : 0; // simplified
|
|
127
|
+
let consistency = Math.min(100, activeDays * 3);
|
|
128
|
+
// Quality (0-100): verification ratio + decisions
|
|
129
|
+
let quality = 50;
|
|
130
|
+
if (metrics.verificationRatio > 50)
|
|
131
|
+
quality += 20;
|
|
132
|
+
else if (metrics.verificationRatio > 20)
|
|
133
|
+
quality += 10;
|
|
134
|
+
if (metrics.totalDecisions > 3)
|
|
135
|
+
quality += 15;
|
|
136
|
+
if (metrics.totalDecisions > 10)
|
|
137
|
+
quality += 15;
|
|
138
|
+
// Learning (0-100): diverse event types
|
|
139
|
+
const typeCount = Object.keys(metrics).length;
|
|
140
|
+
let learning = Math.min(100, typeCount * 15);
|
|
141
|
+
const overall = Math.round(productivity * 0.35 + consistency * 0.25 + quality * 0.25 + learning * 0.15);
|
|
142
|
+
let grade = 'F';
|
|
143
|
+
if (overall >= 90)
|
|
144
|
+
grade = 'S';
|
|
145
|
+
else if (overall >= 80)
|
|
146
|
+
grade = 'A';
|
|
147
|
+
else if (overall >= 70)
|
|
148
|
+
grade = 'B';
|
|
149
|
+
else if (overall >= 55)
|
|
150
|
+
grade = 'C';
|
|
151
|
+
else if (overall >= 40)
|
|
152
|
+
grade = 'D';
|
|
153
|
+
return {
|
|
154
|
+
overall,
|
|
155
|
+
grade,
|
|
156
|
+
dimensions: { productivity, consistency, quality, learning },
|
|
157
|
+
};
|
|
158
|
+
}
|
|
159
|
+
function renderVelocityChart(trends, metrics) {
|
|
160
|
+
if (trends.length === 0)
|
|
161
|
+
return ' No data available.';
|
|
162
|
+
const maxVelocity = Math.max(...trends.map(t => t.velocity), 1);
|
|
163
|
+
const chartHeight = 8;
|
|
164
|
+
const lines = [];
|
|
165
|
+
lines.push(` Developer Velocity (${trends.length} days)`);
|
|
166
|
+
lines.push('');
|
|
167
|
+
for (let row = chartHeight; row >= 1; row--) {
|
|
168
|
+
const threshold = (row / chartHeight) * maxVelocity;
|
|
169
|
+
const label = row === chartHeight ? String(maxVelocity).padStart(4) : row === 1 ? ' 1' : ' ';
|
|
170
|
+
let line = ` ${label} │`;
|
|
171
|
+
for (const t of trends) {
|
|
172
|
+
if (t.velocity >= threshold) {
|
|
173
|
+
line += ' ▓';
|
|
174
|
+
}
|
|
175
|
+
else {
|
|
176
|
+
line += ' ';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
lines.push(line);
|
|
180
|
+
}
|
|
181
|
+
lines.push(` └${'─'.repeat(trends.length * 2)}`);
|
|
182
|
+
if (trends.length > 0) {
|
|
183
|
+
const first = trends[0].date.slice(5);
|
|
184
|
+
const last = trends[trends.length - 1].date.slice(5);
|
|
185
|
+
lines.push(` ${first}${' '.repeat(Math.max(0, trends.length * 2 - first.length - last.length))}${last}`);
|
|
186
|
+
}
|
|
187
|
+
lines.push('');
|
|
188
|
+
lines.push(` Commits: ${metrics.totalCommits} | Edits: ${metrics.totalEdits} | Decisions: ${metrics.totalDecisions} | Fixes: ${metrics.totalFixes}`);
|
|
189
|
+
return lines.join('\n');
|
|
190
|
+
}
|
|
191
|
+
function formatDeveloperVelocity(vel) {
|
|
192
|
+
const lines = [];
|
|
193
|
+
lines.push(`## Developer Velocity — ${vel.project} (${vel.period})\n`);
|
|
194
|
+
lines.push(vel.chart);
|
|
195
|
+
lines.push('');
|
|
196
|
+
lines.push(`### Score: ${vel.score.overall}/100 (${vel.score.grade})`);
|
|
197
|
+
lines.push(`| Dimension | Score |`);
|
|
198
|
+
lines.push(`|-----------|-------|`);
|
|
199
|
+
lines.push(`| Productivity | ${vel.score.dimensions.productivity} |`);
|
|
200
|
+
lines.push(`| Consistency | ${vel.score.dimensions.consistency} |`);
|
|
201
|
+
lines.push(`| Quality | ${vel.score.dimensions.quality} |`);
|
|
202
|
+
lines.push(`| Learning | ${vel.score.dimensions.learning} |`);
|
|
203
|
+
lines.push('');
|
|
204
|
+
lines.push(`### Metrics`);
|
|
205
|
+
lines.push(`| Metric | Value |`);
|
|
206
|
+
lines.push(`|--------|-------|`);
|
|
207
|
+
lines.push(`| Total commits | ${vel.metrics.totalCommits} |`);
|
|
208
|
+
lines.push(`| Avg daily commits | ${vel.metrics.avgDailyCommits} |`);
|
|
209
|
+
lines.push(`| Total edits | ${vel.metrics.totalEdits} |`);
|
|
210
|
+
lines.push(`| Avg daily edits | ${vel.metrics.avgDailyEdits} |`);
|
|
211
|
+
lines.push(`| Decisions | ${vel.metrics.totalDecisions} |`);
|
|
212
|
+
lines.push(`| Decision frequency | ${vel.metrics.avgDecisionFrequency} |`);
|
|
213
|
+
lines.push(`| Fixes | ${vel.metrics.totalFixes} |`);
|
|
214
|
+
lines.push(`| Avg fix speed | ${vel.metrics.avgFixSpeed} |`);
|
|
215
|
+
lines.push(`| Verification ratio | ${vel.metrics.verificationRatio}% |`);
|
|
216
|
+
if (vel.breakdown.topTopics.length > 0) {
|
|
217
|
+
lines.push('');
|
|
218
|
+
lines.push(`### Top Topics`);
|
|
219
|
+
for (const t of vel.breakdown.topTopics.slice(0, 5)) {
|
|
220
|
+
lines.push(`- ${t.topic}: ${t.count}`);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
return lines.join('\n');
|
|
224
|
+
}
|
|
225
|
+
//# sourceMappingURL=developer-velocity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"developer-velocity.js","sourceRoot":"","sources":["../../../../src/walls/06-memory/stores/developer-velocity.ts"],"names":[],"mappings":"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"}
|