@agentique.io/schemas 0.1.0
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/LICENSE +202 -0
- package/context-bundle.schema.json +132 -0
- package/distribution-mode.schema.json +19 -0
- package/fixtures/schema-fixtures.json +588 -0
- package/fixtures/valid/resource-package.json +42 -0
- package/output-contract.schema.json +86 -0
- package/package-manifest.schema.json +35 -0
- package/package.json +20 -0
- package/permission-risk.schema.json +108 -0
- package/public-readback.schema.json +75 -0
- package/resource-manifest.schema.json +57 -0
- package/skill-metadata.schema.json +42 -0
- package/surfacing-metadata.schema.json +109 -0
- package/tool-listing.schema.json +47 -0
- package/workflow-metadata.schema.json +43 -0
|
@@ -0,0 +1,588 @@
|
|
|
1
|
+
{
|
|
2
|
+
"context-bundle.schema.json": {
|
|
3
|
+
"valid": {
|
|
4
|
+
"bundleId": "example-context-bundle",
|
|
5
|
+
"summary": "A small public context bundle with selected public content.",
|
|
6
|
+
"budget": {
|
|
7
|
+
"maxItems": 3,
|
|
8
|
+
"maxTokens": 4000,
|
|
9
|
+
"maxBytes": 65536
|
|
10
|
+
},
|
|
11
|
+
"items": [
|
|
12
|
+
{
|
|
13
|
+
"resourceId": "example-resource",
|
|
14
|
+
"title": "Example Resource",
|
|
15
|
+
"summary": "A selected public resource summary for local review.",
|
|
16
|
+
"resourceUrl": "https://agentique.io/resources/example-resource",
|
|
17
|
+
"selectedContent": [
|
|
18
|
+
{
|
|
19
|
+
"kind": "summary",
|
|
20
|
+
"text": "Public summary text selected for a bounded context bundle.",
|
|
21
|
+
"maxBytes": 2048
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"permissionRisk": {
|
|
25
|
+
"readOnly": true,
|
|
26
|
+
"destructive": false,
|
|
27
|
+
"openWorld": false,
|
|
28
|
+
"approvalRequired": false,
|
|
29
|
+
"dataSensitivity": "public"
|
|
30
|
+
},
|
|
31
|
+
"deeperFetch": {
|
|
32
|
+
"resourceUrl": "https://agentique.io/resources/example-resource",
|
|
33
|
+
"readbackUrl": "https://agentique.io/api/public/v1/resources/example-resource/readback"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"deeperFetch": {
|
|
38
|
+
"resourceUrl": "https://agentique.io/resources",
|
|
39
|
+
"readbackUrl": "https://agentique.io/api/public/v1/resources"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"invalid": {
|
|
43
|
+
"missing-required": {
|
|
44
|
+
"bundleId": "example-context-bundle",
|
|
45
|
+
"summary": "A small public context bundle with selected public content.",
|
|
46
|
+
"budget": {
|
|
47
|
+
"maxItems": 3,
|
|
48
|
+
"maxTokens": 4000,
|
|
49
|
+
"maxBytes": 65536
|
|
50
|
+
},
|
|
51
|
+
"items": []
|
|
52
|
+
},
|
|
53
|
+
"extra-property": {
|
|
54
|
+
"bundleId": "example-context-bundle",
|
|
55
|
+
"summary": "A small public context bundle with selected public content.",
|
|
56
|
+
"budget": {
|
|
57
|
+
"maxItems": 3,
|
|
58
|
+
"maxTokens": 4000,
|
|
59
|
+
"maxBytes": 65536
|
|
60
|
+
},
|
|
61
|
+
"items": [
|
|
62
|
+
{
|
|
63
|
+
"resourceId": "example-resource",
|
|
64
|
+
"title": "Example Resource",
|
|
65
|
+
"summary": "A selected public resource summary for local review.",
|
|
66
|
+
"resourceUrl": "https://agentique.io/resources/example-resource",
|
|
67
|
+
"selectedContent": [
|
|
68
|
+
{
|
|
69
|
+
"kind": "summary",
|
|
70
|
+
"text": "Public summary text selected for a bounded context bundle.",
|
|
71
|
+
"maxBytes": 2048
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"deeperFetch": {
|
|
75
|
+
"resourceUrl": "https://agentique.io/resources/example-resource",
|
|
76
|
+
"readbackUrl": "https://agentique.io/api/public/v1/resources/example-resource/readback"
|
|
77
|
+
},
|
|
78
|
+
"privateManifest": true
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"deeperFetch": {
|
|
82
|
+
"resourceUrl": "https://agentique.io/resources",
|
|
83
|
+
"readbackUrl": "https://agentique.io/api/public/v1/resources"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"boundary": {
|
|
87
|
+
"bundleId": "x",
|
|
88
|
+
"summary": "too short",
|
|
89
|
+
"budget": {
|
|
90
|
+
"maxItems": 999,
|
|
91
|
+
"maxTokens": 64,
|
|
92
|
+
"maxBytes": 128
|
|
93
|
+
},
|
|
94
|
+
"items": [
|
|
95
|
+
{
|
|
96
|
+
"resourceId": "example-resource",
|
|
97
|
+
"title": "Example Resource",
|
|
98
|
+
"summary": "A selected public resource summary for local review.",
|
|
99
|
+
"resourceUrl": "http://agentique.io/resources/example-resource",
|
|
100
|
+
"selectedContent": [],
|
|
101
|
+
"deeperFetch": {
|
|
102
|
+
"resourceUrl": "https://agentique.io/resources/example-resource"
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"deeperFetch": {
|
|
107
|
+
"resourceUrl": "https://agentique.io/resources"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"distribution-mode.schema.json": {
|
|
113
|
+
"valid": {
|
|
114
|
+
"mode": "package_download",
|
|
115
|
+
"notes": "Prepared for platform upload review."
|
|
116
|
+
},
|
|
117
|
+
"invalid": {
|
|
118
|
+
"missing-required": {},
|
|
119
|
+
"extra-property": {
|
|
120
|
+
"mode": "package_download",
|
|
121
|
+
"unexpected": true
|
|
122
|
+
},
|
|
123
|
+
"boundary": {
|
|
124
|
+
"mode": "direct_execution"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"output-contract.schema.json": {
|
|
129
|
+
"valid": {
|
|
130
|
+
"inputSchema": {
|
|
131
|
+
"type": "object",
|
|
132
|
+
"properties": {
|
|
133
|
+
"query": {
|
|
134
|
+
"type": "string"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"outputSchema": {
|
|
139
|
+
"type": "object",
|
|
140
|
+
"properties": {
|
|
141
|
+
"summary": {
|
|
142
|
+
"type": "string"
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"structuredContent": true,
|
|
147
|
+
"unstructuredFallback": "summary",
|
|
148
|
+
"maxOutputBytes": 65536,
|
|
149
|
+
"timeoutMs": 30000,
|
|
150
|
+
"limitHints": {
|
|
151
|
+
"maxItems": 20,
|
|
152
|
+
"maxRequests": 5
|
|
153
|
+
},
|
|
154
|
+
"errorBehavior": "typed-error",
|
|
155
|
+
"redaction": {
|
|
156
|
+
"secrets": true,
|
|
157
|
+
"privateFields": true,
|
|
158
|
+
"notes": "Redact secrets and private projection fields."
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"invalid": {
|
|
162
|
+
"missing-required": {
|
|
163
|
+
"inputSchema": {
|
|
164
|
+
"type": "object"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"extra-property": {
|
|
168
|
+
"inputSchema": {
|
|
169
|
+
"type": "object"
|
|
170
|
+
},
|
|
171
|
+
"outputSchema": {
|
|
172
|
+
"type": "object"
|
|
173
|
+
},
|
|
174
|
+
"maxOutputBytes": 65536,
|
|
175
|
+
"timeoutMs": 30000,
|
|
176
|
+
"errorBehavior": "typed-error",
|
|
177
|
+
"redaction": {
|
|
178
|
+
"secrets": true,
|
|
179
|
+
"privateFields": true
|
|
180
|
+
},
|
|
181
|
+
"certifiedSafe": true
|
|
182
|
+
},
|
|
183
|
+
"boundary": {
|
|
184
|
+
"inputSchema": {
|
|
185
|
+
"type": "object"
|
|
186
|
+
},
|
|
187
|
+
"outputSchema": {
|
|
188
|
+
"type": "object"
|
|
189
|
+
},
|
|
190
|
+
"unstructuredFallback": "anything",
|
|
191
|
+
"maxOutputBytes": 999999999,
|
|
192
|
+
"timeoutMs": 999999999,
|
|
193
|
+
"errorBehavior": "guaranteed-success",
|
|
194
|
+
"redaction": {
|
|
195
|
+
"secrets": false,
|
|
196
|
+
"privateFields": true
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"package-manifest.schema.json": {
|
|
202
|
+
"valid": {
|
|
203
|
+
"formatVersion": "1.0",
|
|
204
|
+
"files": ["README.md"],
|
|
205
|
+
"hashes": {
|
|
206
|
+
"README.md": "sha256:0000000000000000000000000000000000000000000000000000000000000000"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"invalid": {
|
|
210
|
+
"missing-required": {
|
|
211
|
+
"formatVersion": "1.0"
|
|
212
|
+
},
|
|
213
|
+
"extra-property": {
|
|
214
|
+
"formatVersion": "1.0",
|
|
215
|
+
"files": ["README.md"],
|
|
216
|
+
"hashes": {
|
|
217
|
+
"README.md": "sha256:0000000000000000000000000000000000000000000000000000000000000000"
|
|
218
|
+
},
|
|
219
|
+
"unexpected": true
|
|
220
|
+
},
|
|
221
|
+
"boundary": {
|
|
222
|
+
"formatVersion": "1.0",
|
|
223
|
+
"files": ["node_modules/pkg/index.js"],
|
|
224
|
+
"hashes": {
|
|
225
|
+
"node_modules/pkg/index.js": "sha256:0000000000000000000000000000000000000000000000000000000000000000"
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"permission-risk.schema.json": {
|
|
231
|
+
"valid": {
|
|
232
|
+
"readOnly": true,
|
|
233
|
+
"destructive": false,
|
|
234
|
+
"idempotent": true,
|
|
235
|
+
"openWorld": false,
|
|
236
|
+
"externalNetwork": false,
|
|
237
|
+
"credentialed": false,
|
|
238
|
+
"approvalRequired": false,
|
|
239
|
+
"dataSensitivity": "public",
|
|
240
|
+
"capabilities": ["read-public-content"],
|
|
241
|
+
"reviewNotes": "Reads public package content without credential access."
|
|
242
|
+
},
|
|
243
|
+
"invalid": {
|
|
244
|
+
"missing-required": {
|
|
245
|
+
"readOnly": true
|
|
246
|
+
},
|
|
247
|
+
"extra-property": {
|
|
248
|
+
"readOnly": true,
|
|
249
|
+
"destructive": false,
|
|
250
|
+
"openWorld": false,
|
|
251
|
+
"approvalRequired": false,
|
|
252
|
+
"dataSensitivity": "public",
|
|
253
|
+
"safe": true
|
|
254
|
+
},
|
|
255
|
+
"boundary": {
|
|
256
|
+
"readOnly": true,
|
|
257
|
+
"destructive": true,
|
|
258
|
+
"openWorld": true,
|
|
259
|
+
"credentialed": true,
|
|
260
|
+
"approvalRequired": false,
|
|
261
|
+
"dataSensitivity": "sensitive",
|
|
262
|
+
"capabilities": ["credential-use"]
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"public-readback.schema.json": {
|
|
267
|
+
"valid": {
|
|
268
|
+
"resourceId": "example-resource",
|
|
269
|
+
"state": "published",
|
|
270
|
+
"updatedAt": "2026-05-31T00:00:00.000Z",
|
|
271
|
+
"platformUrl": "https://agentique.io/resources/example-resource",
|
|
272
|
+
"tokenCount": 12
|
|
273
|
+
},
|
|
274
|
+
"invalid": {
|
|
275
|
+
"missing-required": {
|
|
276
|
+
"resourceId": "example-resource"
|
|
277
|
+
},
|
|
278
|
+
"extra-property": {
|
|
279
|
+
"resourceId": "example-resource",
|
|
280
|
+
"state": "published",
|
|
281
|
+
"updatedAt": "2026-05-31T00:00:00.000Z",
|
|
282
|
+
"platformUrl": "https://agentique.io/resources/example-resource",
|
|
283
|
+
"unexpected": true
|
|
284
|
+
},
|
|
285
|
+
"boundary": {
|
|
286
|
+
"resourceId": "Example Resource",
|
|
287
|
+
"state": "published",
|
|
288
|
+
"updatedAt": "2026-05-31T00:00:00.000Z",
|
|
289
|
+
"platformUrl": "https://agentique.io/resources/example-resource"
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"resource-manifest.schema.json": {
|
|
294
|
+
"valid": {
|
|
295
|
+
"formatVersion": "1.0",
|
|
296
|
+
"name": "example-resource",
|
|
297
|
+
"summary": "A public fixture resource manifest.",
|
|
298
|
+
"source": {
|
|
299
|
+
"type": "git",
|
|
300
|
+
"url": "https://github.com/agentique/example-resource"
|
|
301
|
+
},
|
|
302
|
+
"distribution": {
|
|
303
|
+
"mode": "package_download"
|
|
304
|
+
},
|
|
305
|
+
"package": {
|
|
306
|
+
"formatVersion": "1.0",
|
|
307
|
+
"files": ["README.md"],
|
|
308
|
+
"hashes": {
|
|
309
|
+
"README.md": "sha256:0000000000000000000000000000000000000000000000000000000000000000"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"surfacing": {
|
|
313
|
+
"taskIntents": ["source-review", "public-summary"],
|
|
314
|
+
"audience": ["agent", "developer"],
|
|
315
|
+
"priority": 0.6,
|
|
316
|
+
"recency": {
|
|
317
|
+
"lastReviewedAt": "2026-06-01T00:00:00.000Z",
|
|
318
|
+
"reviewCadenceDays": 90
|
|
319
|
+
},
|
|
320
|
+
"compatibility": {
|
|
321
|
+
"runtimeFamilies": ["node", "browser"],
|
|
322
|
+
"protocols": ["https"]
|
|
323
|
+
},
|
|
324
|
+
"contextBudget": {
|
|
325
|
+
"maxTokens": 4000,
|
|
326
|
+
"maxBytes": 65536,
|
|
327
|
+
"preferredSummaryBytes": 4096
|
|
328
|
+
},
|
|
329
|
+
"notes": "Public creator-provided hints for resource selection."
|
|
330
|
+
},
|
|
331
|
+
"permissionRisk": {
|
|
332
|
+
"readOnly": true,
|
|
333
|
+
"destructive": false,
|
|
334
|
+
"idempotent": true,
|
|
335
|
+
"openWorld": false,
|
|
336
|
+
"externalNetwork": false,
|
|
337
|
+
"credentialed": false,
|
|
338
|
+
"approvalRequired": false,
|
|
339
|
+
"dataSensitivity": "public",
|
|
340
|
+
"capabilities": ["read-public-content"],
|
|
341
|
+
"reviewNotes": "Reads public package content without credential access."
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
"invalid": {
|
|
345
|
+
"missing-required": {
|
|
346
|
+
"formatVersion": "1.0"
|
|
347
|
+
},
|
|
348
|
+
"extra-property": {
|
|
349
|
+
"formatVersion": "1.0",
|
|
350
|
+
"name": "example-resource",
|
|
351
|
+
"summary": "A public fixture resource manifest.",
|
|
352
|
+
"source": {
|
|
353
|
+
"type": "git",
|
|
354
|
+
"url": "https://github.com/agentique/example-resource"
|
|
355
|
+
},
|
|
356
|
+
"distribution": {
|
|
357
|
+
"mode": "package_download"
|
|
358
|
+
},
|
|
359
|
+
"package": {
|
|
360
|
+
"formatVersion": "1.0",
|
|
361
|
+
"files": ["README.md"],
|
|
362
|
+
"hashes": {
|
|
363
|
+
"README.md": "sha256:0000000000000000000000000000000000000000000000000000000000000000"
|
|
364
|
+
}
|
|
365
|
+
},
|
|
366
|
+
"unexpected": true
|
|
367
|
+
},
|
|
368
|
+
"boundary": {
|
|
369
|
+
"formatVersion": "1.0",
|
|
370
|
+
"name": "x",
|
|
371
|
+
"summary": "too short",
|
|
372
|
+
"source": {
|
|
373
|
+
"type": "git",
|
|
374
|
+
"url": "http://example.com"
|
|
375
|
+
},
|
|
376
|
+
"distribution": {
|
|
377
|
+
"mode": "package_download"
|
|
378
|
+
},
|
|
379
|
+
"package": {
|
|
380
|
+
"formatVersion": "1.0",
|
|
381
|
+
"files": ["README.md"],
|
|
382
|
+
"hashes": {
|
|
383
|
+
"README.md": "sha256:0000000000000000000000000000000000000000000000000000000000000000"
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
"skill-metadata.schema.json": {
|
|
390
|
+
"valid": {
|
|
391
|
+
"name": "source-summarizer",
|
|
392
|
+
"summary": "Summarizes public sources with attribution.",
|
|
393
|
+
"inputs": ["topic"],
|
|
394
|
+
"outputs": ["summary"]
|
|
395
|
+
},
|
|
396
|
+
"invalid": {
|
|
397
|
+
"missing-required": {
|
|
398
|
+
"name": "source-summarizer"
|
|
399
|
+
},
|
|
400
|
+
"extra-property": {
|
|
401
|
+
"name": "source-summarizer",
|
|
402
|
+
"summary": "Summarizes public sources with attribution.",
|
|
403
|
+
"inputs": ["topic"],
|
|
404
|
+
"outputs": ["summary"],
|
|
405
|
+
"unexpected": true
|
|
406
|
+
},
|
|
407
|
+
"boundary": {
|
|
408
|
+
"name": "x",
|
|
409
|
+
"summary": "too short",
|
|
410
|
+
"inputs": [],
|
|
411
|
+
"outputs": []
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"surfacing-metadata.schema.json": {
|
|
416
|
+
"valid": {
|
|
417
|
+
"taskIntents": ["source-review", "public-summary"],
|
|
418
|
+
"audience": ["agent", "developer"],
|
|
419
|
+
"priority": 0.5,
|
|
420
|
+
"recency": {
|
|
421
|
+
"lastReviewedAt": "2026-06-01T00:00:00.000Z"
|
|
422
|
+
},
|
|
423
|
+
"contextBudget": {
|
|
424
|
+
"maxTokens": 4000,
|
|
425
|
+
"maxBytes": 65536
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
"invalid": {
|
|
429
|
+
"missing-required": {
|
|
430
|
+
"taskIntents": ["source-review"]
|
|
431
|
+
},
|
|
432
|
+
"extra-property": {
|
|
433
|
+
"taskIntents": ["source-review"],
|
|
434
|
+
"audience": ["agent"],
|
|
435
|
+
"priority": 0.5,
|
|
436
|
+
"contextBudget": {
|
|
437
|
+
"maxTokens": 4000,
|
|
438
|
+
"maxBytes": 65536
|
|
439
|
+
},
|
|
440
|
+
"approved": true
|
|
441
|
+
},
|
|
442
|
+
"boundary": {
|
|
443
|
+
"taskIntents": [],
|
|
444
|
+
"audience": ["unknown"],
|
|
445
|
+
"priority": 2,
|
|
446
|
+
"contextBudget": {
|
|
447
|
+
"maxTokens": 64,
|
|
448
|
+
"maxBytes": 128
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
"tool-listing.schema.json": {
|
|
454
|
+
"valid": {
|
|
455
|
+
"name": "example-public-tool",
|
|
456
|
+
"summary": "Describes a public lookup tool listing for review.",
|
|
457
|
+
"capabilities": ["lookup", "summarize"],
|
|
458
|
+
"permissionRisk": {
|
|
459
|
+
"readOnly": true,
|
|
460
|
+
"destructive": false,
|
|
461
|
+
"idempotent": true,
|
|
462
|
+
"openWorld": true,
|
|
463
|
+
"externalNetwork": true,
|
|
464
|
+
"credentialed": false,
|
|
465
|
+
"approvalRequired": false,
|
|
466
|
+
"dataSensitivity": "public",
|
|
467
|
+
"capabilities": ["read-public-content", "external-network"],
|
|
468
|
+
"reviewNotes": "Reads public web content without credentials."
|
|
469
|
+
},
|
|
470
|
+
"outputContract": {
|
|
471
|
+
"inputSchema": {
|
|
472
|
+
"type": "object"
|
|
473
|
+
},
|
|
474
|
+
"outputSchema": {
|
|
475
|
+
"type": "object"
|
|
476
|
+
},
|
|
477
|
+
"structuredContent": true,
|
|
478
|
+
"unstructuredFallback": "summary",
|
|
479
|
+
"maxOutputBytes": 65536,
|
|
480
|
+
"timeoutMs": 30000,
|
|
481
|
+
"errorBehavior": "typed-error",
|
|
482
|
+
"redaction": {
|
|
483
|
+
"secrets": true,
|
|
484
|
+
"privateFields": true
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
"supportUrl": "https://example.com/support",
|
|
488
|
+
"documentationUrl": "https://example.com/docs"
|
|
489
|
+
},
|
|
490
|
+
"invalid": {
|
|
491
|
+
"missing-required": {
|
|
492
|
+
"name": "example-public-tool",
|
|
493
|
+
"summary": "Describes a public lookup tool listing for review.",
|
|
494
|
+
"capabilities": ["lookup"]
|
|
495
|
+
},
|
|
496
|
+
"extra-property": {
|
|
497
|
+
"name": "example-public-tool",
|
|
498
|
+
"summary": "Describes a public lookup tool listing for review.",
|
|
499
|
+
"capabilities": ["lookup"],
|
|
500
|
+
"permissionRisk": {
|
|
501
|
+
"readOnly": true,
|
|
502
|
+
"destructive": false,
|
|
503
|
+
"openWorld": false,
|
|
504
|
+
"approvalRequired": false,
|
|
505
|
+
"dataSensitivity": "public"
|
|
506
|
+
},
|
|
507
|
+
"outputContract": {
|
|
508
|
+
"inputSchema": {
|
|
509
|
+
"type": "object"
|
|
510
|
+
},
|
|
511
|
+
"outputSchema": {
|
|
512
|
+
"type": "object"
|
|
513
|
+
},
|
|
514
|
+
"maxOutputBytes": 65536,
|
|
515
|
+
"timeoutMs": 30000,
|
|
516
|
+
"errorBehavior": "typed-error",
|
|
517
|
+
"redaction": {
|
|
518
|
+
"secrets": true,
|
|
519
|
+
"privateFields": true
|
|
520
|
+
}
|
|
521
|
+
},
|
|
522
|
+
"documentationUrl": "https://example.com/docs",
|
|
523
|
+
"approved": true
|
|
524
|
+
},
|
|
525
|
+
"boundary": {
|
|
526
|
+
"name": "x",
|
|
527
|
+
"summary": "too short",
|
|
528
|
+
"capabilities": [],
|
|
529
|
+
"permissionRisk": {
|
|
530
|
+
"readOnly": false,
|
|
531
|
+
"destructive": true,
|
|
532
|
+
"openWorld": true,
|
|
533
|
+
"approvalRequired": false,
|
|
534
|
+
"dataSensitivity": "sensitive"
|
|
535
|
+
},
|
|
536
|
+
"outputContract": {
|
|
537
|
+
"inputSchema": {
|
|
538
|
+
"type": "object"
|
|
539
|
+
},
|
|
540
|
+
"outputSchema": {
|
|
541
|
+
"type": "object"
|
|
542
|
+
},
|
|
543
|
+
"maxOutputBytes": 1,
|
|
544
|
+
"timeoutMs": 1,
|
|
545
|
+
"errorBehavior": "approved",
|
|
546
|
+
"redaction": {
|
|
547
|
+
"secrets": false,
|
|
548
|
+
"privateFields": false
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
"documentationUrl": "http://example.com/docs"
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
},
|
|
555
|
+
"workflow-metadata.schema.json": {
|
|
556
|
+
"valid": {
|
|
557
|
+
"name": "evidence-review",
|
|
558
|
+
"summary": "Reviews public evidence and unresolved questions.",
|
|
559
|
+
"steps": [
|
|
560
|
+
{
|
|
561
|
+
"id": "collect-sources",
|
|
562
|
+
"description": "Collect public source links."
|
|
563
|
+
}
|
|
564
|
+
]
|
|
565
|
+
},
|
|
566
|
+
"invalid": {
|
|
567
|
+
"missing-required": {
|
|
568
|
+
"name": "evidence-review"
|
|
569
|
+
},
|
|
570
|
+
"extra-property": {
|
|
571
|
+
"name": "evidence-review",
|
|
572
|
+
"summary": "Reviews public evidence and unresolved questions.",
|
|
573
|
+
"steps": [
|
|
574
|
+
{
|
|
575
|
+
"id": "collect-sources",
|
|
576
|
+
"description": "Collect public source links."
|
|
577
|
+
}
|
|
578
|
+
],
|
|
579
|
+
"unexpected": true
|
|
580
|
+
},
|
|
581
|
+
"boundary": {
|
|
582
|
+
"name": "x",
|
|
583
|
+
"summary": "too short",
|
|
584
|
+
"steps": []
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"formatVersion": "1.0",
|
|
3
|
+
"name": "research-helper",
|
|
4
|
+
"summary": "A public example package for preparing an Agentique resource.",
|
|
5
|
+
"source": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/example/research-helper"
|
|
8
|
+
},
|
|
9
|
+
"distribution": {
|
|
10
|
+
"mode": "package_download",
|
|
11
|
+
"notes": "Package is prepared for platform review before publication."
|
|
12
|
+
},
|
|
13
|
+
"package": {
|
|
14
|
+
"formatVersion": "1.0",
|
|
15
|
+
"files": ["README.md", "manifest.json", "skills/research-helper.md"],
|
|
16
|
+
"hashes": {
|
|
17
|
+
"README.md": "sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
|
18
|
+
"manifest.json": "sha256:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
|
|
19
|
+
"skills/research-helper.md": "sha256:cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"skill": {
|
|
23
|
+
"name": "research-helper",
|
|
24
|
+
"summary": "Helps organize public research notes into a reusable workflow.",
|
|
25
|
+
"inputs": ["topic", "source list"],
|
|
26
|
+
"outputs": ["summary", "source table"]
|
|
27
|
+
},
|
|
28
|
+
"workflow": {
|
|
29
|
+
"name": "research-review",
|
|
30
|
+
"summary": "Reviews public sources and creates a structured summary.",
|
|
31
|
+
"steps": [
|
|
32
|
+
{
|
|
33
|
+
"id": "collect-sources",
|
|
34
|
+
"description": "Collect public source links supplied by the user."
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"id": "summarize",
|
|
38
|
+
"description": "Summarize public information with source attribution."
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
}
|