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.
36 lines
801 B
TOML
36 lines
801 B
TOML
# Example task.toml — edit-local role, scoped to kei-sage.
|
|
# Mirrors edit-local-forge.toml with a different whitelist / crate.
|
|
|
|
[task]
|
|
role = "edit-local"
|
|
agent-id = "edit-local-sage-EXAMPLE"
|
|
parent-agent = ""
|
|
|
|
[scope]
|
|
files-whitelist = [
|
|
"_primitives/_rust/kei-sage/**",
|
|
]
|
|
files-denylist = [
|
|
"_primitives/_rust/Cargo.toml",
|
|
"_primitives/_rust/Cargo.lock",
|
|
]
|
|
|
|
[verification]
|
|
cargo-check-crates = ["kei-sage"]
|
|
cargo-test-crates = ["kei-sage"]
|
|
test-count-min = 20
|
|
|
|
[output]
|
|
report-fields-required = [
|
|
"files-touched",
|
|
"cargo-check",
|
|
"cargo-test",
|
|
"loc-delta",
|
|
]
|
|
|
|
[body]
|
|
text = """
|
|
Extend `kei-sage atoms-discover` with a `--json` output flag. Maintain
|
|
backward compatibility with the existing human-readable table format
|
|
(default behaviour unchanged). Unit tests cover both formats.
|
|
"""
|