@mainahq/core 1.0.3 → 1.1.1
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/package.json +1 -1
- package/src/ai/__tests__/delegation.test.ts +55 -1
- package/src/ai/delegation.ts +5 -3
- package/src/context/__tests__/budget.test.ts +29 -6
- package/src/context/__tests__/engine.test.ts +1 -0
- package/src/context/__tests__/selector.test.ts +23 -3
- package/src/context/__tests__/wiki.test.ts +349 -0
- package/src/context/budget.ts +12 -8
- package/src/context/engine.ts +37 -0
- package/src/context/selector.ts +30 -4
- package/src/context/wiki.ts +296 -0
- package/src/db/index.ts +12 -0
- package/src/feedback/__tests__/capture.test.ts +166 -0
- package/src/feedback/__tests__/signals.test.ts +144 -0
- package/src/feedback/__tests__/tmp-capture-1775575256633-lah0etnzlj/feedback.db +0 -0
- package/src/feedback/__tests__/tmp-capture-1775575256640-2xmjme4qraa/feedback.db +0 -0
- package/src/feedback/capture.ts +102 -0
- package/src/feedback/signals.ts +68 -0
- package/src/index.ts +104 -0
- package/src/init/__tests__/init.test.ts +400 -3
- package/src/init/index.ts +368 -12
- package/src/language/__tests__/__fixtures__/detect/composer.lock +1 -0
- package/src/prompts/defaults/index.ts +3 -1
- package/src/prompts/defaults/wiki-compile.md +20 -0
- package/src/prompts/defaults/wiki-query.md +18 -0
- package/src/stats/__tests__/tool-usage.test.ts +133 -0
- package/src/stats/tracker.ts +92 -0
- package/src/verify/__tests__/pipeline.test.ts +11 -8
- package/src/verify/pipeline.ts +13 -1
- package/src/verify/tools/__tests__/wiki-lint.test.ts +784 -0
- package/src/verify/tools/wiki-lint-runner.ts +38 -0
- package/src/verify/tools/wiki-lint.ts +898 -0
- package/src/wiki/__tests__/compiler.test.ts +389 -0
- package/src/wiki/__tests__/extractors/code.test.ts +99 -0
- package/src/wiki/__tests__/extractors/decision.test.ts +323 -0
- package/src/wiki/__tests__/extractors/feature.test.ts +186 -0
- package/src/wiki/__tests__/extractors/workflow.test.ts +131 -0
- package/src/wiki/__tests__/graph.test.ts +344 -0
- package/src/wiki/__tests__/hooks.test.ts +119 -0
- package/src/wiki/__tests__/indexer.test.ts +285 -0
- package/src/wiki/__tests__/linker.test.ts +230 -0
- package/src/wiki/__tests__/louvain.test.ts +229 -0
- package/src/wiki/__tests__/query.test.ts +316 -0
- package/src/wiki/__tests__/schema.test.ts +114 -0
- package/src/wiki/__tests__/signals.test.ts +474 -0
- package/src/wiki/__tests__/state.test.ts +168 -0
- package/src/wiki/__tests__/tracking.test.ts +118 -0
- package/src/wiki/__tests__/types.test.ts +387 -0
- package/src/wiki/compiler.ts +1075 -0
- package/src/wiki/extractors/code.ts +90 -0
- package/src/wiki/extractors/decision.ts +217 -0
- package/src/wiki/extractors/feature.ts +206 -0
- package/src/wiki/extractors/workflow.ts +112 -0
- package/src/wiki/graph.ts +445 -0
- package/src/wiki/hooks.ts +49 -0
- package/src/wiki/indexer.ts +105 -0
- package/src/wiki/linker.ts +117 -0
- package/src/wiki/louvain.ts +190 -0
- package/src/wiki/prompts/compile-architecture.md +59 -0
- package/src/wiki/prompts/compile-decision.md +66 -0
- package/src/wiki/prompts/compile-entity.md +56 -0
- package/src/wiki/prompts/compile-feature.md +60 -0
- package/src/wiki/prompts/compile-module.md +42 -0
- package/src/wiki/prompts/wiki-query.md +25 -0
- package/src/wiki/query.ts +338 -0
- package/src/wiki/schema.ts +111 -0
- package/src/wiki/signals.ts +368 -0
- package/src/wiki/state.ts +89 -0
- package/src/wiki/tracking.ts +30 -0
- package/src/wiki/types.ts +169 -0
- package/src/workflow/context.ts +26 -0
package/src/stats/tracker.ts
CHANGED
|
@@ -490,3 +490,95 @@ export function getSkipRate(
|
|
|
490
490
|
return { ok: false, error: e instanceof Error ? e.message : String(e) };
|
|
491
491
|
}
|
|
492
492
|
}
|
|
493
|
+
|
|
494
|
+
export interface ToolUsageInput {
|
|
495
|
+
tool: string;
|
|
496
|
+
inputHash: string;
|
|
497
|
+
durationMs: number;
|
|
498
|
+
cacheHit: boolean;
|
|
499
|
+
workflowId?: string;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
export interface ToolUsageStats {
|
|
503
|
+
totalCalls: number;
|
|
504
|
+
cacheHits: number;
|
|
505
|
+
cacheHitRate: number;
|
|
506
|
+
byTool: Record<
|
|
507
|
+
string,
|
|
508
|
+
{ calls: number; cacheHits: number; avgDurationMs: number }
|
|
509
|
+
>;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
export function trackToolUsage(mainaDir: string, input: ToolUsageInput): void {
|
|
513
|
+
try {
|
|
514
|
+
const dbResult = getStatsDb(mainaDir);
|
|
515
|
+
if (!dbResult.ok) return;
|
|
516
|
+
const { db } = dbResult.value;
|
|
517
|
+
const id = crypto.randomUUID();
|
|
518
|
+
const timestamp = new Date().toISOString();
|
|
519
|
+
db.prepare(
|
|
520
|
+
`INSERT INTO tool_usage (id, tool, input_hash, duration_ms, cache_hit, timestamp, workflow_id)
|
|
521
|
+
VALUES (?, ?, ?, ?, ?, ?, ?)`,
|
|
522
|
+
).run(
|
|
523
|
+
id,
|
|
524
|
+
input.tool,
|
|
525
|
+
input.inputHash,
|
|
526
|
+
input.durationMs,
|
|
527
|
+
input.cacheHit ? 1 : 0,
|
|
528
|
+
timestamp,
|
|
529
|
+
input.workflowId ?? null,
|
|
530
|
+
);
|
|
531
|
+
} catch {
|
|
532
|
+
// Never throw from stats tracking
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
export function getToolUsageStats(mainaDir: string): ToolUsageStats {
|
|
537
|
+
const empty: ToolUsageStats = {
|
|
538
|
+
totalCalls: 0,
|
|
539
|
+
cacheHits: 0,
|
|
540
|
+
cacheHitRate: 0,
|
|
541
|
+
byTool: {},
|
|
542
|
+
};
|
|
543
|
+
try {
|
|
544
|
+
const dbResult = getStatsDb(mainaDir);
|
|
545
|
+
if (!dbResult.ok) return empty;
|
|
546
|
+
const { db } = dbResult.value;
|
|
547
|
+
const totals = db
|
|
548
|
+
.query(
|
|
549
|
+
`SELECT COUNT(*) as total, SUM(CASE WHEN cache_hit = 1 THEN 1 ELSE 0 END) as hits FROM tool_usage`,
|
|
550
|
+
)
|
|
551
|
+
.get() as { total: number; hits: number } | null;
|
|
552
|
+
if (!totals || totals.total === 0) return empty;
|
|
553
|
+
const byToolRows = db
|
|
554
|
+
.query(
|
|
555
|
+
`SELECT tool, COUNT(*) as calls, SUM(CASE WHEN cache_hit = 1 THEN 1 ELSE 0 END) as cache_hits, AVG(duration_ms) as avg_duration
|
|
556
|
+
FROM tool_usage GROUP BY tool`,
|
|
557
|
+
)
|
|
558
|
+
.all() as Array<{
|
|
559
|
+
tool: string;
|
|
560
|
+
calls: number;
|
|
561
|
+
cache_hits: number;
|
|
562
|
+
avg_duration: number;
|
|
563
|
+
}>;
|
|
564
|
+
const byTool: Record<
|
|
565
|
+
string,
|
|
566
|
+
{ calls: number; cacheHits: number; avgDurationMs: number }
|
|
567
|
+
> = {};
|
|
568
|
+
for (const row of byToolRows) {
|
|
569
|
+
byTool[row.tool] = {
|
|
570
|
+
calls: row.calls,
|
|
571
|
+
cacheHits: row.cache_hits,
|
|
572
|
+
avgDurationMs: Math.round(row.avg_duration),
|
|
573
|
+
};
|
|
574
|
+
}
|
|
575
|
+
return {
|
|
576
|
+
totalCalls: totals.total,
|
|
577
|
+
cacheHits: totals.hits,
|
|
578
|
+
cacheHitRate: totals.total > 0 ? totals.hits / totals.total : 0,
|
|
579
|
+
byTool,
|
|
580
|
+
};
|
|
581
|
+
} catch {
|
|
582
|
+
return empty;
|
|
583
|
+
}
|
|
584
|
+
}
|
|
@@ -272,8 +272,8 @@ describe("VerifyPipeline", () => {
|
|
|
272
272
|
expect(callOrder).toContain("runTrivy");
|
|
273
273
|
expect(callOrder).toContain("runSecretlint");
|
|
274
274
|
|
|
275
|
-
//
|
|
276
|
-
expect(result.tools).toHaveLength(
|
|
275
|
+
// 12 tool reports (slop + semgrep + trivy + secretlint + sonarqube + stryker + diff-cover + typecheck + consistency + builtin + ai-review + wiki-lint)
|
|
276
|
+
expect(result.tools).toHaveLength(12);
|
|
277
277
|
expect(result.findings).toHaveLength(3);
|
|
278
278
|
});
|
|
279
279
|
|
|
@@ -428,8 +428,9 @@ describe("VerifyPipeline", () => {
|
|
|
428
428
|
});
|
|
429
429
|
|
|
430
430
|
expect(callOrder).not.toContain("filterByDiff");
|
|
431
|
-
|
|
432
|
-
expect(result.
|
|
431
|
+
// At least the slop finding; wiki-lint may add more from real .maina/wiki/
|
|
432
|
+
expect(result.findings.length).toBeGreaterThanOrEqual(1);
|
|
433
|
+
expect(result.findings.some((f) => f.tool === "slop")).toBe(true);
|
|
433
434
|
});
|
|
434
435
|
|
|
435
436
|
it("should include duration in result", async () => {
|
|
@@ -489,9 +490,7 @@ describe("VerifyPipeline", () => {
|
|
|
489
490
|
diffOnly: false,
|
|
490
491
|
});
|
|
491
492
|
|
|
492
|
-
// Should
|
|
493
|
-
expect(result.passed).toBe(true);
|
|
494
|
-
|
|
493
|
+
// Should include the pipeline warning about skipped external tools
|
|
495
494
|
const pipelineWarning = result.findings.find(
|
|
496
495
|
(f) => f.tool === "pipeline" && f.severity === "warning",
|
|
497
496
|
);
|
|
@@ -557,7 +556,11 @@ describe("VerifyPipeline", () => {
|
|
|
557
556
|
duration: 0,
|
|
558
557
|
};
|
|
559
558
|
const result = await runPipeline({ files: ["src/app.ts"] });
|
|
560
|
-
|
|
559
|
+
// Pipeline passes if no error-severity findings from non-wiki tools
|
|
560
|
+
const nonWikiErrors = result.findings.filter(
|
|
561
|
+
(f) => f.tool !== "wiki-lint" && f.severity === "error",
|
|
562
|
+
);
|
|
563
|
+
expect(nonWikiErrors).toHaveLength(0);
|
|
561
564
|
const aiReport = result.tools.find((t) => t.tool === "ai-review");
|
|
562
565
|
expect(aiReport?.skipped).toBe(true);
|
|
563
566
|
});
|
package/src/verify/pipeline.ts
CHANGED
|
@@ -33,6 +33,7 @@ import { detectSlop } from "./slop";
|
|
|
33
33
|
import { runSonar } from "./sonar";
|
|
34
34
|
import type { SyntaxDiagnostic } from "./syntax-guard";
|
|
35
35
|
import { syntaxGuard } from "./syntax-guard";
|
|
36
|
+
import { runWikiLintTool } from "./tools/wiki-lint-runner";
|
|
36
37
|
import { runTrivy } from "./trivy";
|
|
37
38
|
import { runTypecheck } from "./typecheck";
|
|
38
39
|
|
|
@@ -258,10 +259,21 @@ export async function runPipeline(
|
|
|
258
259
|
}),
|
|
259
260
|
);
|
|
260
261
|
|
|
262
|
+
// Wiki lint — only runs if .maina/wiki/ exists (auto-skips otherwise)
|
|
263
|
+
toolPromises.push(
|
|
264
|
+
runToolWithTiming("wiki-lint", () => runWikiLintTool({ cwd, mainaDir })),
|
|
265
|
+
);
|
|
266
|
+
|
|
261
267
|
const toolReports = await Promise.all(toolPromises);
|
|
262
268
|
|
|
263
269
|
// ── Step 4b: Warn if all external tools were skipped ─────────────────
|
|
264
|
-
const builtInTools = new Set([
|
|
270
|
+
const builtInTools = new Set([
|
|
271
|
+
"slop",
|
|
272
|
+
"typecheck",
|
|
273
|
+
"consistency",
|
|
274
|
+
"builtin",
|
|
275
|
+
"wiki-lint",
|
|
276
|
+
]);
|
|
265
277
|
const externalTools = toolReports.filter((r) => !builtInTools.has(r.tool));
|
|
266
278
|
const allExternalSkipped =
|
|
267
279
|
externalTools.length > 0 && externalTools.every((r) => r.skipped);
|