The Claude Code plugin bundle — its manifest, marketplace listing, install flow, and the components Claude Code auto-discovers

Failure modes

Symptom Cause Fix Severity
claude plugin install attune-ai@attune-ai can't find the plugin The marketplace wasn't added first Run claude plugin marketplace add Smart-AI-Memory/attune-ai before installing high
Components don't appear after install A component folder or the manifest is malformed Confirm plugin/.claude-plugin/plugin.json parses and the folders exist high
MCP tools missing but skills present The .mcp.json server didn't launch (uvx/attune-ai unavailable) See the mcp-server feature; confirm uvx --from attune-ai python -m attune.mcp.server runs medium
Hooks not firing hooks/hooks.json event wiring See the hooks feature; this page only confirms the file is shipped medium
Version looks stale plugin/core/__init__.py / manifest version not bumped at release The plugin version is set at release; the runtime is the pip attune-ai low

Risk areas

Diagnosis order

  1. Confirm the marketplace was added: claude plugin marketplace add Smart-AI-Memory/attune-ai.
  2. Confirm the manifest parses: cat plugin/.claude-plugin/plugin.json.
  3. Confirm the component folders exist: ls plugin/skills plugin/agents plugin/commands.
  4. For missing MCP tools, go to the mcp-server feature; for hooks, the hooks feature.