Single-commit clean baseline after security scrub of niche-tells, project codenames, internal jargon, and contributor-email leaks. Contents: - 100 Rust crates (_primitives/_rust/) - 37 agent manifests (_manifests/) + generated specs (_generated/) - 67 user-invocable skills (skills/) - 33 hooks (hooks/) - Composition blocks (_blocks/) - Documentation (docs/, README.md) - TS adapter packages (_ts_packages/) - Assembler (_assembler/) - Roles (_roles/) - Templates (_templates/) - Forgejo CI (.forgejo/) Author: Denis Parfionovich <info@greendragon.info> License: see LICENSE.
37 lines
950 B
JSON
37 lines
950 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "kei-artifact://plan",
|
|
"title": "Karpathy Goal-Driven Plan",
|
|
"description": "Ordered plan steps, each with a verify-criterion.",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["goal", "steps"],
|
|
"properties": {
|
|
"goal": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"parent_spec_id": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"steps": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["step", "verify"],
|
|
"properties": {
|
|
"step": {"type": "string", "minLength": 1},
|
|
"verify": {"type": "string", "minLength": 1},
|
|
"est_minutes": {"type": "integer", "minimum": 0}
|
|
}
|
|
}
|
|
},
|
|
"risks": {
|
|
"type": "array",
|
|
"items": {"type": "string", "minLength": 1}
|
|
}
|
|
}
|
|
}
|