fix: memory-lint agents were missing from the agents page

Both metas declared "strength": "medium", which is not an LlmStrength
(very_low | low | average | high | very_high). `discover()` warns and skips a
meta.json it cannot deserialize — deliberately, so one bad file does not blank
the whole roster — so the two agents never reached /api/agents and the page's
"system" section only ever showed event-triage.

The skip is right; its silence is not. `agents::tests::every_shipped_agent_meta_parses`
deserializes every shipped meta.json, so a typo'd field now fails the build
instead of quietly costing an agent its place in the UI.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-28 22:18:51 +01:00
co-authored by Claude Opus 5
parent 046f060fcd
commit 70f6a927bc
19 changed files with 41 additions and 7469 deletions
+1 -1
View File
@@ -16,5 +16,5 @@
"inject_skills": false,
"inject_memory": ["shared-memory/index.md"],
"icon": "icon.png",
"strength": "medium"
"strength": "average"
}