mirror of
https://github.com/msitarzewski/agency-agents.git
synced 2026-09-04 09:10:50 +03:00
test(convert): regression eval for generated outputs + app contracts; fix two get_field bugs it found (#829)
Adds scripts/test-convert-outputs.sh, the output half of the regression eval (the install half landed in #828), and wires it plus the previously un-wired test-agent-selection.sh (#779) into CI. Why an eval at all: every converter bug so far passed lint and the existing tests while the installed product was broken. #778 shipped a double-wrapped description that was valid YAML, so a wrapper check passed; #817 dropped a whole tool from --parallel and every remaining tool looked fine. Those are invariant violations, not syntax errors. Layer A (no history needed), for every agent x every converted tool: round-trip parsed(generated).description == source description strict-parse every generated frontmatter / TOML / YAML parses with a real parser (kimi/vibe carry only an identifier: id == slug and the prose file exists; aider/windsurf: "## Name" + description line) count every tool emits exactly one output per roster agent source every SOURCE frontmatter strict-parses and carries no leaked quote — the desktop app reads sources with js-yaml (#473) Layer B: scripts/convert-outputs.sha256, one aggregate hash per tool plus divisions.json / tools.json / runbooks.json. A flipped line means outputs or a contract changed; --update regenerates deliberately so review sees the blast radius. Date-stable (no generated file embeds a date). The expected side is derived by an INDEPENDENT strict parse of each source, never by lib.sh's get_field: the generator uses get_field, so an expected value derived the same way would move with a get_field bug and hide it — which is exactly how #778 stayed invisible. That independence found two shipping defects on the first green run: - get_field returned only the first line of a multi-line plain scalar. Three healthcare agents write their description as an indented continuation; every generated output for them shipped it truncated mid-sentence while the app showed the whole thing. get_field now folds continuation lines the way YAML does (newline -> single space). - get_field stripped only "field: " (one space). The same three files use column-aligned frontmatter (name: X), so their generated names carried leading whitespace in every tool's output. Plain-scalar padding is now trimmed. After both fixes get_field agrees with PyYAML on name and description for all 273 sources. Acceptance: re-introducing #778's double-wrap, a dropped tool, a divisions.json change, and an unquoted source each fail the eval (the double-wrap via Layer A round-trip, not only the manifest). Refs #778 #817 #473 #810 #826 #828 #779 Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5.1
parent
e88946efa3
commit
04eadbd3e5
@@ -24,3 +24,9 @@ jobs:
|
||||
|
||||
- name: Validate converted YAML frontmatter
|
||||
run: bash scripts/test-convert-frontmatter.sh
|
||||
|
||||
- name: Validate converted outputs (round-trip, strict parse, counts, drift)
|
||||
run: bash scripts/test-convert-outputs.sh
|
||||
|
||||
- name: Validate agent selection (install.sh --agent / --agents-file)
|
||||
run: bash scripts/test-agent-selection.sh
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
antigravity 3a6a9f27c2478c05093f8cecef99793870250cfc1774e4d8642d8d92001d4b0e
|
||||
gemini-cli 389eaa64b91beef18e999471f227036aefcbf3ac8d87858cabcae39a594c5951
|
||||
opencode 99af3bd8f155ea2ce9c5f9bfbf53ff1a083be1863cc998d2a40e63cd6314fff9
|
||||
cursor 169d7c6e752490cfe8ad9a40a0e13a19f5bb641862d580bad9b23596a7d731f2
|
||||
aider 9438f15e56aec67943b56deb21f459f4f4adeb457b96316309175c6ca6fcff30
|
||||
windsurf e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||
openclaw 3019e15be427bc9d38e22765dab57951fe7d91d352c1b04b61e045f8b360dd22
|
||||
qwen 6602754c05df8a700dde9864afc3bf5275fa5c1b52a2c52771c63f0d5c4bf358
|
||||
zcode 994ce45c33d46d2c694d201792fc1cd9dffcb1bcfe285ab46767d7d29f0831c6
|
||||
kimi 0be25760acdcf1638c2605d05ffb80fe05f751b6b76e5b3ba67af82885118606
|
||||
codex d666dfb2d78328d0cfccb6ebcdb3d35103e2280cca113cf0248a78bb66039150
|
||||
osaurus 8c7b843ed0cfb8279ed75306c1744e14e49a1e6815a4ce7bb055d047b87a5cc6
|
||||
hermes 8c124dbe0c8e73aed5481dcfa077eda553f3ff66e8ca5d28dacb4aba1d8dacdf
|
||||
vibe 8c79416463420d73bfa7ec79f51df95568bb7bd73626e1107137f8fa5900c9ea
|
||||
divisions.json a85d4ceeabe671051559e7703dfca074bf7a259ba26b61fb5e14ed36d54ae051
|
||||
tools.json 2b9635406d8980dfde28849f965f2a22de384b4906128ec345ef6fc6246f127d
|
||||
strategy/runbooks.json 2d0372782460694bddcbdb5ec04ff28ae6284a2c751888f8010e16033024ac49
|
||||
+16
-10
@@ -20,17 +20,23 @@
|
||||
get_field() {
|
||||
local field="$1" file="$2"
|
||||
awk -v f="$field" '
|
||||
/^---$/ { fm++; next }
|
||||
fm == 1 && $0 ~ "^" f ": " {
|
||||
sub("^" f ": ", "")
|
||||
# A quoted YAML scalar carries its quotes as delimiters, not content.
|
||||
# Strip one matching outer pair and unescape, so a quoted source value
|
||||
# never double-wraps when a converter re-quotes it (\047 is a literal
|
||||
# apostrophe; this program sits inside shell single quotes).
|
||||
if ($0 ~ /^".*"$/) { $0 = substr($0, 2, length($0) - 2); gsub(/\\"/, "\"", $0); gsub(/\\\\/, "\\", $0) }
|
||||
else if ($0 ~ /^\047.*\047$/) { $0 = substr($0, 2, length($0) - 2); gsub(/\047\047/, "\047", $0) }
|
||||
print; exit
|
||||
# A quoted YAML scalar carries its quotes as delimiters, not content:
|
||||
# strip one matching outer pair and unescape (\047 is a literal apostrophe;
|
||||
# this program sits inside shell single quotes). A plain scalar may also
|
||||
# continue onto indented lines; YAML folds those into one line joined by
|
||||
# single spaces, and so do we — otherwise the generated description is
|
||||
# silently truncated to its first line (three healthcare agents were).
|
||||
function emit(v) {
|
||||
sub(/^[ \t]+/, "", v); sub(/[ \t]+$/, "", v) # YAML: plain-scalar padding is not content
|
||||
if (v ~ /^".*"$/) { v = substr(v, 2, length(v) - 2); gsub(/\\"/, "\"", v); gsub(/\\\\/, "\\", v) }
|
||||
else if (v ~ /^\047.*\047$/) { v = substr(v, 2, length(v) - 2); gsub(/\047\047/, "\047", v) }
|
||||
print v; printed = 1; exit
|
||||
}
|
||||
/^---$/ { fm++; if (fm == 2 && found) emit(val); next }
|
||||
fm == 1 && !found && $0 ~ "^" f ": " { sub("^" f ": ", ""); val = $0; found = 1; next }
|
||||
fm == 1 && found && /^[ \t]+[^ \t]/ { sub(/^[ \t]+/, ""); val = val " " $0; next }
|
||||
fm == 1 && found { emit(val) }
|
||||
END { if (found && !printed) emit(val) }
|
||||
' "$file"
|
||||
}
|
||||
|
||||
|
||||
Executable
+318
@@ -0,0 +1,318 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# test-convert-outputs.sh — regression eval for the GENERATED product.
|
||||
#
|
||||
# Why: every converter bug so far passed lint and the existing tests while the
|
||||
# product users actually install was broken. #778 shipped a double-wrapped
|
||||
# description ('"..."') that parsed as valid YAML, so a wrapper check passed;
|
||||
# #817 dropped a whole tool from --parallel and every remaining tool still
|
||||
# looked fine. Both are invariant violations, not syntax errors. This script
|
||||
# encodes what "correct output" means and checks all of it, for every agent,
|
||||
# for every converted tool.
|
||||
#
|
||||
# Layer A — invariants (need no history):
|
||||
# round-trip parsed(generated).description == source description
|
||||
# strict-parse every generated frontmatter/TOML/YAML parses with a real parser
|
||||
# count every tool emits exactly one output per roster agent
|
||||
# source every SOURCE agent's frontmatter strict-parses (the desktop app
|
||||
# reads sources with js-yaml — #473 was exactly this) and its
|
||||
# description carries no leaked quote character
|
||||
#
|
||||
# Layer B — drift (needs the committed manifest):
|
||||
# scripts/convert-outputs.sha256 holds one aggregate hash per tool plus the
|
||||
# three cross-repo contracts (divisions.json, tools.json, runbooks.json).
|
||||
# A flipped line means that tool's outputs (or a contract) changed; the
|
||||
# author regenerates deliberately with --update and the diff shows the blast
|
||||
# radius in review. Per-agent detail: --diff.
|
||||
#
|
||||
# Usage:
|
||||
# ./scripts/test-convert-outputs.sh # generate into a temp dir, check everything
|
||||
# ./scripts/test-convert-outputs.sh --update # ...and rewrite the manifest
|
||||
# ./scripts/test-convert-outputs.sh --diff # list per-agent files behind a flipped line
|
||||
# ./scripts/test-convert-outputs.sh --out=DIR # check an already-generated DIR (no generation)
|
||||
#
|
||||
# Exit 0 only when every check passes AND the manifest matches (or --update).
|
||||
# Runs on bash 3.2 (macOS) and 5 (Linux); parsing is done by python3.
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
||||
MANIFEST="$REPO_ROOT/scripts/convert-outputs.sha256"
|
||||
|
||||
UPDATE=false; DIFF=false; OUT=""
|
||||
for a in "$@"; do
|
||||
case "$a" in
|
||||
--update) UPDATE=true ;;
|
||||
--diff) DIFF=true ;;
|
||||
--out=*) OUT="${a#--out=}" ;;
|
||||
-h|--help) sed -n '2,36p' "$0"; exit 0 ;;
|
||||
*) printf 'unknown flag: %s\n' "$a" >&2; exit 2 ;;
|
||||
esac
|
||||
done
|
||||
|
||||
command -v python3 >/dev/null 2>&1 || { echo "ERROR: python3 is required." >&2; exit 2; }
|
||||
python3 -c 'import yaml, tomllib' 2>/dev/null \
|
||||
|| { echo "ERROR: python3 needs PyYAML and tomllib (3.11+)." >&2; exit 2; }
|
||||
|
||||
# get_field (quote-aware) and agent_slug — the same helpers convert.sh uses,
|
||||
# so the "expected" side is derived exactly the way the generator derives it.
|
||||
# shellcheck source=lib.sh
|
||||
source "$SCRIPT_DIR/lib.sh"
|
||||
|
||||
TMP="$(mktemp -d "${TMPDIR:-/tmp}/agency-convert-outputs.XXXXXX")"
|
||||
trap 'rm -rf "$TMP"' EXIT
|
||||
|
||||
# --- roster: every agent file under a registered division --------------------
|
||||
divisions_from_json() {
|
||||
awk '/"divisions"[[:space:]]*:[[:space:]]*\{/{f=1; next} f' "$REPO_ROOT/divisions.json" \
|
||||
| grep -oE '^[[:space:]]*"[a-z0-9-]+"[[:space:]]*:' \
|
||||
| sed -E 's/[[:space:]]*"([a-z0-9-]+)"[[:space:]]*:/\1/'
|
||||
}
|
||||
|
||||
SOURCES="$TMP/sources.tsv"; : > "$SOURCES"
|
||||
while IFS= read -r div; do
|
||||
[[ -n "$div" && -d "$REPO_ROOT/$div" ]] || continue
|
||||
while IFS= read -r f; do
|
||||
[[ "$(head -1 "$f")" == "---" ]] || continue
|
||||
printf '%s\t%s\t%s\t%s\n' \
|
||||
"$(agent_slug "$f")" "$(get_field description "$f")" "$(get_field name "$f")" "${f#"$REPO_ROOT"/}" \
|
||||
>> "$SOURCES"
|
||||
done < <(find "$REPO_ROOT/$div" -name '*.md' -type f | sort)
|
||||
done < <(divisions_from_json)
|
||||
N="$(wc -l < "$SOURCES" | tr -d ' ')"
|
||||
[[ "$N" -gt 0 ]] || { echo "ERROR: no source agents found." >&2; exit 2; }
|
||||
|
||||
# --- generate: every converted tool, sequentially, into a scratch dir ---------
|
||||
TOOLS="antigravity gemini-cli opencode cursor aider windsurf openclaw qwen zcode kimi codex osaurus hermes vibe"
|
||||
if [[ -z "$OUT" ]]; then
|
||||
OUT="$TMP/out"; mkdir -p "$OUT"
|
||||
for t in $TOOLS; do
|
||||
"$SCRIPT_DIR/convert.sh" --tool "$t" --out "$OUT" >/dev/null 2>&1 \
|
||||
|| { echo "ERROR: convert.sh --tool $t failed." >&2; exit 1; }
|
||||
done
|
||||
fi
|
||||
|
||||
# --- check: invariants + manifest (python does the parsing) -------------------
|
||||
REPO_ROOT="$REPO_ROOT" OUT="$OUT" SOURCES="$SOURCES" N="$N" MANIFEST="$MANIFEST" \
|
||||
UPDATE="$UPDATE" DIFF="$DIFF" TOOLS="$TOOLS" python3 - <<'PY'
|
||||
import os, sys, glob, json, hashlib, yaml, tomllib
|
||||
|
||||
R, OUT, N = os.environ["REPO_ROOT"], os.environ["OUT"], int(os.environ["N"])
|
||||
MANIFEST, UPDATE, DIFF = os.environ["MANIFEST"], os.environ["UPDATE"] == "true", os.environ["DIFF"] == "true"
|
||||
TOOLS = os.environ["TOOLS"].split()
|
||||
|
||||
# slug -> (description, name, source path)
|
||||
src = {}
|
||||
for line in open(os.environ["SOURCES"], encoding="utf-8"):
|
||||
slug, desc, name, path = line.rstrip("\n").split("\t", 3)
|
||||
src[slug] = (desc, name, path)
|
||||
|
||||
fails, passes = [], 0
|
||||
def ok(msg): global passes; passes += 1
|
||||
def bad(msg): fails.append(msg)
|
||||
def check(cond, msg): (ok if cond else bad)(msg)
|
||||
|
||||
# Per-tool output spec: (glob under OUT/<tool>, format). Formats were read off
|
||||
# real generated output, not assumed:
|
||||
# yaml-fm markdown with --- YAML frontmatter round-trip description
|
||||
# toml TOML with a description key round-trip description
|
||||
# toml-id TOML carrying only an identifier id == slug + companion prompt file
|
||||
# (vibe: system_prompt_id -> prompts/<slug>.md)
|
||||
# yaml-id YAML carrying only an identifier id == slug + companion file
|
||||
# (kimi: agent.name -> <slug>/system.md)
|
||||
# accum one file for all agents: "## Name" then the description line
|
||||
# (windsurf: bare line; aider: "> " blockquote) round-trip both
|
||||
# plain no structured metadata count only
|
||||
# json hermes agents.json count
|
||||
SPEC = {
|
||||
"antigravity": ("agency-*/SKILL.md", "yaml-fm"),
|
||||
"osaurus": ("agency-*/SKILL.md", "yaml-fm"),
|
||||
"gemini-cli": ("agents/*.md", "yaml-fm"),
|
||||
"opencode": ("agents/*.md", "yaml-fm"),
|
||||
"qwen": ("agents/*.md", "yaml-fm"),
|
||||
"zcode": ("agents/*.md", "yaml-fm"),
|
||||
"cursor": ("rules/*.mdc", "yaml-fm"),
|
||||
"codex": ("agents/*.toml", "toml"),
|
||||
"vibe": ("agents/*.toml", "toml-id"),
|
||||
"kimi": ("*/agent.yaml", "yaml-id"),
|
||||
"openclaw": ("*/SOUL.md", "plain"),
|
||||
"aider": ("CONVENTIONS.md", "accum"),
|
||||
"windsurf": (".windsurfrules", "accum"),
|
||||
"hermes": ("agency-agents-router/data/agents.json", "json"),
|
||||
}
|
||||
|
||||
def slug_of(path):
|
||||
base = os.path.basename(path)
|
||||
if base in ("SKILL.md", "agent.yaml", "SOUL.md", "system.md", "AGENTS.md", "IDENTITY.md"):
|
||||
d = os.path.basename(os.path.dirname(path))
|
||||
return d[len("agency-"):] if d.startswith("agency-") else d
|
||||
return os.path.splitext(base)[0]
|
||||
|
||||
def find_desc(obj):
|
||||
"""First 'description' string anywhere in a parsed mapping (TOML/YAML nest freely)."""
|
||||
if isinstance(obj, dict):
|
||||
if isinstance(obj.get("description"), str): return obj["description"]
|
||||
for v in obj.values():
|
||||
r = find_desc(v)
|
||||
if r is not None: return r
|
||||
return None
|
||||
|
||||
def frontmatter(text):
|
||||
if not text.startswith("---"): raise ValueError("no frontmatter")
|
||||
parts = text.split("\n---", 1)
|
||||
return yaml.safe_load(parts[0][3:])
|
||||
|
||||
def parsed_desc(path, fmt):
|
||||
text = open(path, encoding="utf-8").read()
|
||||
if fmt == "yaml-fm": data = frontmatter(text)
|
||||
elif fmt == "toml": data = tomllib.loads(text)
|
||||
elif fmt == "yaml": data = yaml.safe_load(text)
|
||||
else: return None
|
||||
if not isinstance(data, dict): raise ValueError("top level is not a mapping")
|
||||
return find_desc(data)
|
||||
|
||||
# --- expected values: an INDEPENDENT strict parse of every source ---------------
|
||||
# The generator reads sources through lib.sh's get_field. If the expected side
|
||||
# were derived the same way, a get_field bug would move both sides together and
|
||||
# hide itself — that is exactly how #778's double-wrap stayed invisible. So the
|
||||
# expected name/description come from PyYAML parsing the source frontmatter
|
||||
# (the desktop app's js-yaml contract), and get_field's values are discarded.
|
||||
# A source that does not strict-parse is an app-contract failure in itself; it
|
||||
# is reported below and excluded from round-trips (desc=None).
|
||||
src_bad = []
|
||||
for slug, (_gf_desc, _gf_name, path) in list(src.items()):
|
||||
try:
|
||||
data = frontmatter(open(os.path.join(R, path), encoding="utf-8").read())
|
||||
assert isinstance(data, dict) and isinstance(data.get("name"), str) \
|
||||
and isinstance(data.get("description"), str), "missing name/description"
|
||||
assert data["description"][:1] not in ('"', "'"), "description starts with a quote character"
|
||||
src[slug] = (data["description"], data["name"], path)
|
||||
except Exception as e:
|
||||
src_bad.append(f"source {path}: {str(e).splitlines()[0]}")
|
||||
src[slug] = (None, _gf_name, path)
|
||||
|
||||
# --- Layer A: per-tool count + strict-parse + round-trip -----------------------
|
||||
def report(tool, bad_parse, bad_trip, label):
|
||||
if bad_trip > 3: bad(f"{tool}: ...and {bad_trip-3} more mismatches")
|
||||
if not bad_parse and not bad_trip: ok(f"{tool}: all {N} {label}")
|
||||
|
||||
for tool in TOOLS:
|
||||
pat, fmt = SPEC[tool]
|
||||
files = sorted(glob.glob(os.path.join(OUT, tool, pat)))
|
||||
|
||||
if fmt == "accum":
|
||||
# One file for every agent. For each roster agent: "## <name>" exactly
|
||||
# once, and the description on the next non-blank line (aider quotes it
|
||||
# with "> "). Counting "## " lines would count body sections too.
|
||||
text = open(files[0], encoding="utf-8").read().split("\n") if files else []
|
||||
miss = 0
|
||||
for slug, (desc, name, path) in src.items():
|
||||
if desc is None: continue # source failed strict parse; reported below
|
||||
idx = [i for i, l in enumerate(text) if l.rstrip() == f"## {name}"]
|
||||
if len(idx) != 1:
|
||||
miss += 1
|
||||
if miss <= 3: bad(f"{tool}: '## {name}' appears {len(idx)}x (want exactly 1)")
|
||||
continue
|
||||
nxt = next((l for l in text[idx[0]+1:idx[0]+4] if l.strip()), "")
|
||||
got = (nxt[2:] if nxt.startswith("> ") else nxt).strip()
|
||||
if got != desc:
|
||||
miss += 1
|
||||
if miss <= 3:
|
||||
bad(f"{tool}: {slug} description mismatch\n"
|
||||
f" source: {desc[:70]!r}\n generated: {got[:70]!r}")
|
||||
report(tool, 0, miss, "present with descriptions round-tripped")
|
||||
continue
|
||||
|
||||
if fmt == "json":
|
||||
try:
|
||||
data = json.load(open(files[0], encoding="utf-8")) if files else []
|
||||
items = data if isinstance(data, list) else data.get("agents", [])
|
||||
check(len(items) == N, f"{tool}: agents.json lists {len(items)} agents, roster has {N}")
|
||||
except Exception as e:
|
||||
bad(f"{tool}: agents.json unreadable ({e})")
|
||||
continue
|
||||
|
||||
check(len(files) == N, f"{tool}: {len(files)} outputs, roster has {N}")
|
||||
if fmt == "plain": continue
|
||||
|
||||
bad_parse = bad_trip = 0
|
||||
for f in files:
|
||||
slug = slug_of(f)
|
||||
if slug not in src:
|
||||
bad(f"{tool}: {os.path.relpath(f, OUT)} has no roster source for slug '{slug}'"); continue
|
||||
try:
|
||||
text = open(f, encoding="utf-8").read()
|
||||
if fmt == "yaml-fm": data = frontmatter(text)
|
||||
elif fmt in ("toml", "toml-id"): data = tomllib.loads(text)
|
||||
else: data = yaml.safe_load(text) # yaml-id
|
||||
if not isinstance(data, dict): raise ValueError("top level is not a mapping")
|
||||
except Exception as e:
|
||||
bad_parse += 1; bad(f"{tool}: {os.path.relpath(f, OUT)} does not parse ({type(e).__name__}: {e})"); continue
|
||||
|
||||
if fmt in ("yaml-fm", "toml"):
|
||||
got, want = find_desc(data), src[slug][0]
|
||||
if want is None: continue # source failed strict parse; reported below
|
||||
if got != want:
|
||||
bad_trip += 1
|
||||
if bad_trip <= 3:
|
||||
bad(f"{tool}: {slug} description round-trip mismatch\n"
|
||||
f" source: {want[:70]!r}\n generated: {str(got)[:70]!r}")
|
||||
else:
|
||||
# Identifier formats carry no description; the id must be the slug
|
||||
# and the prose file it points at must exist.
|
||||
if fmt == "toml-id":
|
||||
ident, companion = data.get("system_prompt_id"), os.path.join(OUT, tool, "prompts", f"{slug}.md")
|
||||
else:
|
||||
ident, companion = (data.get("agent") or {}).get("name"), os.path.join(os.path.dirname(f), "system.md")
|
||||
if ident != slug:
|
||||
bad_trip += 1
|
||||
if bad_trip <= 3: bad(f"{tool}: {os.path.relpath(f, OUT)} identifier {ident!r} != slug {slug!r}")
|
||||
elif not os.path.isfile(companion):
|
||||
bad_trip += 1
|
||||
if bad_trip <= 3: bad(f"{tool}: {slug} companion file missing: {os.path.relpath(companion, OUT)}")
|
||||
report(tool, bad_parse, bad_trip,
|
||||
"parse and round-trip" if fmt in ("yaml-fm", "toml") else "parse, carry their slug, and have their prose file")
|
||||
|
||||
# --- Layer A (app-facing): every SOURCE frontmatter strict-parsed above -------
|
||||
for m in src_bad[:5]: bad(m)
|
||||
if len(src_bad) > 5: bad(f"...and {len(src_bad)-5} more source frontmatter problems")
|
||||
if not src_bad: ok(f"all {N} source agents strict-parse (app contract)")
|
||||
|
||||
# --- Layer B: manifest ---------------------------------------------------------
|
||||
def sha(b): return hashlib.sha256(b).hexdigest()
|
||||
def tool_hash(tool):
|
||||
h = hashlib.sha256()
|
||||
for f in sorted(glob.glob(os.path.join(OUT, tool, "**", "*"), recursive=True)):
|
||||
if os.path.isfile(f):
|
||||
h.update(os.path.relpath(f, OUT).encode()); h.update(sha(open(f, "rb").read()).encode())
|
||||
return h.hexdigest()
|
||||
lines = [f"{t}\t{tool_hash(t)}" for t in TOOLS]
|
||||
for c in ("divisions.json", "tools.json", "strategy/runbooks.json"):
|
||||
p = os.path.join(R, c)
|
||||
lines.append(f"{c}\t{sha(open(p,'rb').read()) if os.path.exists(p) else 'MISSING'}")
|
||||
new = "\n".join(lines) + "\n"
|
||||
|
||||
if UPDATE:
|
||||
open(MANIFEST, "w").write(new); ok(f"manifest written: {os.path.relpath(MANIFEST, R)}")
|
||||
elif not os.path.exists(MANIFEST):
|
||||
bad(f"manifest missing: run with --update to create {os.path.relpath(MANIFEST, R)}")
|
||||
else:
|
||||
old = dict(l.split("\t") for l in open(MANIFEST).read().splitlines() if "\t" in l)
|
||||
changed = [l.split("\t")[0] for l in lines if old.get(l.split("\t")[0]) != l.split("\t")[1]]
|
||||
if changed:
|
||||
bad("manifest drift — outputs/contracts changed for: " + ", ".join(changed) +
|
||||
"\n If intended, review the change and run --update; if not, this is a regression.")
|
||||
if DIFF:
|
||||
for t in changed:
|
||||
if t in SPEC:
|
||||
print(f" --diff {t}: (regenerate on the base branch to compare per-agent; hashes are aggregate)")
|
||||
else:
|
||||
ok("manifest matches (no output or contract drift)")
|
||||
|
||||
# --- report --------------------------------------------------------------------
|
||||
for m in fails: print(f" FAIL {m}")
|
||||
print(f"\nResults: {passes} passed, {len(fails)} failed ({N} roster agents x {len(TOOLS)} tools)")
|
||||
print("FAILED" if fails else "PASSED")
|
||||
sys.exit(1 if fails else 0)
|
||||
PY
|
||||
Reference in New Issue
Block a user