-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtoolpath.schema.json
More file actions
490 lines (466 loc) · 13.8 KB
/
toolpath.schema.json
File metadata and controls
490 lines (466 loc) · 13.8 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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://toolpath.dev/schema/toolpath.schema.json",
"title": "Toolpath",
"description": "A tool-agnostic format for tracking artifact transformation provenance",
"$defs": {
"timestamp": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp"
},
"actorRef": {
"type": "string",
"pattern": "^(human|agent|tool|ci):[a-zA-Z0-9_-]+(\/[a-zA-Z0-9_.-]+)?$",
"description": "Actor reference string (e.g., 'human:alex', 'agent:claude-code', 'tool:rustfmt/1.5.0')",
"examples": ["human:alex", "agent:claude-code", "tool:rustfmt", "ci:github-actions"]
},
"identity": {
"type": "object",
"description": "External identity reference",
"properties": {
"system": {
"type": "string",
"description": "Identity system (e.g., 'github', 'email', 'orcid')",
"examples": ["github", "gitlab", "email", "twitter", "orcid", "crates.io", "npm", "anthropic"]
},
"id": {
"type": "string",
"description": "Identifier within the system"
}
},
"required": ["system", "id"],
"additionalProperties": false
},
"key": {
"type": "object",
"description": "Cryptographic key reference",
"properties": {
"type": {
"type": "string",
"enum": ["gpg", "ssh", "sigstore"],
"description": "Key type"
},
"fingerprint": {
"type": "string",
"description": "Key fingerprint or identifier"
},
"href": {
"type": "string",
"format": "uri",
"description": "URL to retrieve the public key"
}
},
"required": ["type", "fingerprint"],
"additionalProperties": false
},
"actorDefinition": {
"type": "object",
"description": "Full actor definition with identity and key information",
"properties": {
"name": {
"type": "string",
"description": "Display name"
},
"provider": {
"type": "string",
"description": "Provider (for agents)"
},
"model": {
"type": "string",
"description": "Model identifier (for agents)"
},
"identities": {
"type": "array",
"items": { "$ref": "#/$defs/identity" },
"description": "External identities"
},
"keys": {
"type": "array",
"items": { "$ref": "#/$defs/key" },
"description": "Cryptographic keys"
}
},
"additionalProperties": false
},
"actors": {
"type": "object",
"description": "Map of actor references to their definitions",
"propertyNames": { "$ref": "#/$defs/actorRef" },
"additionalProperties": { "$ref": "#/$defs/actorDefinition" }
},
"signature": {
"type": "object",
"description": "Cryptographic signature",
"properties": {
"signer": {
"$ref": "#/$defs/actorRef",
"description": "Actor who signed"
},
"key": {
"type": "string",
"description": "Key identifier (type:fingerprint)",
"examples": ["gpg:ABCD1234", "ssh:SHA256:abc123"]
},
"scope": {
"type": "string",
"enum": ["author", "reviewer", "witness", "ci", "release"],
"description": "Role of the signer"
},
"timestamp": {
"$ref": "#/$defs/timestamp",
"description": "When the signature was created"
},
"sig": {
"type": "string",
"description": "The signature data"
}
},
"required": ["signer", "key", "scope", "sig"],
"additionalProperties": false
},
"ref": {
"type": "object",
"description": "Reference to external resource",
"properties": {
"rel": {
"type": "string",
"description": "Relationship type",
"examples": ["fixes", "implements", "references", "milestone", "changelog"]
},
"href": {
"type": "string",
"description": "URI of the referenced resource"
}
},
"required": ["rel", "href"],
"additionalProperties": false
},
"artifactChange": {
"type": "object",
"description": "Change to a single artifact with one or more perspectives",
"properties": {
"raw": {
"type": "string",
"description": "Unified Diff format change"
},
"structural": {
"type": "object",
"description": "Language-aware structural operation",
"properties": {
"type": {
"type": "string",
"description": "Operation type (e.g., 'rust.add_items', 'core.replace')"
}
},
"required": ["type"],
"additionalProperties": true
}
},
"anyOf": [
{ "required": ["raw"] },
{ "required": ["structural"] }
],
"additionalProperties": false
},
"change": {
"type": "object",
"description": "Map of artifact URLs to their changes",
"additionalProperties": { "$ref": "#/$defs/artifactChange" }
},
"vcsSource": {
"type": "object",
"description": "Reference to a VCS revision that produced this step",
"properties": {
"type": {
"type": "string",
"description": "VCS type (git, hg, fossil, jj, svn, darcs, etc.)",
"examples": ["git", "hg", "fossil", "jj", "svn", "darcs"]
},
"revision": {
"type": "string",
"description": "Full revision identifier (commit hash, revision number, etc.)"
},
"change_id": {
"type": "string",
"description": "Change ID for VCS systems that distinguish changes from commits (e.g., jj)"
}
},
"required": ["type", "revision"],
"additionalProperties": true
},
"stepMeta": {
"type": "object",
"description": "Optional metadata for a step",
"properties": {
"intent": {
"type": "string",
"description": "Human-readable description of purpose"
},
"source": {
"$ref": "#/$defs/vcsSource",
"description": "VCS revision this step was derived from"
},
"refs": {
"type": "array",
"items": { "$ref": "#/$defs/ref" },
"description": "Links to issues, docs, reasoning"
},
"actors": {
"$ref": "#/$defs/actors",
"description": "Actor definitions (for standalone steps)"
},
"signatures": {
"type": "array",
"items": { "$ref": "#/$defs/signature" },
"description": "Cryptographic signatures"
}
},
"additionalProperties": true
},
"stepIdentity": {
"type": "object",
"description": "Step identity and lineage",
"properties": {
"id": {
"type": "string",
"description": "Unique step identifier"
},
"parents": {
"type": "array",
"items": { "type": "string" },
"description": "Parent step IDs (empty or omitted for root steps)"
},
"actor": {
"$ref": "#/$defs/actorRef",
"description": "Actor who performed this step"
},
"timestamp": {
"$ref": "#/$defs/timestamp",
"description": "When the step was performed"
}
},
"required": ["id", "actor", "timestamp"],
"additionalProperties": false
},
"step": {
"type": "object",
"description": "A single change to one or more artifacts",
"properties": {
"step": {
"$ref": "#/$defs/stepIdentity"
},
"change": {
"$ref": "#/$defs/change"
},
"meta": {
"$ref": "#/$defs/stepMeta"
}
},
"required": ["step", "change"],
"additionalProperties": false
},
"base": {
"type": "object",
"description": "Root context for a path. URI can be a VCS reference (github:, gitlab:, file:) or a toolpath reference (toolpath:path-id/step-id)",
"properties": {
"uri": {
"type": "string",
"description": "Base reference: VCS repo (e.g., 'github:org/repo') or toolpath step (e.g., 'toolpath:path-main/step-005')",
"examples": ["github:org/repo", "svn://server/repo", "file:///path/to/repo", "toolpath:path-main/step-005"]
},
"ref": {
"type": "string",
"description": "VCS state identifier: commit hash, revision number, changeset ID, tag, or branch name. Interpretation depends on the VCS.",
"examples": ["abc123def456", "12345", "v1.0", "main"]
}
},
"required": ["uri"],
"additionalProperties": false
},
"pathIdentity": {
"type": "object",
"description": "Path identity and context",
"properties": {
"id": {
"type": "string",
"description": "Unique path identifier"
},
"base": {
"$ref": "#/$defs/base",
"description": "Root context this path branches from"
},
"head": {
"type": "string",
"description": "Current tip step ID"
}
},
"required": ["id", "base", "head"],
"additionalProperties": false
},
"pathMeta": {
"type": "object",
"description": "Optional metadata for a path",
"properties": {
"title": {
"type": "string",
"description": "Human-readable title"
},
"source": {
"type": "string",
"description": "Source reference (e.g., PR URL)"
},
"intent": {
"type": "string",
"description": "Human-readable description of purpose"
},
"refs": {
"type": "array",
"items": { "$ref": "#/$defs/ref" },
"description": "Links to issues, docs, reasoning"
},
"actors": {
"$ref": "#/$defs/actors",
"description": "Actor definitions shared by steps"
},
"signatures": {
"type": "array",
"items": { "$ref": "#/$defs/signature" },
"description": "Cryptographic signatures"
}
},
"additionalProperties": true
},
"path": {
"type": "object",
"description": "Collection of steps with base context",
"properties": {
"path": {
"$ref": "#/$defs/pathIdentity"
},
"steps": {
"type": "array",
"items": { "$ref": "#/$defs/step" },
"description": "Steps in this path"
},
"meta": {
"$ref": "#/$defs/pathMeta"
}
},
"required": ["path", "steps"],
"additionalProperties": false
},
"pathRef": {
"type": "object",
"description": "Reference to an external path",
"properties": {
"$ref": {
"type": "string",
"format": "uri",
"description": "URL to the external path document"
}
},
"required": ["$ref"],
"additionalProperties": false
},
"pathOrRef": {
"oneOf": [
{ "$ref": "#/$defs/path" },
{ "$ref": "#/$defs/pathRef" }
],
"description": "Either an inline path or a reference to an external path"
},
"graphIdentity": {
"type": "object",
"description": "Graph identity",
"properties": {
"id": {
"type": "string",
"description": "Unique graph identifier"
}
},
"required": ["id"],
"additionalProperties": false
},
"graphMeta": {
"type": "object",
"description": "Optional metadata for a graph",
"properties": {
"title": {
"type": "string",
"description": "Human-readable title"
},
"intent": {
"type": "string",
"description": "Human-readable description of purpose"
},
"refs": {
"type": "array",
"items": { "$ref": "#/$defs/ref" },
"description": "Links to milestones, changelogs, etc."
},
"actors": {
"$ref": "#/$defs/actors",
"description": "Actor definitions shared by paths"
},
"signatures": {
"type": "array",
"items": { "$ref": "#/$defs/signature" },
"description": "Cryptographic signatures (e.g., release signature)"
}
},
"additionalProperties": true
},
"graph": {
"type": "object",
"description": "Collection of related paths",
"properties": {
"graph": {
"$ref": "#/$defs/graphIdentity"
},
"paths": {
"type": "array",
"items": { "$ref": "#/$defs/pathOrRef" },
"description": "Paths in this graph (inline or referenced)"
},
"meta": {
"$ref": "#/$defs/graphMeta"
}
},
"required": ["graph", "paths"],
"additionalProperties": false
}
},
"oneOf": [
{
"type": "object",
"title": "Step document",
"description": "Externally tagged Step: {\"Step\": {…}}",
"properties": {
"Step": { "$ref": "#/$defs/step" }
},
"required": ["Step"],
"additionalProperties": false
},
{
"type": "object",
"title": "Path document",
"description": "Externally tagged Path: {\"Path\": {…}}",
"properties": {
"Path": { "$ref": "#/$defs/path" }
},
"required": ["Path"],
"additionalProperties": false
},
{
"type": "object",
"title": "Graph document",
"description": "Externally tagged Graph: {\"Graph\": {…}}",
"properties": {
"Graph": { "$ref": "#/$defs/graph" }
},
"required": ["Graph"],
"additionalProperties": false
}
]
}