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.
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "kei-artifact://research",
|
|
"title": "Research Claims",
|
|
"description": "Researcher output — claims + evidence grades + sources.",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["question", "claims"],
|
|
"properties": {
|
|
"question": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"claims": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["claim", "evidence_grade"],
|
|
"properties": {
|
|
"claim": {"type": "string", "minLength": 1},
|
|
"evidence_grade": {"type": "string", "enum": ["E1", "E2", "E3", "E4", "E5", "E6"]},
|
|
"confidence": {"type": "string", "enum": ["100", "80", "50", "30", "0"]},
|
|
"sources": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["url"],
|
|
"properties": {
|
|
"url": {"type": "string", "minLength": 1},
|
|
"title": {"type": "string"},
|
|
"verified": {"type": "boolean"}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"gaps": {
|
|
"type": "array",
|
|
"items": {"type": "string", "minLength": 1}
|
|
}
|
|
}
|
|
}
|