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 KiB
TOML
46 lines
1 KiB
TOML
# Example task.toml — read-only role for kei-architect.
|
|
# Broader scope than critic: whole repo including docs.
|
|
|
|
[task]
|
|
role = "read-only"
|
|
agent-id = "read-only-architect-EXAMPLE"
|
|
parent-agent = ""
|
|
|
|
[scope]
|
|
files-whitelist = [
|
|
"_primitives/**",
|
|
"_assembler/**",
|
|
"_capabilities/**",
|
|
"_roles/**",
|
|
"_manifests/**",
|
|
"docs/**",
|
|
]
|
|
files-denylist = [
|
|
"**/target/**",
|
|
"**/node_modules/**",
|
|
]
|
|
|
|
[verification]
|
|
cargo-check-crates = []
|
|
cargo-test-crates = []
|
|
|
|
[output]
|
|
# Parameterises output::report-format + output::severity-grade.
|
|
report-fields-required = [
|
|
"component-diagram",
|
|
"key-files",
|
|
"data-flow",
|
|
"pattern-inventory",
|
|
"dependency-graph",
|
|
"quality-assessment",
|
|
"decisive-verdict",
|
|
]
|
|
|
|
[body]
|
|
text = """
|
|
Architectural review of the agent substrate (phases 1-5): map module
|
|
boundaries across _capabilities/, _roles/, _manifests/, _assembler/,
|
|
and _primitives/_rust/kei-agent-runtime/. Call out coupling hotspots,
|
|
SSoT violations, and Constructor-Pattern compliance. Decisive verdict
|
|
— no 'it depends'. Evidence-graded (E1-E6).
|
|
"""
|