@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.
- package/.claude/settings.json +2 -2
- package/dist/src/commands/hooks.d.ts.map +1 -1
- package/dist/src/commands/hooks.js +45 -5
- package/dist/src/commands/hooks.js.map +1 -1
- package/dist/src/commands/init.d.ts.map +1 -1
- package/dist/src/commands/init.js +80 -9
- package/dist/src/commands/init.js.map +1 -1
- package/dist/src/commands/memory.d.ts.map +1 -1
- package/dist/src/commands/memory.js +221 -2
- package/dist/src/commands/memory.js.map +1 -1
- package/dist/src/commands/plugins.d.ts +1 -0
- package/dist/src/commands/plugins.d.ts.map +1 -1
- package/dist/src/commands/plugins.js +439 -89
- package/dist/src/commands/plugins.js.map +1 -1
- package/dist/src/commands/transfer-store.d.ts +13 -0
- package/dist/src/commands/transfer-store.d.ts.map +1 -0
- package/dist/src/commands/transfer-store.js +428 -0
- package/dist/src/commands/transfer-store.js.map +1 -0
- package/dist/src/init/mcp-generator.d.ts +9 -0
- package/dist/src/init/mcp-generator.d.ts.map +1 -1
- package/dist/src/init/mcp-generator.js +57 -28
- package/dist/src/init/mcp-generator.js.map +1 -1
- package/dist/src/init/settings-generator.d.ts.map +1 -1
- package/dist/src/init/settings-generator.js +4 -2
- package/dist/src/init/settings-generator.js.map +1 -1
- package/dist/src/mcp-tools/index.d.ts +1 -0
- package/dist/src/mcp-tools/index.d.ts.map +1 -1
- package/dist/src/mcp-tools/index.js +1 -0
- package/dist/src/mcp-tools/index.js.map +1 -1
- package/dist/src/mcp-tools/transfer-tools.d.ts +14 -0
- package/dist/src/mcp-tools/transfer-tools.d.ts.map +1 -0
- package/dist/src/mcp-tools/transfer-tools.js +396 -0
- package/dist/src/mcp-tools/transfer-tools.js.map +1 -0
- package/dist/src/plugins/store/discovery.d.ts +73 -0
- package/dist/src/plugins/store/discovery.d.ts.map +1 -0
- package/dist/src/plugins/store/discovery.js +568 -0
- package/dist/src/plugins/store/discovery.js.map +1 -0
- package/dist/src/plugins/store/index.d.ts +76 -0
- package/dist/src/plugins/store/index.d.ts.map +1 -0
- package/dist/src/plugins/store/index.js +141 -0
- package/dist/src/plugins/store/index.js.map +1 -0
- package/dist/src/plugins/store/search.d.ts +46 -0
- package/dist/src/plugins/store/search.d.ts.map +1 -0
- package/dist/src/plugins/store/search.js +230 -0
- package/dist/src/plugins/store/search.js.map +1 -0
- package/dist/src/plugins/store/types.d.ts +274 -0
- package/dist/src/plugins/store/types.d.ts.map +1 -0
- package/dist/src/plugins/store/types.js +7 -0
- package/dist/src/plugins/store/types.js.map +1 -0
- package/dist/src/plugins/tests/demo-plugin-store.d.ts +7 -0
- package/dist/src/plugins/tests/demo-plugin-store.d.ts.map +1 -0
- package/dist/src/plugins/tests/demo-plugin-store.js +126 -0
- package/dist/src/plugins/tests/demo-plugin-store.js.map +1 -0
- package/dist/src/plugins/tests/standalone-test.d.ts +12 -0
- package/dist/src/plugins/tests/standalone-test.d.ts.map +1 -0
- package/dist/src/plugins/tests/standalone-test.js +188 -0
- package/dist/src/plugins/tests/standalone-test.js.map +1 -0
- package/dist/src/plugins/tests/test-plugin-store.d.ts +7 -0
- package/dist/src/plugins/tests/test-plugin-store.d.ts.map +1 -0
- package/dist/src/plugins/tests/test-plugin-store.js +206 -0
- package/dist/src/plugins/tests/test-plugin-store.js.map +1 -0
- package/dist/src/transfer/anonymization/index.d.ts +25 -0
- package/dist/src/transfer/anonymization/index.d.ts.map +1 -0
- package/dist/src/transfer/anonymization/index.js +175 -0
- package/dist/src/transfer/anonymization/index.js.map +1 -0
- package/dist/src/transfer/deploy-seraphine.d.ts +13 -0
- package/dist/src/transfer/deploy-seraphine.d.ts.map +1 -0
- package/dist/src/transfer/deploy-seraphine.js +205 -0
- package/dist/src/transfer/deploy-seraphine.js.map +1 -0
- package/dist/src/transfer/export.d.ts +25 -0
- package/dist/src/transfer/export.d.ts.map +1 -0
- package/dist/src/transfer/export.js +113 -0
- package/dist/src/transfer/export.js.map +1 -0
- package/dist/src/transfer/index.d.ts +12 -0
- package/dist/src/transfer/index.d.ts.map +1 -0
- package/dist/src/transfer/index.js +31 -0
- package/dist/src/transfer/index.js.map +1 -0
- package/dist/src/transfer/ipfs/client.d.ts +31 -0
- package/dist/src/transfer/ipfs/client.d.ts.map +1 -0
- package/dist/src/transfer/ipfs/client.js +74 -0
- package/dist/src/transfer/ipfs/client.js.map +1 -0
- package/dist/src/transfer/ipfs/upload.d.ts +85 -0
- package/dist/src/transfer/ipfs/upload.d.ts.map +1 -0
- package/dist/src/transfer/ipfs/upload.js +319 -0
- package/dist/src/transfer/ipfs/upload.js.map +1 -0
- package/dist/src/transfer/models/seraphine.d.ts +72 -0
- package/dist/src/transfer/models/seraphine.d.ts.map +1 -0
- package/dist/src/transfer/models/seraphine.js +373 -0
- package/dist/src/transfer/models/seraphine.js.map +1 -0
- package/dist/src/transfer/serialization/cfp.d.ts +49 -0
- package/dist/src/transfer/serialization/cfp.d.ts.map +1 -0
- package/dist/src/transfer/serialization/cfp.js +180 -0
- package/dist/src/transfer/serialization/cfp.js.map +1 -0
- package/dist/src/transfer/store/discovery.d.ts +84 -0
- package/dist/src/transfer/store/discovery.d.ts.map +1 -0
- package/dist/src/transfer/store/discovery.js +275 -0
- package/dist/src/transfer/store/discovery.js.map +1 -0
- package/dist/src/transfer/store/download.d.ts +70 -0
- package/dist/src/transfer/store/download.d.ts.map +1 -0
- package/dist/src/transfer/store/download.js +295 -0
- package/dist/src/transfer/store/download.js.map +1 -0
- package/dist/src/transfer/store/index.d.ts +84 -0
- package/dist/src/transfer/store/index.d.ts.map +1 -0
- package/dist/src/transfer/store/index.js +153 -0
- package/dist/src/transfer/store/index.js.map +1 -0
- package/dist/src/transfer/store/publish.d.ts +76 -0
- package/dist/src/transfer/store/publish.d.ts.map +1 -0
- package/dist/src/transfer/store/publish.js +262 -0
- package/dist/src/transfer/store/publish.js.map +1 -0
- package/dist/src/transfer/store/registry.d.ts +58 -0
- package/dist/src/transfer/store/registry.d.ts.map +1 -0
- package/dist/src/transfer/store/registry.js +285 -0
- package/dist/src/transfer/store/registry.js.map +1 -0
- package/dist/src/transfer/store/search.d.ts +54 -0
- package/dist/src/transfer/store/search.d.ts.map +1 -0
- package/dist/src/transfer/store/search.js +232 -0
- package/dist/src/transfer/store/search.js.map +1 -0
- package/dist/src/transfer/store/tests/standalone-test.d.ts +12 -0
- package/dist/src/transfer/store/tests/standalone-test.d.ts.map +1 -0
- package/dist/src/transfer/store/tests/standalone-test.js +190 -0
- package/dist/src/transfer/store/tests/standalone-test.js.map +1 -0
- package/dist/src/transfer/store/types.d.ts +193 -0
- package/dist/src/transfer/store/types.d.ts.map +1 -0
- package/dist/src/transfer/store/types.js +6 -0
- package/dist/src/transfer/store/types.js.map +1 -0
- package/dist/src/transfer/test-seraphine.d.ts +6 -0
- package/dist/src/transfer/test-seraphine.d.ts.map +1 -0
- package/dist/src/transfer/test-seraphine.js +105 -0
- package/dist/src/transfer/test-seraphine.js.map +1 -0
- package/dist/src/transfer/tests/test-store.d.ts +7 -0
- package/dist/src/transfer/tests/test-store.d.ts.map +1 -0
- package/dist/src/transfer/tests/test-store.js +214 -0
- package/dist/src/transfer/tests/test-store.js.map +1 -0
- package/dist/src/transfer/types.d.ts +245 -0
- package/dist/src/transfer/types.d.ts.map +1 -0
- package/dist/src/transfer/types.js +6 -0
- package/dist/src/transfer/types.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -1
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Transfer Hook Types
|
|
3
|
+
* Core type definitions for pattern export/import and IPFS sharing
|
|
4
|
+
*/
|
|
5
|
+
export type AnonymizationLevel = 'minimal' | 'standard' | 'strict' | 'paranoid';
|
|
6
|
+
export type SerializationFormat = 'cbor' | 'json' | 'msgpack' | 'cbor.gz' | 'cbor.zstd';
|
|
7
|
+
export type PatternType = 'routing' | 'complexity' | 'coverage' | 'trajectory' | 'custom';
|
|
8
|
+
export type ImportStrategy = 'replace' | 'merge' | 'append';
|
|
9
|
+
export type ConflictResolution = 'highest-confidence' | 'newest' | 'oldest' | 'keep-local' | 'keep-remote';
|
|
10
|
+
export type TrustLevel = 'official' | 'verified' | 'community' | 'unverified' | 'untrusted';
|
|
11
|
+
export type PinningService = 'pinata' | 'web3storage' | 'infura' | 'custom';
|
|
12
|
+
/**
|
|
13
|
+
* Pattern metadata
|
|
14
|
+
*/
|
|
15
|
+
export interface PatternMetadata {
|
|
16
|
+
id: string;
|
|
17
|
+
name?: string;
|
|
18
|
+
description?: string;
|
|
19
|
+
author?: AnonymizedAuthor;
|
|
20
|
+
license?: string;
|
|
21
|
+
tags: string[];
|
|
22
|
+
language?: string;
|
|
23
|
+
framework?: string;
|
|
24
|
+
createdAt: string;
|
|
25
|
+
updatedAt: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Anonymized author info
|
|
29
|
+
*/
|
|
30
|
+
export interface AnonymizedAuthor {
|
|
31
|
+
id: string;
|
|
32
|
+
displayName?: string;
|
|
33
|
+
verified: boolean;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Anonymization record
|
|
37
|
+
*/
|
|
38
|
+
export interface AnonymizationRecord {
|
|
39
|
+
level: AnonymizationLevel;
|
|
40
|
+
appliedTransforms: string[];
|
|
41
|
+
piiRedacted: boolean;
|
|
42
|
+
pathsStripped: boolean;
|
|
43
|
+
timestampsGeneralized: boolean;
|
|
44
|
+
checksum: string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Routing pattern
|
|
48
|
+
*/
|
|
49
|
+
export interface RoutingPattern {
|
|
50
|
+
id: string;
|
|
51
|
+
trigger: string;
|
|
52
|
+
action: string;
|
|
53
|
+
confidence: number;
|
|
54
|
+
usageCount: number;
|
|
55
|
+
successRate: number;
|
|
56
|
+
context?: Record<string, unknown>;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Complexity pattern
|
|
60
|
+
*/
|
|
61
|
+
export interface ComplexityPattern {
|
|
62
|
+
id: string;
|
|
63
|
+
pattern: string;
|
|
64
|
+
complexity: number;
|
|
65
|
+
tokens: number;
|
|
66
|
+
frequency: number;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Coverage pattern
|
|
70
|
+
*/
|
|
71
|
+
export interface CoveragePattern {
|
|
72
|
+
id: string;
|
|
73
|
+
domain: string;
|
|
74
|
+
coverage: number;
|
|
75
|
+
gaps: string[];
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Trajectory pattern
|
|
79
|
+
*/
|
|
80
|
+
export interface TrajectoryPattern {
|
|
81
|
+
id: string;
|
|
82
|
+
steps: string[];
|
|
83
|
+
outcome: 'success' | 'failure' | 'partial';
|
|
84
|
+
duration: number;
|
|
85
|
+
learnings: string[];
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* Custom pattern
|
|
89
|
+
*/
|
|
90
|
+
export interface CustomPattern {
|
|
91
|
+
id: string;
|
|
92
|
+
type: string;
|
|
93
|
+
data: Record<string, unknown>;
|
|
94
|
+
metadata: Record<string, unknown>;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* Pattern collection
|
|
98
|
+
*/
|
|
99
|
+
export interface PatternCollection {
|
|
100
|
+
routing: RoutingPattern[];
|
|
101
|
+
complexity: ComplexityPattern[];
|
|
102
|
+
coverage: CoveragePattern[];
|
|
103
|
+
trajectory: TrajectoryPattern[];
|
|
104
|
+
custom: CustomPattern[];
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Statistics with differential privacy
|
|
108
|
+
*/
|
|
109
|
+
export interface PatternStatistics {
|
|
110
|
+
totalPatterns: number;
|
|
111
|
+
avgConfidence: number;
|
|
112
|
+
patternTypes: Record<string, number>;
|
|
113
|
+
timeRange: {
|
|
114
|
+
start: string;
|
|
115
|
+
end: string;
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Ed25519 signature
|
|
120
|
+
*/
|
|
121
|
+
export interface PatternSignature {
|
|
122
|
+
algorithm: 'ed25519';
|
|
123
|
+
publicKey: string;
|
|
124
|
+
signature: string;
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* IPFS metadata
|
|
128
|
+
*/
|
|
129
|
+
export interface IPFSMetadata {
|
|
130
|
+
cid: string;
|
|
131
|
+
pinnedAt: string[];
|
|
132
|
+
gateway: string;
|
|
133
|
+
size: number;
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* Claude Flow Pattern (CFP) format
|
|
137
|
+
*/
|
|
138
|
+
export interface CFPFormat {
|
|
139
|
+
magic: 'CFP1';
|
|
140
|
+
version: string;
|
|
141
|
+
createdAt: string;
|
|
142
|
+
generatedBy: string;
|
|
143
|
+
metadata: PatternMetadata;
|
|
144
|
+
anonymization: AnonymizationRecord;
|
|
145
|
+
patterns: PatternCollection;
|
|
146
|
+
statistics: PatternStatistics;
|
|
147
|
+
signature?: PatternSignature;
|
|
148
|
+
ipfs?: IPFSMetadata;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* Export options
|
|
152
|
+
*/
|
|
153
|
+
export interface ExportOptions {
|
|
154
|
+
output?: string;
|
|
155
|
+
format?: SerializationFormat;
|
|
156
|
+
anonymize?: AnonymizationLevel;
|
|
157
|
+
redactPii?: boolean;
|
|
158
|
+
stripPaths?: boolean;
|
|
159
|
+
types?: PatternType[];
|
|
160
|
+
minConfidence?: number;
|
|
161
|
+
since?: string;
|
|
162
|
+
toIpfs?: boolean;
|
|
163
|
+
pin?: boolean;
|
|
164
|
+
gateway?: string;
|
|
165
|
+
sign?: boolean;
|
|
166
|
+
privateKeyPath?: string;
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* Import options
|
|
170
|
+
*/
|
|
171
|
+
export interface ImportOptions {
|
|
172
|
+
input?: string;
|
|
173
|
+
fromIpfs?: string;
|
|
174
|
+
fromStore?: string;
|
|
175
|
+
version?: string;
|
|
176
|
+
strategy?: ImportStrategy;
|
|
177
|
+
conflictResolution?: ConflictResolution;
|
|
178
|
+
verifySignature?: boolean;
|
|
179
|
+
dryRun?: boolean;
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* Export result
|
|
183
|
+
*/
|
|
184
|
+
export interface ExportResult {
|
|
185
|
+
success: boolean;
|
|
186
|
+
outputPath?: string;
|
|
187
|
+
cid?: string;
|
|
188
|
+
gateway?: string;
|
|
189
|
+
size: number;
|
|
190
|
+
patternCount: number;
|
|
191
|
+
anonymizationLevel: AnonymizationLevel;
|
|
192
|
+
signature?: string;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* Import result
|
|
196
|
+
*/
|
|
197
|
+
export interface ImportResult {
|
|
198
|
+
success: boolean;
|
|
199
|
+
imported: number;
|
|
200
|
+
skipped: number;
|
|
201
|
+
conflicts: number;
|
|
202
|
+
source: string;
|
|
203
|
+
verified: boolean;
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* IPFS config
|
|
207
|
+
*/
|
|
208
|
+
export interface IPFSConfig {
|
|
209
|
+
gateway: string;
|
|
210
|
+
apiEndpoint?: string;
|
|
211
|
+
pinningService?: {
|
|
212
|
+
name: PinningService;
|
|
213
|
+
apiKey: string;
|
|
214
|
+
apiSecret?: string;
|
|
215
|
+
};
|
|
216
|
+
timeout: number;
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* PII detection result
|
|
220
|
+
*/
|
|
221
|
+
export interface PIIDetectionResult {
|
|
222
|
+
found: boolean;
|
|
223
|
+
count: number;
|
|
224
|
+
types: Record<string, number>;
|
|
225
|
+
locations: Array<{
|
|
226
|
+
type: string;
|
|
227
|
+
path: string;
|
|
228
|
+
sample: string;
|
|
229
|
+
severity: 'low' | 'medium' | 'high' | 'critical';
|
|
230
|
+
}>;
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* Verification result
|
|
234
|
+
*/
|
|
235
|
+
export interface VerificationResult {
|
|
236
|
+
valid: boolean;
|
|
237
|
+
signatureValid?: boolean;
|
|
238
|
+
checksumValid: boolean;
|
|
239
|
+
malwareCheck?: {
|
|
240
|
+
safe: boolean;
|
|
241
|
+
warnings: string[];
|
|
242
|
+
};
|
|
243
|
+
trustLevel: TrustLevel;
|
|
244
|
+
}
|
|
245
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/transfer/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/transfer/types.ts"],"names":[],"mappings":"AAAA;;;GAGG"}
|