Final phase of agent substrate v1. 5 shipped agents now declare role at manifest level; assembler expands role's capability text fragments into the generated .md at a new `# AGENT SUBSTRATE — role <name>` section. Non-migrated agents byte-identical (golden snapshots green). Migrated agents: - kei-code-implementer → edit-local (8 caps: no-git-ops + scope/* + quality/* + safety::no-dep-bump + report-format) - kei-critic → read-only (tools::read-only + output::report-format + output::severity-grade) - kei-architect → read-only - kei-security-auditor → read-only - kei-validator → read-only _assembler/ extensions: - manifest.rs: substrate_role: Option<String> - assembler.rs: write_substrate() before blocks (backward-compat; no role = no substrate section) - substrate.rs (new, 102 LOC): loads _roles/<name>.toml, iterates capabilities.required, reads _capabilities/<cat>/<slug>/text.md, joins with \n\n---\n\n separator - validator.rs: substrate role existence + cap-text presence check - tests/substrate_role.rs (4 tests): happy path, unknown role, missing capability text, byte-parity on non-migrated - tests/regenerate_migrated.rs (ignored by default): regeneration gate _templates/task-examples/ — 5 example task.toml per migrated agent showing orchestrator the valid invocation shape. docs/AGENT-SUBSTRATE-SCHEMA.md: Phase 5 row ticked ✓ + Migrated agents subsection listing 5 agents with roles + pointer to examples. tests/substrate_integration.sh: +8 Phase-5 assertions - All 5 migrated .md files contain "# AGENT SUBSTRATE — role" - kei-code-implementer.md contains "MUST NOT invoke git" (policy::no-git-ops) - Every _templates/task-examples/*.toml parses as valid TOML - cargo check --workspace still passes post-migration - kei-agent-runtime compose works on edit-local-forge.toml example Tests: assembler 40/40 (was 30, +4 substrate_role + +1 ignored regen), kei-agent-runtime + kei-capability 37/37 preserved. Deferred: remaining 7 non-core agents (cost-guardian, modal-runner, fal-ai-runner, infra/ml-implementer, ml-researcher, researcher) migrate in v0.24 wave. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
68 lines
1.9 KiB
Rust
68 lines
1.9 KiB
Rust
//! Regenerate the 5 phase-5-migrated agent .md files in-place against
|
|
//! the live kit root (parent of `_assembler/`).
|
|
//!
|
|
//! Run with:
|
|
//! cargo test -p agent-assembler --test regenerate_migrated -- --ignored
|
|
//!
|
|
//! Marked `#[ignore]` so the normal test suite does not write to the
|
|
//! committed tree — it only runs when an operator explicitly asks.
|
|
|
|
mod common;
|
|
|
|
use common::assemble_bin;
|
|
use std::path::PathBuf;
|
|
use std::process::Command;
|
|
|
|
fn kit_root() -> PathBuf {
|
|
PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
|
.parent()
|
|
.unwrap()
|
|
.to_path_buf()
|
|
}
|
|
|
|
#[test]
|
|
#[ignore]
|
|
fn regenerate_phase5_agents_in_place() {
|
|
let root = kit_root();
|
|
let manifests = [
|
|
"kei-code-implementer",
|
|
"kei-critic",
|
|
"kei-architect",
|
|
"kei-security-auditor",
|
|
"kei-validator",
|
|
];
|
|
let args: Vec<String> = std::iter::once("--in-place".to_string())
|
|
.chain(manifests.iter().map(|n| {
|
|
root.join("_manifests")
|
|
.join(format!("{n}.toml"))
|
|
.to_string_lossy()
|
|
.into_owned()
|
|
}))
|
|
.collect();
|
|
|
|
let out = Command::new(assemble_bin())
|
|
.env("AGENT_ROOT", &root)
|
|
.env("HOME", &root)
|
|
.args(&args)
|
|
.output()
|
|
.expect("spawn assemble");
|
|
|
|
assert!(
|
|
out.status.success(),
|
|
"assemble failed:\n stdout: {}\n stderr: {}",
|
|
String::from_utf8_lossy(&out.stdout),
|
|
String::from_utf8_lossy(&out.stderr),
|
|
);
|
|
|
|
// Every migrated agent's root-level .md must now exist and contain
|
|
// the substrate section header.
|
|
for name in &manifests {
|
|
let md_path = root.join(format!("{name}.md"));
|
|
let content = std::fs::read_to_string(&md_path)
|
|
.unwrap_or_else(|e| panic!("read {}: {e}", md_path.display()));
|
|
assert!(
|
|
content.contains("# AGENT SUBSTRATE"),
|
|
"{name}.md lacks substrate section after regeneration"
|
|
);
|
|
}
|
|
}
|