MCPcopy
hub / github.com/cobusgreyling/loop-engineering / DriftReport

Interface DriftReport

tools/loop-sync/src/sync.ts:15–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13import path from 'node:path';
14
15export interface DriftReport {
16 score: number; // 0-100 consistency score
17 level: 'healthy' | 'warning' | 'critical';
18 issues: DriftIssue[];
19 suggestions: string[];
20 timestamp: string;
21}
22
23export interface DriftIssue {
24 type: 'missing' | 'outdated' | 'inconsistent' | 'orphaned';

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected