@claude-flow/cli 3.0.0-alpha.55 → 3.0.0-alpha.57

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 (139) hide show
  1. package/.claude/settings.json +2 -2
  2. package/dist/src/commands/hooks.d.ts.map +1 -1
  3. package/dist/src/commands/hooks.js +45 -5
  4. package/dist/src/commands/hooks.js.map +1 -1
  5. package/dist/src/commands/init.d.ts.map +1 -1
  6. package/dist/src/commands/init.js +80 -9
  7. package/dist/src/commands/init.js.map +1 -1
  8. package/dist/src/commands/memory.d.ts.map +1 -1
  9. package/dist/src/commands/memory.js +221 -2
  10. package/dist/src/commands/memory.js.map +1 -1
  11. package/dist/src/commands/plugins.d.ts +1 -0
  12. package/dist/src/commands/plugins.d.ts.map +1 -1
  13. package/dist/src/commands/plugins.js +439 -89
  14. package/dist/src/commands/plugins.js.map +1 -1
  15. package/dist/src/commands/transfer-store.d.ts +13 -0
  16. package/dist/src/commands/transfer-store.d.ts.map +1 -0
  17. package/dist/src/commands/transfer-store.js +428 -0
  18. package/dist/src/commands/transfer-store.js.map +1 -0
  19. package/dist/src/init/mcp-generator.d.ts +9 -0
  20. package/dist/src/init/mcp-generator.d.ts.map +1 -1
  21. package/dist/src/init/mcp-generator.js +57 -28
  22. package/dist/src/init/mcp-generator.js.map +1 -1
  23. package/dist/src/init/settings-generator.d.ts.map +1 -1
  24. package/dist/src/init/settings-generator.js +4 -2
  25. package/dist/src/init/settings-generator.js.map +1 -1
  26. package/dist/src/mcp-tools/index.d.ts +1 -0
  27. package/dist/src/mcp-tools/index.d.ts.map +1 -1
  28. package/dist/src/mcp-tools/index.js +1 -0
  29. package/dist/src/mcp-tools/index.js.map +1 -1
  30. package/dist/src/mcp-tools/transfer-tools.d.ts +14 -0
  31. package/dist/src/mcp-tools/transfer-tools.d.ts.map +1 -0
  32. package/dist/src/mcp-tools/transfer-tools.js +396 -0
  33. package/dist/src/mcp-tools/transfer-tools.js.map +1 -0
  34. package/dist/src/plugins/store/discovery.d.ts +73 -0
  35. package/dist/src/plugins/store/discovery.d.ts.map +1 -0
  36. package/dist/src/plugins/store/discovery.js +568 -0
  37. package/dist/src/plugins/store/discovery.js.map +1 -0
  38. package/dist/src/plugins/store/index.d.ts +76 -0
  39. package/dist/src/plugins/store/index.d.ts.map +1 -0
  40. package/dist/src/plugins/store/index.js +141 -0
  41. package/dist/src/plugins/store/index.js.map +1 -0
  42. package/dist/src/plugins/store/search.d.ts +46 -0
  43. package/dist/src/plugins/store/search.d.ts.map +1 -0
  44. package/dist/src/plugins/store/search.js +230 -0
  45. package/dist/src/plugins/store/search.js.map +1 -0
  46. package/dist/src/plugins/store/types.d.ts +274 -0
  47. package/dist/src/plugins/store/types.d.ts.map +1 -0
  48. package/dist/src/plugins/store/types.js +7 -0
  49. package/dist/src/plugins/store/types.js.map +1 -0
  50. package/dist/src/plugins/tests/demo-plugin-store.d.ts +7 -0
  51. package/dist/src/plugins/tests/demo-plugin-store.d.ts.map +1 -0
  52. package/dist/src/plugins/tests/demo-plugin-store.js +126 -0
  53. package/dist/src/plugins/tests/demo-plugin-store.js.map +1 -0
  54. package/dist/src/plugins/tests/standalone-test.d.ts +12 -0
  55. package/dist/src/plugins/tests/standalone-test.d.ts.map +1 -0
  56. package/dist/src/plugins/tests/standalone-test.js +188 -0
  57. package/dist/src/plugins/tests/standalone-test.js.map +1 -0
  58. package/dist/src/plugins/tests/test-plugin-store.d.ts +7 -0
  59. package/dist/src/plugins/tests/test-plugin-store.d.ts.map +1 -0
  60. package/dist/src/plugins/tests/test-plugin-store.js +206 -0
  61. package/dist/src/plugins/tests/test-plugin-store.js.map +1 -0
  62. package/dist/src/transfer/anonymization/index.d.ts +25 -0
  63. package/dist/src/transfer/anonymization/index.d.ts.map +1 -0
  64. package/dist/src/transfer/anonymization/index.js +175 -0
  65. package/dist/src/transfer/anonymization/index.js.map +1 -0
  66. package/dist/src/transfer/deploy-seraphine.d.ts +13 -0
  67. package/dist/src/transfer/deploy-seraphine.d.ts.map +1 -0
  68. package/dist/src/transfer/deploy-seraphine.js +205 -0
  69. package/dist/src/transfer/deploy-seraphine.js.map +1 -0
  70. package/dist/src/transfer/export.d.ts +25 -0
  71. package/dist/src/transfer/export.d.ts.map +1 -0
  72. package/dist/src/transfer/export.js +113 -0
  73. package/dist/src/transfer/export.js.map +1 -0
  74. package/dist/src/transfer/index.d.ts +12 -0
  75. package/dist/src/transfer/index.d.ts.map +1 -0
  76. package/dist/src/transfer/index.js +31 -0
  77. package/dist/src/transfer/index.js.map +1 -0
  78. package/dist/src/transfer/ipfs/client.d.ts +31 -0
  79. package/dist/src/transfer/ipfs/client.d.ts.map +1 -0
  80. package/dist/src/transfer/ipfs/client.js +74 -0
  81. package/dist/src/transfer/ipfs/client.js.map +1 -0
  82. package/dist/src/transfer/ipfs/upload.d.ts +85 -0
  83. package/dist/src/transfer/ipfs/upload.d.ts.map +1 -0
  84. package/dist/src/transfer/ipfs/upload.js +319 -0
  85. package/dist/src/transfer/ipfs/upload.js.map +1 -0
  86. package/dist/src/transfer/models/seraphine.d.ts +72 -0
  87. package/dist/src/transfer/models/seraphine.d.ts.map +1 -0
  88. package/dist/src/transfer/models/seraphine.js +373 -0
  89. package/dist/src/transfer/models/seraphine.js.map +1 -0
  90. package/dist/src/transfer/serialization/cfp.d.ts +49 -0
  91. package/dist/src/transfer/serialization/cfp.d.ts.map +1 -0
  92. package/dist/src/transfer/serialization/cfp.js +180 -0
  93. package/dist/src/transfer/serialization/cfp.js.map +1 -0
  94. package/dist/src/transfer/store/discovery.d.ts +84 -0
  95. package/dist/src/transfer/store/discovery.d.ts.map +1 -0
  96. package/dist/src/transfer/store/discovery.js +275 -0
  97. package/dist/src/transfer/store/discovery.js.map +1 -0
  98. package/dist/src/transfer/store/download.d.ts +70 -0
  99. package/dist/src/transfer/store/download.d.ts.map +1 -0
  100. package/dist/src/transfer/store/download.js +295 -0
  101. package/dist/src/transfer/store/download.js.map +1 -0
  102. package/dist/src/transfer/store/index.d.ts +84 -0
  103. package/dist/src/transfer/store/index.d.ts.map +1 -0
  104. package/dist/src/transfer/store/index.js +153 -0
  105. package/dist/src/transfer/store/index.js.map +1 -0
  106. package/dist/src/transfer/store/publish.d.ts +76 -0
  107. package/dist/src/transfer/store/publish.d.ts.map +1 -0
  108. package/dist/src/transfer/store/publish.js +262 -0
  109. package/dist/src/transfer/store/publish.js.map +1 -0
  110. package/dist/src/transfer/store/registry.d.ts +58 -0
  111. package/dist/src/transfer/store/registry.d.ts.map +1 -0
  112. package/dist/src/transfer/store/registry.js +285 -0
  113. package/dist/src/transfer/store/registry.js.map +1 -0
  114. package/dist/src/transfer/store/search.d.ts +54 -0
  115. package/dist/src/transfer/store/search.d.ts.map +1 -0
  116. package/dist/src/transfer/store/search.js +232 -0
  117. package/dist/src/transfer/store/search.js.map +1 -0
  118. package/dist/src/transfer/store/tests/standalone-test.d.ts +12 -0
  119. package/dist/src/transfer/store/tests/standalone-test.d.ts.map +1 -0
  120. package/dist/src/transfer/store/tests/standalone-test.js +190 -0
  121. package/dist/src/transfer/store/tests/standalone-test.js.map +1 -0
  122. package/dist/src/transfer/store/types.d.ts +193 -0
  123. package/dist/src/transfer/store/types.d.ts.map +1 -0
  124. package/dist/src/transfer/store/types.js +6 -0
  125. package/dist/src/transfer/store/types.js.map +1 -0
  126. package/dist/src/transfer/test-seraphine.d.ts +6 -0
  127. package/dist/src/transfer/test-seraphine.d.ts.map +1 -0
  128. package/dist/src/transfer/test-seraphine.js +105 -0
  129. package/dist/src/transfer/test-seraphine.js.map +1 -0
  130. package/dist/src/transfer/tests/test-store.d.ts +7 -0
  131. package/dist/src/transfer/tests/test-store.d.ts.map +1 -0
  132. package/dist/src/transfer/tests/test-store.js +214 -0
  133. package/dist/src/transfer/tests/test-store.js.map +1 -0
  134. package/dist/src/transfer/types.d.ts +245 -0
  135. package/dist/src/transfer/types.d.ts.map +1 -0
  136. package/dist/src/transfer/types.js +6 -0
  137. package/dist/src/transfer/types.js.map +1 -0
  138. package/dist/tsconfig.tsbuildinfo +1 -1
  139. package/package.json +3 -1
