claude-flow 3.5.69 → 3.5.71

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 (101) hide show
  1. package/package.json +1 -1
  2. package/v3/@claude-flow/cli/dist/src/commands/autopilot.js +1 -1
  3. package/v3/@claude-flow/cli/dist/src/commands/hooks.js +4 -7
  4. package/v3/@claude-flow/cli/dist/src/commands/init.js +0 -1
  5. package/v3/@claude-flow/cli/dist/src/commands/neural.js +1 -0
  6. package/v3/@claude-flow/cli/dist/src/commands/providers.js +228 -96
  7. package/v3/@claude-flow/cli/dist/src/commands/security.js +1 -1
  8. package/v3/@claude-flow/cli/dist/src/mcp-tools/agent-tools.js +35 -1
  9. package/v3/@claude-flow/cli/dist/src/mcp-tools/agentdb-tools.js +81 -0
  10. package/v3/@claude-flow/cli/dist/src/mcp-tools/analyze-tools.js +29 -0
  11. package/v3/@claude-flow/cli/dist/src/mcp-tools/autopilot-tools.js +4 -0
  12. package/v3/@claude-flow/cli/dist/src/mcp-tools/browser-tools.js +146 -0
  13. package/v3/@claude-flow/cli/dist/src/mcp-tools/claims-tools.js +116 -0
  14. package/v3/@claude-flow/cli/dist/src/mcp-tools/config-tools.js +53 -0
  15. package/v3/@claude-flow/cli/dist/src/mcp-tools/coordination-tools.js +31 -0
  16. package/v3/@claude-flow/cli/dist/src/mcp-tools/daa-tools.js +61 -0
  17. package/v3/@claude-flow/cli/dist/src/mcp-tools/embeddings-tools.js +26 -0
  18. package/v3/@claude-flow/cli/dist/src/mcp-tools/github-tools.js +96 -0
  19. package/v3/@claude-flow/cli/dist/src/mcp-tools/guidance-tools.js +21 -0
  20. package/v3/@claude-flow/cli/dist/src/mcp-tools/hive-mind-tools.js +56 -0
  21. package/v3/@claude-flow/cli/dist/src/mcp-tools/hooks-tools.js +176 -0
  22. package/v3/@claude-flow/cli/dist/src/mcp-tools/memory-tools.js +18 -2
  23. package/v3/@claude-flow/cli/dist/src/mcp-tools/neural-tools.js +51 -0
  24. package/v3/@claude-flow/cli/dist/src/mcp-tools/performance-tools.js +11 -0
  25. package/v3/@claude-flow/cli/dist/src/mcp-tools/ruvllm-tools.js +31 -0
  26. package/v3/@claude-flow/cli/dist/src/mcp-tools/security-tools.js +36 -0
  27. package/v3/@claude-flow/cli/dist/src/mcp-tools/session-tools.js +29 -0
  28. package/v3/@claude-flow/cli/dist/src/mcp-tools/swarm-tools.js +30 -0
  29. package/v3/@claude-flow/cli/dist/src/mcp-tools/system-tools.js +6 -0
  30. package/v3/@claude-flow/cli/dist/src/mcp-tools/task-tools.js +33 -0
  31. package/v3/@claude-flow/cli/dist/src/mcp-tools/terminal-tools.js +31 -0
  32. package/v3/@claude-flow/cli/dist/src/mcp-tools/transfer-tools.js +51 -0
  33. package/v3/@claude-flow/cli/dist/src/mcp-tools/wasm-agent-tools.js +61 -0
  34. package/v3/@claude-flow/cli/dist/src/mcp-tools/workflow-tools.js +82 -0
  35. package/v3/@claude-flow/cli/dist/src/memory/intelligence.d.ts +6 -1
  36. package/v3/@claude-flow/cli/dist/src/memory/intelligence.js +51 -1
  37. package/v3/@claude-flow/cli/package.json +1 -1
  38. package/v3/@claude-flow/guidance/dist/adversarial.d.ts +284 -0
  39. package/v3/@claude-flow/guidance/dist/adversarial.js +572 -0
  40. package/v3/@claude-flow/guidance/dist/analyzer.d.ts +530 -0
  41. package/v3/@claude-flow/guidance/dist/analyzer.js +2518 -0
  42. package/v3/@claude-flow/guidance/dist/artifacts.d.ts +283 -0
  43. package/v3/@claude-flow/guidance/dist/artifacts.js +356 -0
  44. package/v3/@claude-flow/guidance/dist/authority.d.ts +290 -0
  45. package/v3/@claude-flow/guidance/dist/authority.js +558 -0
  46. package/v3/@claude-flow/guidance/dist/capabilities.d.ts +209 -0
  47. package/v3/@claude-flow/guidance/dist/capabilities.js +485 -0
  48. package/v3/@claude-flow/guidance/dist/coherence.d.ts +233 -0
  49. package/v3/@claude-flow/guidance/dist/coherence.js +372 -0
  50. package/v3/@claude-flow/guidance/dist/compiler.d.ts +87 -0
  51. package/v3/@claude-flow/guidance/dist/compiler.js +419 -0
  52. package/v3/@claude-flow/guidance/dist/conformance-kit.d.ts +225 -0
  53. package/v3/@claude-flow/guidance/dist/conformance-kit.js +629 -0
  54. package/v3/@claude-flow/guidance/dist/continue-gate.d.ts +214 -0
  55. package/v3/@claude-flow/guidance/dist/continue-gate.js +353 -0
  56. package/v3/@claude-flow/guidance/dist/crypto-utils.d.ts +17 -0
  57. package/v3/@claude-flow/guidance/dist/crypto-utils.js +24 -0
  58. package/v3/@claude-flow/guidance/dist/evolution.d.ts +282 -0
  59. package/v3/@claude-flow/guidance/dist/evolution.js +500 -0
  60. package/v3/@claude-flow/guidance/dist/gates.d.ts +79 -0
  61. package/v3/@claude-flow/guidance/dist/gates.js +302 -0
  62. package/v3/@claude-flow/guidance/dist/gateway.d.ts +206 -0
  63. package/v3/@claude-flow/guidance/dist/gateway.js +452 -0
  64. package/v3/@claude-flow/guidance/dist/generators.d.ts +153 -0
  65. package/v3/@claude-flow/guidance/dist/generators.js +682 -0
  66. package/v3/@claude-flow/guidance/dist/headless.d.ts +177 -0
  67. package/v3/@claude-flow/guidance/dist/headless.js +342 -0
  68. package/v3/@claude-flow/guidance/dist/hooks.d.ts +109 -0
  69. package/v3/@claude-flow/guidance/dist/hooks.js +347 -0
  70. package/v3/@claude-flow/guidance/dist/index.d.ts +205 -0
  71. package/v3/@claude-flow/guidance/dist/index.js +321 -0
  72. package/v3/@claude-flow/guidance/dist/ledger.d.ts +162 -0
  73. package/v3/@claude-flow/guidance/dist/ledger.js +375 -0
  74. package/v3/@claude-flow/guidance/dist/manifest-validator.d.ts +289 -0
  75. package/v3/@claude-flow/guidance/dist/manifest-validator.js +838 -0
  76. package/v3/@claude-flow/guidance/dist/memory-gate.d.ts +222 -0
  77. package/v3/@claude-flow/guidance/dist/memory-gate.js +382 -0
  78. package/v3/@claude-flow/guidance/dist/meta-governance.d.ts +265 -0
  79. package/v3/@claude-flow/guidance/dist/meta-governance.js +348 -0
  80. package/v3/@claude-flow/guidance/dist/optimizer.d.ts +104 -0
  81. package/v3/@claude-flow/guidance/dist/optimizer.js +329 -0
  82. package/v3/@claude-flow/guidance/dist/persistence.d.ts +189 -0
  83. package/v3/@claude-flow/guidance/dist/persistence.js +464 -0
  84. package/v3/@claude-flow/guidance/dist/proof.d.ts +185 -0
  85. package/v3/@claude-flow/guidance/dist/proof.js +238 -0
  86. package/v3/@claude-flow/guidance/dist/retriever.d.ts +116 -0
  87. package/v3/@claude-flow/guidance/dist/retriever.js +394 -0
  88. package/v3/@claude-flow/guidance/dist/ruvbot-integration.d.ts +370 -0
  89. package/v3/@claude-flow/guidance/dist/ruvbot-integration.js +738 -0
  90. package/v3/@claude-flow/guidance/dist/temporal.d.ts +426 -0
  91. package/v3/@claude-flow/guidance/dist/temporal.js +658 -0
  92. package/v3/@claude-flow/guidance/dist/trust.d.ts +283 -0
  93. package/v3/@claude-flow/guidance/dist/trust.js +473 -0
  94. package/v3/@claude-flow/guidance/dist/truth-anchors.d.ts +276 -0
  95. package/v3/@claude-flow/guidance/dist/truth-anchors.js +488 -0
  96. package/v3/@claude-flow/guidance/dist/types.d.ts +378 -0
  97. package/v3/@claude-flow/guidance/dist/types.js +10 -0
  98. package/v3/@claude-flow/guidance/dist/uncertainty.d.ts +372 -0
  99. package/v3/@claude-flow/guidance/dist/uncertainty.js +619 -0
  100. package/v3/@claude-flow/guidance/dist/wasm-kernel.d.ts +48 -0
  101. package/v3/@claude-flow/guidance/dist/wasm-kernel.js +158 -0
@@ -0,0 +1,378 @@
1
+ /**
2
+ * Guidance Control Plane - Type Definitions
3
+ *
4
+ * Types for the guidance compiler, shard retriever, enforcement gates,
5
+ * run ledger, evaluators, and optimizer loop.
6
+ *
7
+ * @module @claude-flow/guidance/types
8
+ */
9
+ /**
10
+ * Risk classification for rules
11
+ */
12
+ export type RiskClass = 'critical' | 'high' | 'medium' | 'low' | 'info';
13
+ /**
14
+ * Tool class a rule applies to
15
+ */
16
+ export type ToolClass = 'edit' | 'bash' | 'read' | 'write' | 'mcp' | 'task' | 'all';
17
+ /**
18
+ * Intent categories for task classification
19
+ */
20
+ export type TaskIntent = 'bug-fix' | 'feature' | 'refactor' | 'security' | 'performance' | 'testing' | 'docs' | 'deployment' | 'architecture' | 'debug' | 'general';
21
+ /**
22
+ * A single guidance rule
23
+ */
24
+ export interface GuidanceRule {
25
+ /** Unique rule identifier (e.g., R001) */
26
+ id: string;
27
+ /** Human-readable rule text */
28
+ text: string;
29
+ /** Risk classification */
30
+ riskClass: RiskClass;
31
+ /** Which tool classes this rule applies to */
32
+ toolClasses: ToolClass[];
33
+ /** Task intents this rule is relevant for */
34
+ intents: TaskIntent[];
35
+ /** Repository path globs where this rule applies */
36
+ repoScopes: string[];
37
+ /** Domain tags (security, testing, architecture, etc.) */
38
+ domains: string[];
39
+ /** Priority (higher = takes precedence in contradictions) */
40
+ priority: number;
41
+ /** Source file this rule came from */
42
+ source: 'root' | 'local' | 'optimizer';
43
+ /** Whether this rule is part of the always-loaded constitution */
44
+ isConstitution: boolean;
45
+ /** Optional verifier function name or pattern */
46
+ verifier?: string;
47
+ /** Rule creation timestamp */
48
+ createdAt: number;
49
+ /** Last modification timestamp */
50
+ updatedAt: number;
51
+ }
52
+ /**
53
+ * A rule shard - a short snippet tagged for retrieval
54
+ */
55
+ export interface RuleShard {
56
+ /** The rule this shard represents */
57
+ rule: GuidanceRule;
58
+ /** Compact text form for injection into context */
59
+ compactText: string;
60
+ /** Embedding vector for semantic retrieval */
61
+ embedding?: Float32Array;
62
+ }
63
+ /**
64
+ * The constitution - always-loaded core rules
65
+ */
66
+ export interface Constitution {
67
+ /** Rules that must always be active */
68
+ rules: GuidanceRule[];
69
+ /** Compact text representation (30-60 lines) */
70
+ text: string;
71
+ /** Hash for change detection */
72
+ hash: string;
73
+ }
74
+ /**
75
+ * Machine-readable manifest of all rules
76
+ */
77
+ export interface RuleManifest {
78
+ /** All rule IDs with their triggers and verifiers */
79
+ rules: Array<{
80
+ id: string;
81
+ triggers: string[];
82
+ verifier: string | null;
83
+ riskClass: RiskClass;
84
+ priority: number;
85
+ source: string;
86
+ }>;
87
+ /** Compilation timestamp */
88
+ compiledAt: number;
89
+ /** Source file hashes */
90
+ sourceHashes: Record<string, string>;
91
+ /** Total rule count */
92
+ totalRules: number;
93
+ /** Constitution rule count */
94
+ constitutionRules: number;
95
+ /** Shard rule count */
96
+ shardRules: number;
97
+ }
98
+ /**
99
+ * Compiled policy bundle output
100
+ */
101
+ export interface PolicyBundle {
102
+ /** The always-loaded constitution */
103
+ constitution: Constitution;
104
+ /** Task-scoped rule shards for retrieval */
105
+ shards: RuleShard[];
106
+ /** Machine-readable manifest */
107
+ manifest: RuleManifest;
108
+ }
109
+ /**
110
+ * Retrieval request
111
+ */
112
+ export interface RetrievalRequest {
113
+ /** Task description to match against */
114
+ taskDescription: string;
115
+ /** Optional intent override */
116
+ intent?: TaskIntent;
117
+ /** Optional risk class filter */
118
+ riskFilter?: RiskClass[];
119
+ /** Optional repo path filter */
120
+ repoScope?: string;
121
+ /** Maximum shards to retrieve */
122
+ maxShards?: number;
123
+ }
124
+ /**
125
+ * Retrieval result
126
+ */
127
+ export interface RetrievalResult {
128
+ /** The constitution (always included) */
129
+ constitution: Constitution;
130
+ /** Retrieved shards, ordered by relevance */
131
+ shards: Array<{
132
+ shard: RuleShard;
133
+ similarity: number;
134
+ reason: string;
135
+ }>;
136
+ /** Detected task intent */
137
+ detectedIntent: TaskIntent;
138
+ /** Whether any contradictions were found and resolved */
139
+ contradictionsResolved: number;
140
+ /** Combined policy text for injection */
141
+ policyText: string;
142
+ /** Retrieval latency in ms */
143
+ latencyMs: number;
144
+ }
145
+ /**
146
+ * Gate decision
147
+ */
148
+ export type GateDecision = 'allow' | 'block' | 'warn' | 'require-confirmation';
149
+ /**
150
+ * Gate evaluation result
151
+ */
152
+ export interface GateResult {
153
+ /** The decision */
154
+ decision: GateDecision;
155
+ /** Gate that produced this result */
156
+ gateName: string;
157
+ /** Reason for the decision */
158
+ reason: string;
159
+ /** Rule IDs that triggered this gate */
160
+ triggeredRules: string[];
161
+ /** Suggested remediation */
162
+ remediation?: string;
163
+ /** Additional metadata */
164
+ metadata?: Record<string, unknown>;
165
+ }
166
+ /**
167
+ * Gate configuration
168
+ */
169
+ export interface GateConfig {
170
+ /** Enable destructive ops gate */
171
+ destructiveOps: boolean;
172
+ /** Enable tool allowlist gate */
173
+ toolAllowlist: boolean;
174
+ /** Enable diff size gate */
175
+ diffSize: boolean;
176
+ /** Enable secrets detection gate */
177
+ secrets: boolean;
178
+ /** Diff size threshold (lines) before requiring a plan */
179
+ diffSizeThreshold: number;
180
+ /** Allowed tools list (empty = all allowed) */
181
+ allowedTools: string[];
182
+ /** Custom secret patterns */
183
+ secretPatterns: RegExp[];
184
+ /** Destructive command patterns */
185
+ destructivePatterns: RegExp[];
186
+ }
187
+ /**
188
+ * Run event logged to the ledger
189
+ */
190
+ export interface RunEvent {
191
+ /** Unique event ID */
192
+ eventId: string;
193
+ /** Task ID this event belongs to */
194
+ taskId: string;
195
+ /** Hash of the guidance bundle used */
196
+ guidanceHash: string;
197
+ /** Rule IDs that were active during this run */
198
+ retrievedRuleIds: string[];
199
+ /** Tools used during the task */
200
+ toolsUsed: string[];
201
+ /** Files touched during the task */
202
+ filesTouched: string[];
203
+ /** Summary of diffs produced */
204
+ diffSummary: {
205
+ linesAdded: number;
206
+ linesRemoved: number;
207
+ filesChanged: number;
208
+ };
209
+ /** Tests run and their results */
210
+ testResults: {
211
+ ran: boolean;
212
+ passed: number;
213
+ failed: number;
214
+ skipped: number;
215
+ };
216
+ /** Violations detected during the run */
217
+ violations: Violation[];
218
+ /** Whether the outcome was accepted */
219
+ outcomeAccepted: boolean | null;
220
+ /** Lines of rework needed */
221
+ reworkLines: number;
222
+ /** Task intent classification */
223
+ intent: TaskIntent;
224
+ /** Timestamp */
225
+ timestamp: number;
226
+ /** Duration in ms */
227
+ durationMs: number;
228
+ /** Session ID */
229
+ sessionId?: string;
230
+ }
231
+ /**
232
+ * A rule violation
233
+ */
234
+ export interface Violation {
235
+ /** Rule ID that was violated */
236
+ ruleId: string;
237
+ /** Violation description */
238
+ description: string;
239
+ /** Severity */
240
+ severity: RiskClass;
241
+ /** Where the violation occurred */
242
+ location?: string;
243
+ /** Whether it was auto-corrected */
244
+ autoCorrected: boolean;
245
+ }
246
+ /**
247
+ * Evaluator result
248
+ */
249
+ export interface EvaluatorResult {
250
+ /** Evaluator name */
251
+ name: string;
252
+ /** Pass or fail */
253
+ passed: boolean;
254
+ /** Details */
255
+ details: string;
256
+ /** Score (0-1) for subjective evaluators */
257
+ score?: number;
258
+ }
259
+ /**
260
+ * Violation ranking entry
261
+ */
262
+ export interface ViolationRanking {
263
+ /** Rule ID */
264
+ ruleId: string;
265
+ /** Number of times violated */
266
+ frequency: number;
267
+ /** Estimated cost (rework lines) */
268
+ cost: number;
269
+ /** Combined score (frequency * cost) */
270
+ score: number;
271
+ }
272
+ /**
273
+ * Proposed rule change
274
+ */
275
+ export interface RuleChange {
276
+ /** Change ID */
277
+ changeId: string;
278
+ /** Target rule ID (or 'new' for new rules) */
279
+ targetRuleId: string;
280
+ /** Type of change */
281
+ changeType: 'modify' | 'add' | 'remove' | 'promote' | 'demote';
282
+ /** Original rule text (if modifying) */
283
+ originalText?: string;
284
+ /** Proposed new text */
285
+ proposedText: string;
286
+ /** Rationale */
287
+ rationale: string;
288
+ /** Violation ranking that triggered this */
289
+ triggeringViolation: ViolationRanking;
290
+ }
291
+ /**
292
+ * A/B test result for rule changes
293
+ */
294
+ export interface ABTestResult {
295
+ /** Change being tested */
296
+ change: RuleChange;
297
+ /** Metrics with the original rule */
298
+ baseline: OptimizationMetrics;
299
+ /** Metrics with the changed rule */
300
+ candidate: OptimizationMetrics;
301
+ /** Whether the change should be promoted */
302
+ shouldPromote: boolean;
303
+ /** Reason for decision */
304
+ reason: string;
305
+ }
306
+ /**
307
+ * Optimization metrics
308
+ */
309
+ export interface OptimizationMetrics {
310
+ /** Violations per 10 tasks */
311
+ violationRate: number;
312
+ /** Self-correction rate */
313
+ selfCorrectionRate: number;
314
+ /** Rework lines after first output */
315
+ reworkLines: number;
316
+ /** Clarifying questions per task */
317
+ clarifyingQuestions: number;
318
+ /** Number of tasks measured */
319
+ taskCount: number;
320
+ }
321
+ /**
322
+ * ADR (Architecture Decision Record) for rule changes
323
+ */
324
+ export interface RuleADR {
325
+ /** ADR number */
326
+ number: number;
327
+ /** Title */
328
+ title: string;
329
+ /** Decision */
330
+ decision: string;
331
+ /** Rationale */
332
+ rationale: string;
333
+ /** Change applied */
334
+ change: RuleChange;
335
+ /** A/B test results */
336
+ testResult: ABTestResult;
337
+ /** Date */
338
+ date: number;
339
+ }
340
+ /**
341
+ * Guidance Control Plane configuration
342
+ */
343
+ export interface GuidanceControlPlaneConfig {
344
+ /** Path to root CLAUDE.md */
345
+ rootGuidancePath: string;
346
+ /** Path to CLAUDE.local.md (optional) */
347
+ localGuidancePath?: string;
348
+ /** Gate configuration */
349
+ gates: Partial<GateConfig>;
350
+ /** Maximum shards to retrieve per task */
351
+ maxShardsPerTask: number;
352
+ /** Optimization cycle (in days) */
353
+ optimizationCycleDays: number;
354
+ /** Data directory for ledger and state */
355
+ dataDir: string;
356
+ /** Enable headless mode integration */
357
+ headlessMode: boolean;
358
+ }
359
+ /**
360
+ * Control plane status
361
+ */
362
+ export interface ControlPlaneStatus {
363
+ /** Whether initialized */
364
+ initialized: boolean;
365
+ /** Constitution loaded */
366
+ constitutionLoaded: boolean;
367
+ /** Number of shards available */
368
+ shardCount: number;
369
+ /** Number of gates active */
370
+ activeGates: number;
371
+ /** Ledger event count */
372
+ ledgerEventCount: number;
373
+ /** Last optimization run */
374
+ lastOptimizationRun: number | null;
375
+ /** Metrics summary */
376
+ metrics: OptimizationMetrics | null;
377
+ }
378
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Guidance Control Plane - Type Definitions
3
+ *
4
+ * Types for the guidance compiler, shard retriever, enforcement gates,
5
+ * run ledger, evaluators, and optimizer loop.
6
+ *
7
+ * @module @claude-flow/guidance/types
8
+ */
9
+ export {};
10
+ //# sourceMappingURL=types.js.map