Files
UncleCat 6c9a50acab fix: load the Odoo agents from the plugin (1.0.17)
`claude plugin details agent-skills` reported `Agents (0)` while all ten
skills loaded. Two causes, both confirmed with a throwaway probe plugin:

- The loader only reads flat `.md` files in `agents/`. Our reviewer and
  tracer lived at `agents/<name>/SKILL.md`, which is never scanned.
- `plugin.json` listed them under an `agents` key. That key *replaces*
  default discovery rather than extending it, so even a valid flat path
  in the list produced zero agents.

Moved both files next to `planner.md`, which was already flat, and
dropped the key. Verified from a directory-sourced marketplace:
`Agents (3)  odoo-code-tracer, odoo-code-review, planner`.

The validator assumed every entry under agents/ was a directory, so it
would have gone silent on the moved files; it now checks flat `.md`
files too.
2026-09-11 17:19:57 +07:00
..