@@ -0,0 +1,373 @@
1
+ /**
2
+ * Seraphine Genesis Model
3
+ * The first Claude Flow pattern model - "Hello World" for pattern sharing
4
+ *
5
+ * Seraphine represents the foundational patterns for intelligent agent coordination.
6
+ * Named after the Greek "Seraphim" (burning ones), symbolizing the spark of knowledge
7
+ * that ignites collaborative AI intelligence.
8
+ */
9
+ import { createCFP } from '../serialization/cfp.js';
10
+ /**
11
+ * Seraphine model version
12
+ */
13
+ export const SERAPHINE_VERSION = '1.0.0';
14
+ /**
15
+ * Seraphine model metadata
16
+ */
17
+ export const SERAPHINE_METADATA = {
18
+ name: 'seraphine-genesis',
19
+ displayName: 'Seraphine Genesis',
20
+ description: 'The foundational Claude Flow pattern model. Contains core routing patterns, complexity heuristics, and coordination trajectories for multi-agent swarms.',
21
+ author: {
22
+ id: 'claude-flow-team',
23
+ displayName: 'Claude Flow Team',
24
+ },
25
+ license: 'MIT',
26
+ tags: [
27
+ 'genesis',
28
+ 'foundational',
29
+ 'routing',
30
+ 'swarm',
31
+ 'coordination',
32
+ 'multi-agent',
33
+ 'hello-world',
34
+ ],
35
+ language: 'typescript',
36
+ framework: 'claude-flow',
37
+ };
38
+ /**
39
+ * Core routing patterns for Seraphine
40
+ * These define how tasks are routed to appropriate agents
41
+ */
42
+ export const SERAPHINE_ROUTING_PATTERNS = [
43
+ {
44
+ id: 'route-code-to-coder',
45
+ trigger: 'implement|code|write|create function|build feature',
46
+ action: 'spawn coder agent',
47
+ confidence: 0.95,
48
+ usageCount: 1000,
49
+ successRate: 0.92,
50
+ context: {
51
+ category: 'development',
52
+ priority: 'high',
53
+ },
54
+ },
55
+ {
56
+ id: 'route-test-to-tester',
57
+ trigger: 'test|validate|verify|check|ensure quality',
58
+ action: 'spawn tester agent',
59
+ confidence: 0.93,
60
+ usageCount: 850,
61
+ successRate: 0.89,
62
+ context: {
63
+ category: 'quality',
64
+ priority: 'high',
65
+ },
66
+ },
67
+ {
68
+ id: 'route-review-to-reviewer',
69
+ trigger: 'review|audit|analyze code|check security',
70
+ action: 'spawn reviewer agent',
71
+ confidence: 0.91,
72
+ usageCount: 720,
73
+ successRate: 0.87,
74
+ context: {
75
+ category: 'quality',
76
+ priority: 'medium',
77
+ },
78
+ },
79
+ {
80
+ id: 'route-research-to-researcher',
81
+ trigger: 'research|investigate|explore|find|search codebase',
82
+ action: 'spawn researcher agent',
83
+ confidence: 0.94,
84
+ usageCount: 680,
85
+ successRate: 0.91,
86
+ context: {
87
+ category: 'discovery',
88
+ priority: 'medium',
89
+ },
90
+ },
91
+ {
92
+ id: 'route-architecture-to-architect',
93
+ trigger: 'design|architect|plan structure|refactor system',
94
+ action: 'spawn architect agent',
95
+ confidence: 0.88,
96
+ usageCount: 420,
97
+ successRate: 0.85,
98
+ context: {
99
+ category: 'design',
100
+ priority: 'high',
101
+ },
102
+ },
103
+ {
104
+ id: 'route-complex-to-swarm',
105
+ trigger: 'complex task|multi-file|feature implementation|major refactor',
106
+ action: 'initialize hierarchical swarm',
107
+ confidence: 0.87,
108
+ usageCount: 350,
109
+ successRate: 0.82,
110
+ context: {
111
+ category: 'coordination',
112
+ priority: 'critical',
113
+ agentCount: 5,
114
+ },
115
+ },
116
+ {
117
+ id: 'route-security-to-auditor',
118
+ trigger: 'security|vulnerability|CVE|threat|penetration',
119
+ action: 'spawn security-architect agent',
120
+ confidence: 0.96,
121
+ usageCount: 280,
122
+ successRate: 0.94,
123
+ context: {
124
+ category: 'security',
125
+ priority: 'critical',
126
+ },
127
+ },
128
+ {
129
+ id: 'route-performance-to-optimizer',
130
+ trigger: 'optimize|performance|speed|memory|benchmark',
131
+ action: 'spawn performance-engineer agent',
132
+ confidence: 0.89,
133
+ usageCount: 310,
134
+ successRate: 0.86,
135
+ context: {
136
+ category: 'optimization',
137
+ priority: 'high',
138
+ },
139
+ },
140
+ ];
141
+ /**
142
+ * Complexity heuristics for Seraphine
143
+ * These help estimate task complexity for resource allocation
144
+ */
145
+ export const SERAPHINE_COMPLEXITY_PATTERNS = [
146
+ {
147
+ id: 'complexity-single-file',
148
+ pattern: 'single file modification',
149
+ complexity: 1,
150
+ tokens: 500,
151
+ frequency: 0.45,
152
+ },
153
+ {
154
+ id: 'complexity-multi-file',
155
+ pattern: 'multiple file changes (2-5 files)',
156
+ complexity: 3,
157
+ tokens: 2000,
158
+ frequency: 0.35,
159
+ },
160
+ {
161
+ id: 'complexity-feature',
162
+ pattern: 'new feature implementation',
163
+ complexity: 5,
164
+ tokens: 5000,
165
+ frequency: 0.12,
166
+ },
167
+ {
168
+ id: 'complexity-refactor',
169
+ pattern: 'system-wide refactoring',
170
+ complexity: 8,
171
+ tokens: 10000,
172
+ frequency: 0.05,
173
+ },
174
+ {
175
+ id: 'complexity-migration',
176
+ pattern: 'major version migration',
177
+ complexity: 10,
178
+ tokens: 20000,
179
+ frequency: 0.03,
180
+ },
181
+ ];
182
+ /**
183
+ * Coverage patterns for Seraphine
184
+ * These track knowledge domain coverage
185
+ */
186
+ export const SERAPHINE_COVERAGE_PATTERNS = [
187
+ {
188
+ id: 'coverage-typescript',
189
+ domain: 'TypeScript Development',
190
+ coverage: 0.92,
191
+ gaps: ['advanced generics', 'decorators'],
192
+ },
193
+ {
194
+ id: 'coverage-testing',
195
+ domain: 'Testing & QA',
196
+ coverage: 0.88,
197
+ gaps: ['e2e testing', 'visual regression'],
198
+ },
199
+ {
200
+ id: 'coverage-security',
201
+ domain: 'Security Analysis',
202
+ coverage: 0.85,
203
+ gaps: ['supply chain', 'zero-day detection'],
204
+ },
205
+ {
206
+ id: 'coverage-swarm',
207
+ domain: 'Multi-Agent Coordination',
208
+ coverage: 0.90,
209
+ gaps: ['byzantine consensus', 'network partitions'],
210
+ },
211
+ ];
212
+ /**
213
+ * Trajectory patterns for Seraphine
214
+ * These capture successful task execution paths
215
+ */
216
+ export const SERAPHINE_TRAJECTORY_PATTERNS = [
217
+ {
218
+ id: 'traj-bug-fix',
219
+ steps: [
220
+ 'research: identify bug location',
221
+ 'coder: implement fix',
222
+ 'tester: write regression test',
223
+ 'reviewer: verify fix quality',
224
+ ],
225
+ outcome: 'success',
226
+ duration: 1800000, // 30 minutes
227
+ learnings: [
228
+ 'Always add regression test for bug fixes',
229
+ 'Review similar code for same bug pattern',
230
+ ],
231
+ },
232
+ {
233
+ id: 'traj-feature-impl',
234
+ steps: [
235
+ 'architect: design feature structure',
236
+ 'researcher: analyze existing patterns',
237
+ 'coder: implement feature',
238
+ 'tester: write comprehensive tests',
239
+ 'reviewer: security and quality review',
240
+ 'coder: address review feedback',
241
+ ],
242
+ outcome: 'success',
243
+ duration: 7200000, // 2 hours
244
+ learnings: [
245
+ 'Design before implementation reduces rework',
246
+ 'Parallel testing accelerates delivery',
247
+ ],
248
+ },
249
+ {
250
+ id: 'traj-refactor',
251
+ steps: [
252
+ 'researcher: map affected code',
253
+ 'architect: plan refactoring strategy',
254
+ 'tester: ensure test coverage exists',
255
+ 'coder: incremental refactoring',
256
+ 'tester: verify no regressions',
257
+ 'reviewer: architectural review',
258
+ ],
259
+ outcome: 'success',
260
+ duration: 10800000, // 3 hours
261
+ learnings: [
262
+ 'Test coverage before refactoring is critical',
263
+ 'Small incremental changes are safer',
264
+ ],
265
+ },
266
+ {
267
+ id: 'traj-security-audit',
268
+ steps: [
269
+ 'security-architect: threat modeling',
270
+ 'researcher: dependency analysis',
271
+ 'security-auditor: code scanning',
272
+ 'coder: remediation',
273
+ 'security-architect: verification',
274
+ ],
275
+ outcome: 'success',
276
+ duration: 14400000, // 4 hours
277
+ learnings: [
278
+ 'Automated scanning catches common issues',
279
+ 'Manual review needed for logic flaws',
280
+ ],
281
+ },
282
+ ];
283
+ /**
284
+ * Custom patterns for Seraphine
285
+ * These are specialized patterns unique to Seraphine
286
+ */
287
+ export const SERAPHINE_CUSTOM_PATTERNS = [
288
+ {
289
+ id: 'custom-swarm-topology',
290
+ type: 'topology-recommendation',
291
+ data: {
292
+ taskType: 'feature-implementation',
293
+ recommendedTopology: 'hierarchical',
294
+ agentRoles: ['coordinator', 'architect', 'coder', 'tester', 'reviewer'],
295
+ communicationPattern: 'hub-spoke',
296
+ },
297
+ metadata: {
298
+ confidence: 0.89,
299
+ source: 'production-data',
300
+ },
301
+ },
302
+ {
303
+ id: 'custom-memory-strategy',
304
+ type: 'memory-optimization',
305
+ data: {
306
+ pattern: 'vector-search-first',
307
+ hnswParams: { m: 16, efConstruction: 200 },
308
+ cacheStrategy: 'lru-with-embedding',
309
+ },
310
+ metadata: {
311
+ speedup: '150x',
312
+ memoryReduction: '60%',
313
+ },
314
+ },
315
+ {
316
+ id: 'custom-hello-world',
317
+ type: 'greeting',
318
+ data: {
319
+ message: 'Hello, World! Welcome to Claude Flow pattern sharing.',
320
+ version: SERAPHINE_VERSION,
321
+ genesis: true,
322
+ },
323
+ metadata: {
324
+ significance: 'First pattern ever exported via transfer hook system',
325
+ timestamp: new Date().toISOString(),
326
+ },
327
+ },
328
+ ];
329
+ /**
330
+ * Create the complete Seraphine pattern collection
331
+ */
332
+ export function createSeraphinePatterns() {
333
+ return {
334
+ routing: SERAPHINE_ROUTING_PATTERNS,
335
+ complexity: SERAPHINE_COMPLEXITY_PATTERNS,
336
+ coverage: SERAPHINE_COVERAGE_PATTERNS,
337
+ trajectory: SERAPHINE_TRAJECTORY_PATTERNS,
338
+ custom: SERAPHINE_CUSTOM_PATTERNS,
339
+ };
340
+ }
341
+ /**
342
+ * Create the Seraphine Genesis CFP document
343
+ */
344
+ export function createSeraphineGenesis() {
345
+ return createCFP({
346
+ name: SERAPHINE_METADATA.name,
347
+ description: SERAPHINE_METADATA.description,
348
+ patterns: createSeraphinePatterns(),
349
+ author: SERAPHINE_METADATA.author,
350
+ license: SERAPHINE_METADATA.license,
351
+ tags: SERAPHINE_METADATA.tags,
352
+ language: SERAPHINE_METADATA.language,
353
+ framework: SERAPHINE_METADATA.framework,
354
+ });
355
+ }
356
+ /**
357
+ * Get Seraphine model info
358
+ */
359
+ export function getSeraphineInfo() {
360
+ return {
361
+ name: SERAPHINE_METADATA.displayName,
362
+ version: SERAPHINE_VERSION,
363
+ description: SERAPHINE_METADATA.description,
364
+ patternCounts: {
365
+ routing: SERAPHINE_ROUTING_PATTERNS.length,
366
+ complexity: SERAPHINE_COMPLEXITY_PATTERNS.length,
367
+ coverage: SERAPHINE_COVERAGE_PATTERNS.length,
368
+ trajectory: SERAPHINE_TRAJECTORY_PATTERNS.length,
369
+ custom: SERAPHINE_CUSTOM_PATTERNS.length,
370
+ },
371
+ };
372
+ }
373
+ //# sourceMappingURL=seraphine.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"seraphine.js","sourceRoot":"","sources":["../../../../src/transfer/models/seraphine.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,49 @@
1
+ /**
2
+ * CFP Format Serializer
3
+ * Claude Flow Pattern format serialization
4
+ */
5
+ import type { CFPFormat, SerializationFormat, PatternCollection } from '../types.js';
6
+ /**
7
+ * Create a new CFP document
8
+ */
9
+ export declare function createCFP(options: {
10
+ name: string;
11
+ description: string;
12
+ patterns: PatternCollection;
13
+ author?: {
14
+ id: string;
15
+ displayName?: string;
16
+ };
17
+ license?: string;
18
+ tags?: string[];
19
+ language?: string;
20
+ framework?: string;
21
+ }): CFPFormat;
22
+ /**
23
+ * Serialize CFP to JSON string
24
+ */
25
+ export declare function serializeToJson(cfp: CFPFormat): string;
26
+ /**
27
+ * Serialize CFP to Buffer (for CBOR/binary formats)
28
+ */
29
+ export declare function serializeToBuffer(cfp: CFPFormat, format: SerializationFormat): Buffer;
30
+ /**
31
+ * Deserialize CFP from string/buffer
32
+ */
33
+ export declare function deserializeCFP(data: string | Buffer): CFPFormat;
34
+ /**
35
+ * Validate CFP document
36
+ */
37
+ export declare function validateCFP(cfp: CFPFormat): {
38
+ valid: boolean;
39
+ errors: string[];
40
+ };
41
+ /**
42
+ * Get file extension for format
43
+ */
44
+ export declare function getFileExtension(format: SerializationFormat): string;
45
+ /**
46
+ * Detect format from file path
47
+ */
48
+ export declare function detectFormat(filePath: string): SerializationFormat;
49
+ //# sourceMappingURL=cfp.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cfp.d.ts","sourceRoot":"","sources":["../../../../src/transfer/serialization/cfp.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAOrF;;GAEG;AACH,wBAAgB,SAAS,CAAC,OAAO,EAAE;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,iBAAiB,CAAC;IAC5B,MAAM,CAAC,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9C,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,SAAS,CAwCZ;AAiCD;;GAEG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,SAAS,GAAG,MAAM,CAetD;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,SAAS,EAAE,MAAM,EAAE,mBAAmB,GAAG,MAAM,CAkBrF;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAU/D;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,GAAG,EAAE,SAAS,GAAG;IAAE,KAAK,EAAE,OAAO,CAAC;IAAC,MAAM,EAAE,MAAM,EAAE,CAAA;CAAE,CAuBhF;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,mBAAmB,GAAG,MAAM,CAepE;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,mBAAmB,CAMlE"}
@@ -0,0 +1,180 @@
1
+ /**
2
+ * CFP Format Serializer
3
+ * Claude Flow Pattern format serialization
4
+ */
5
+ import * as crypto from 'crypto';
6
+ // Version info
7
+ const CFP_VERSION = '1.0.0';
8
+ const GENERATOR = 'claude-flow@3.0.0-alpha';
9
+ /**
10
+ * Create a new CFP document
11
+ */
12
+ export function createCFP(options) {
13
+ const now = new Date().toISOString();
14
+ const id = crypto.randomUUID();
15
+ return {
16
+ magic: 'CFP1',
17
+ version: CFP_VERSION,
18
+ createdAt: now,
19
+ generatedBy: GENERATOR,
20
+ metadata: {
21
+ id,
22
+ name: options.name,
23
+ description: options.description,
24
+ author: options.author ? {
25
+ id: options.author.id,
26
+ displayName: options.author.displayName,
27
+ verified: false,
28
+ } : undefined,
29
+ license: options.license || 'MIT',
30
+ tags: options.tags || [],
31
+ language: options.language,
32
+ framework: options.framework,
33
+ createdAt: now,
34
+ updatedAt: now,
35
+ },
36
+ anonymization: {
37
+ level: 'minimal',
38
+ appliedTransforms: [],
39
+ piiRedacted: false,
40
+ pathsStripped: false,
41
+ timestampsGeneralized: false,
42
+ checksum: '',
43
+ },
44
+ patterns: options.patterns,
45
+ statistics: calculateStatistics(options.patterns),
46
+ };
47
+ }
48
+ /**
49
+ * Calculate pattern statistics
50
+ */
51
+ function calculateStatistics(patterns) {
52
+ const counts = {
53
+ routing: patterns.routing.length,
54
+ complexity: patterns.complexity.length,
55
+ coverage: patterns.coverage.length,
56
+ trajectory: patterns.trajectory.length,
57
+ custom: patterns.custom.length,
58
+ };
59
+ const total = Object.values(counts).reduce((a, b) => a + b, 0);
60
+ // Calculate average confidence from routing patterns
61
+ const confidences = patterns.routing.map(p => p.confidence);
62
+ const avgConfidence = confidences.length > 0
63
+ ? confidences.reduce((a, b) => a + b, 0) / confidences.length
64
+ : 0;
65
+ return {
66
+ totalPatterns: total,
67
+ avgConfidence,
68
+ patternTypes: counts,
69
+ timeRange: {
70
+ start: new Date().toISOString(),
71
+ end: new Date().toISOString(),
72
+ },
73
+ };
74
+ }
75
+ /**
76
+ * Serialize CFP to JSON string
77
+ */
78
+ export function serializeToJson(cfp) {
79
+ // Calculate checksum before serialization
80
+ const content = JSON.stringify({
81
+ magic: cfp.magic,
82
+ version: cfp.version,
83
+ metadata: cfp.metadata,
84
+ patterns: cfp.patterns,
85
+ });
86
+ cfp.anonymization.checksum = crypto
87
+ .createHash('sha256')
88
+ .update(content)
89
+ .digest('hex');
90
+ return JSON.stringify(cfp, null, 2);
91
+ }
92
+ /**
93
+ * Serialize CFP to Buffer (for CBOR/binary formats)
94
+ */
95
+ export function serializeToBuffer(cfp, format) {
96
+ // For now, just use JSON - in production, would use cbor-x or msgpack
97
+ const json = serializeToJson(cfp);
98
+ switch (format) {
99
+ case 'json':
100
+ return Buffer.from(json, 'utf-8');
101
+ case 'cbor':
102
+ case 'cbor.gz':
103
+ case 'cbor.zstd':
104
+ case 'msgpack':
105
+ // Fallback to JSON for now
106
+ // In production: use cbor-x, msgpack-lite, etc.
107
+ console.warn(`Format ${format} not implemented, using JSON`);
108
+ return Buffer.from(json, 'utf-8');
109
+ default:
110
+ return Buffer.from(json, 'utf-8');
111
+ }
112
+ }
113
+ /**
114
+ * Deserialize CFP from string/buffer
115
+ */
116
+ export function deserializeCFP(data) {
117
+ const str = typeof data === 'string' ? data : data.toString('utf-8');
118
+ const parsed = JSON.parse(str);
119
+ // Validate magic bytes
120
+ if (parsed.magic !== 'CFP1') {
121
+ throw new Error(`Invalid CFP format: expected magic 'CFP1', got '${parsed.magic}'`);
122
+ }
123
+ return parsed;
124
+ }
125
+ /**
126
+ * Validate CFP document
127
+ */
128
+ export function validateCFP(cfp) {
129
+ const errors = [];
130
+ if (cfp.magic !== 'CFP1') {
131
+ errors.push(`Invalid magic bytes: ${cfp.magic}`);
132
+ }
133
+ if (!cfp.version) {
134
+ errors.push('Missing version');
135
+ }
136
+ if (!cfp.metadata?.id) {
137
+ errors.push('Missing metadata.id');
138
+ }
139
+ if (!cfp.patterns) {
140
+ errors.push('Missing patterns');
141
+ }
142
+ return {
143
+ valid: errors.length === 0,
144
+ errors,
145
+ };
146
+ }
147
+ /**
148
+ * Get file extension for format
149
+ */
150
+ export function getFileExtension(format) {
151
+ switch (format) {
152
+ case 'json':
153
+ return '.cfp.json';
154
+ case 'cbor':
155
+ return '.cfp';
156
+ case 'cbor.gz':
157
+ return '.cfp.gz';
158
+ case 'cbor.zstd':
159
+ return '.cfp.zst';
160
+ case 'msgpack':
161
+ return '.cfp.mp';
162
+ default:
163
+ return '.cfp';
164
+ }
165
+ }
166
+ /**
167
+ * Detect format from file path
168
+ */
169
+ export function detectFormat(filePath) {
170
+ if (filePath.endsWith('.cfp.json'))
171
+ return 'json';
172
+ if (filePath.endsWith('.cfp.gz'))
173
+ return 'cbor.gz';
174
+ if (filePath.endsWith('.cfp.zst'))
175
+ return 'cbor.zstd';
176
+ if (filePath.endsWith('.cfp.mp'))
177
+ return 'msgpack';
178
+ return 'cbor';
179
+ }
180
+ //# sourceMappingURL=cfp.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cfp.js","sourceRoot":"","sources":["../../../../src/transfer/serialization/cfp.ts"],"names":[],"mappings":"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"}