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.
42 lines
1.4 KiB
JSON
42 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "kei-artifact://review",
|
|
"title": "Review Findings",
|
|
"description": "Critic / security / validator output — severity-sorted findings.",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["reviewer", "findings"],
|
|
"properties": {
|
|
"reviewer": {
|
|
"type": "string",
|
|
"enum": ["kei-critic", "kei-security-auditor", "kei-validator", "kei-architect"]
|
|
},
|
|
"parent_patch_id": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"findings": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["severity", "title", "file", "line"],
|
|
"properties": {
|
|
"severity": {"type": "string", "enum": ["critical", "high", "medium", "low", "info"]},
|
|
"category": {"type": "string", "enum": ["security", "bug", "anti-pattern", "performance", "tech-debt", "style"]},
|
|
"title": {"type": "string", "minLength": 1},
|
|
"file": {"type": "string", "minLength": 1},
|
|
"line": {"type": "integer", "minimum": 0},
|
|
"problem": {"type": "string"},
|
|
"impact": {"type": "string"},
|
|
"fix": {"type": "string"}
|
|
}
|
|
}
|
|
},
|
|
"verdict": {
|
|
"type": "string",
|
|
"enum": ["approve", "request_changes", "reject"]
|
|
}
|
|
}
|
|
}
|