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.
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "kei-artifact://patch",
|
|
"title": "File-Changes Manifest",
|
|
"description": "Implementer output — manifest of changed files with ops.",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["summary", "changes"],
|
|
"properties": {
|
|
"summary": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"parent_plan_id": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"changes": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["path", "op", "summary"],
|
|
"properties": {
|
|
"path": {"type": "string", "minLength": 1},
|
|
"op": {"type": "string", "enum": ["add", "mod", "del"]},
|
|
"summary": {"type": "string", "minLength": 1},
|
|
"loc_delta": {"type": "integer"},
|
|
"diff": {"type": "string"}
|
|
}
|
|
}
|
|
},
|
|
"tests": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["name", "status"],
|
|
"properties": {
|
|
"name": {"type": "string", "minLength": 1},
|
|
"status": {"type": "string", "enum": ["pass", "fail", "skip"]},
|
|
"reproduce": {"type": "string"}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|