-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchitty-cli.ts
More file actions
executable file
·452 lines (389 loc) · 11.4 KB
/
chitty-cli.ts
File metadata and controls
executable file
·452 lines (389 loc) · 11.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
#!/usr/bin/env ts-node
/**
* ChittyID CLI - TypeScript Production Implementation
*
* CRITICAL: Only mints IDs from canonical service (id.chitty.cc)
* NO LOCAL GENERATION ALLOWED
*
* Usage (as Claude slash commands):
* /chitty gen person
* /chitty register person '{"name":"Kimber","email":"kimber@vanguardassociates.com"}'
* /chitty validate 01-1-ABC-1234-1-2025A-1-0
*
* Environment:
* CHITTY_BASE_URL - Canonical service URL (default: https://id.chitty.cc)
* CHITTY_API_KEY - Authentication key for API access
*
* Endpoints:
* POST /v1/identity/chitty-id - Generate new ChittyID
* POST /v1/evidence/items - Register evidence
* GET /v1/verify/status - Validate ChittyID
*/
import * as fs from 'fs/promises';
import * as path from 'path';
import * as crypto from 'crypto';
// Environment configuration
const BASE = process.env.CHITTY_BASE_URL || 'https://id.chitty.cc';
const KEY = process.env.CHITTY_API_KEY;
const STORAGE_DIR = process.env.CHITTY_STORAGE || path.join(process.env.HOME || '.', '.chitty');
if (!KEY) {
console.error('ERROR: CHITTY_API_KEY environment variable is required');
process.exit(1);
}
// Request headers with authentication
const headers = {
'Content-Type': 'application/json',
'Authorization': `Bearer ${KEY}`,
'User-Agent': 'ChittyCLI/2.0.0-ts',
'X-ChittyOS-CLI': 'true'
};
/**
* ChittyID validation patterns
*/
const CHITTYID_PATTERNS = {
// Canonical structured format: VV-G-LLL-SSSS-T-YM-C-X
structured: /^[A-Z0-9]{2}-\d-[A-Z]{3}-\d{4}-[PLTE]-\d{2,4}-\d-\d{2}$/,
// Legacy UUID format: chitty_<uuid>
uuid: /^chitty_[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i,
// Extended format for compatibility
extended: /^[A-Z0-9]{2}-[A-Z0-9]-[A-Z0-9]{3}-[A-Z0-9]{4}-[A-Z0-9]-[A-Z0-9]{4}-[A-Z0-9]-[A-Z0-9]$/
};
/**
* Validate ChittyID format
*/
function isChittyId(id: string): boolean {
return Object.values(CHITTYID_PATTERNS).some(pattern => pattern.test(id));
}
/**
* Detect ChittyID format type
*/
function detectFormat(id: string): 'structured' | 'uuid' | 'extended' | 'unknown' {
if (CHITTYID_PATTERNS.structured.test(id)) return 'structured';
if (CHITTYID_PATTERNS.uuid.test(id)) return 'uuid';
if (CHITTYID_PATTERNS.extended.test(id)) return 'extended';
return 'unknown';
}
/**
* Calculate Mod-97 checksum for validation
*/
function calculateChecksum(payload: string): number {
let sum = 0;
for (const char of payload) {
if (/\d/.test(char)) {
sum += parseInt(char);
} else if (/[A-Z]/.test(char)) {
sum += char.charCodeAt(0) - 64; // A=1, B=2, etc.
}
}
return 98 - (sum % 97);
}
/**
* Generate new ChittyID from canonical service
* ENFORCES: No local generation - only mint from id.chitty.cc
*/
async function gen(type: string = 'generic'): Promise<void> {
try {
console.log(`🔄 Requesting ChittyID generation for type: ${type}`);
const res = await fetch(`${BASE}/v1/identity/chitty-id`, {
method: 'POST',
headers,
body: JSON.stringify({
type,
requestor: process.env.USER || 'cli-user',
metadata: {
cli_version: '2.0.0-ts',
timestamp: new Date().toISOString(),
platform: process.platform
}
})
});
const out = await res.json() as any;
if (!res.ok) {
throw new Error(`Service error: ${JSON.stringify(out)}`);
}
// Store in local registry
await storeId(out.chittyId || out.id, {
type,
generated: new Date().toISOString(),
source: 'canonical-service',
response: out
});
console.log(JSON.stringify({
success: true,
chittyId: out.chittyId || out.id,
type,
format: detectFormat(out.chittyId || out.id),
timestamp: new Date().toISOString(),
...out
}, null, 2));
} catch (error: any) {
console.error(JSON.stringify({
success: false,
error: error.message,
type,
timestamp: new Date().toISOString()
}, null, 2));
process.exit(1);
}
}
/**
* Register evidence for ChittyID
*/
async function register(type: string = 'document', payloadJson: string = '{}'): Promise<void> {
try {
const payload = JSON.parse(payloadJson);
console.log(`📝 Registering evidence for type: ${type}`);
const res = await fetch(`${BASE}/v1/evidence/items`, {
method: 'POST',
headers,
body: JSON.stringify({
...payload,
documentType: type,
timestamp: new Date().toISOString(),
registrar: process.env.USER || 'cli-user'
})
});
const out = await res.json() as any;
if (!res.ok) {
throw new Error(`Registration failed: ${JSON.stringify(out)}`);
}
// Store registration
if (out.chittyId || out.id) {
await storeId(out.chittyId || out.id, {
type,
registered: new Date().toISOString(),
evidence: payload,
registrationResponse: out
});
}
console.log(JSON.stringify({
success: true,
type,
timestamp: new Date().toISOString(),
...out
}, null, 2));
} catch (error: any) {
console.error(JSON.stringify({
success: false,
error: error.message,
type,
timestamp: new Date().toISOString()
}, null, 2));
process.exit(1);
}
}
/**
* Validate ChittyID with canonical service
*/
async function validate(id: string): Promise<void> {
try {
// Local format validation first
const format = detectFormat(id);
if (format === 'unknown') {
console.log(JSON.stringify({
ok: false,
error: 'invalid_format',
id,
format: 'unknown',
timestamp: new Date().toISOString()
}, null, 2));
process.exit(2);
}
console.log(`🔍 Validating ChittyID: ${id} (format: ${format})`);
// Canonical verification
const res = await fetch(`${BASE}/v1/verify/status?chitty_id=${encodeURIComponent(id)}`, {
method: 'GET',
headers
});
const out = await res.json() as any;
if (!res.ok) {
// Fallback to worker validation
const workerRes = await fetch(`https://chittyid-mothership.chitty.workers.dev/api/validate`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ id })
});
if (workerRes.ok) {
const workerOut = await workerRes.json() as any;
console.log(JSON.stringify({
ok: workerOut.valid || workerOut.success,
id,
format,
source: 'worker-fallback',
status: workerOut,
timestamp: new Date().toISOString()
}, null, 2));
return;
}
throw new Error(`Validation failed: ${JSON.stringify(out)}`);
}
console.log(JSON.stringify({
ok: true,
id,
format,
source: 'canonical',
status: out,
timestamp: new Date().toISOString()
}, null, 2));
} catch (error: any) {
console.error(JSON.stringify({
ok: false,
error: error.message,
id,
timestamp: new Date().toISOString()
}, null, 2));
process.exit(1);
}
}
/**
* Soft mint - off-chain attestation
*/
async function softMint(id: string): Promise<void> {
try {
console.log(`🔶 Soft minting ChittyID: ${id}`);
const res = await fetch(`${BASE}/mint/soft?id=${encodeURIComponent(id)}`, {
method: 'PATCH',
headers
});
const out = await res.json() as any;
if (!res.ok) {
throw new Error(`Soft mint failed: ${JSON.stringify(out)}`);
}
console.log(JSON.stringify({
success: true,
operation: 'soft_mint',
chittyId: id,
status: 'SOFT_MINTED',
...out
}, null, 2));
} catch (error: any) {
console.error(JSON.stringify({
success: false,
operation: 'soft_mint',
error: error.message,
chittyId: id
}, null, 2));
process.exit(1);
}
}
/**
* Hard mint - on-chain anchoring
*/
async function hardMint(id: string, maxGasWei?: string): Promise<void> {
try {
console.log(`🔷 Hard minting ChittyID: ${id}`);
console.log('⚠️ WARNING: This operation is IRREVERSIBLE and will consume gas');
const res = await fetch(`${BASE}/mint/hard`, {
method: 'POST',
headers,
body: JSON.stringify({
id,
confirmIrreversible: true,
maxGasWei: maxGasWei ? BigInt(maxGasWei).toString() : undefined
})
});
const out = await res.json() as any;
if (!res.ok) {
throw new Error(`Hard mint failed: ${JSON.stringify(out)}`);
}
console.log(JSON.stringify({
success: true,
operation: 'hard_mint',
chittyId: id,
status: 'HARD_MINTED',
txHash: out.txHash,
gas: out.gas,
...out
}, null, 2));
} catch (error: any) {
console.error(JSON.stringify({
success: false,
operation: 'hard_mint',
error: error.message,
chittyId: id
}, null, 2));
process.exit(1);
}
}
/**
* Store ChittyID in local registry
*/
async function storeId(id: string, data: any): Promise<void> {
try {
await fs.mkdir(STORAGE_DIR, { recursive: true });
const registryPath = path.join(STORAGE_DIR, 'registry.json');
let registry: any = {};
try {
const existing = await fs.readFile(registryPath, 'utf8');
registry = JSON.parse(existing);
} catch {
registry = { ids: {}, metadata: { created: new Date().toISOString() } };
}
registry.ids[id] = {
...registry.ids[id],
...data,
lastUpdated: new Date().toISOString()
};
await fs.writeFile(registryPath, JSON.stringify(registry, null, 2));
} catch (error) {
console.error(`Warning: Failed to store locally: ${error}`);
}
}
/**
* Main CLI execution
*/
(async () => {
const [cmd, arg1, arg2] = process.argv.slice(2);
try {
switch (cmd) {
case 'gen':
case 'generate':
await gen(arg1 || 'generic');
break;
case 'register':
await register(arg1 || 'document', arg2 || '{}');
break;
case 'validate':
if (!arg1) throw new Error('ChittyID required for validation');
await validate(arg1);
break;
case 'soft-mint':
if (!arg1) throw new Error('ChittyID required for soft mint');
await softMint(arg1);
break;
case 'hard-mint':
if (!arg1) throw new Error('ChittyID required for hard mint');
await hardMint(arg1, arg2);
break;
default:
console.log(`
ChittyID CLI v2.0.0-ts
====================
Commands:
gen <type> Generate new ChittyID (canonical service only)
register <type> <json> Register evidence for ChittyID
validate <id> Validate ChittyID format and existence
soft-mint <id> Soft mint (off-chain attestation)
hard-mint <id> [maxGas] Hard mint (on-chain anchoring)
Environment:
CHITTY_BASE_URL Service URL (default: https://id.chitty.cc)
CHITTY_API_KEY API authentication key (required)
CHITTY_STORAGE Local storage directory
Examples:
chitty-cli.ts gen person
chitty-cli.ts register person '{"name":"Kimber"}'
chitty-cli.ts validate 01-1-ABC-1234-P-25-1-82
chitty-cli.ts soft-mint 01-1-ABC-1234-P-25-1-82
chitty-cli.ts hard-mint 01-1-ABC-1234-P-25-1-82 1000000000000000
CRITICAL: This CLI enforces central service minting only.
No local ChittyID generation is permitted.
`);
break;
}
} catch (error: any) {
console.error(`Error: ${error.message}`);
process.exit(1);
}
})();