Skip to content

v1.5.2

Choose a tag to compare

@GuillemRoca GuillemRoca released this 18 May 21:32
· 1 commit to main since this release
50562c3

Patch release. Fixes agent registration that was silently broken in v1.5.0 → v1.5.1.

What changed

  • Manifest — removed the "agents": [ ... ] array from .claude-plugin/plugin.json. As an explicit array, that entry is silently ignored by the current Claude Code plugin loader; agents must be auto-discovered from the standard ./agents/*.md path (the same convention as hooks, fixed in v1.5.1).
  • Persona catalogue movedagents/README.mddocs/agent-personas.md. Without manifest.agents, the loader walks agents/ and would pick up README.md (which has no YAML frontmatter) as a phantom fourth agent. Moving it out of the directory eliminates the noise. Internal sibling links rewritten; four references updated (AGENTS.md / CLAUDE.md symlink + each persona's "See …" footer).

Why this matters

On v1.5.1 the plugin loaded successfully but reported Agents (0) in claude plugin details — the three persona files (code-reviewer, security-auditor, test-engineer) were never registered. v1.5.2 restores Agents (3) and slash commands / parallel fan-out in /ship can now resolve the personas correctly.

Empirical verification

Verified by patching the cached 1.5.1 manifest in place before shipping:

State manifest.agents agents/README.md plugin details
v1.5.1 baseline array of 3 paths present Agents (0)
Test 1 removed present Agents (4) (3 real + README phantom)
Test 2 = v1.5.2 removed moved to docs/ Agents (3)

Upgrade

  • /pluginagent-skills-android → Update (or claude plugin update agent-skills-android@guillemroca) to refresh the local cache to 1.5.2, then start a new Claude Code session.

PR: #6