debug-plugins

Diagnose why Claude plugins or standalone skills fail to load.

37|13|Updated Jun 23, 2026
One-click install
npx skills add https://github.com/anthropics/claude-tag-plugins --skill debug-plugins
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: debug-plugins
Source: https://github.com/anthropics/claude-tag-plugins/tree/main/claude-tag-troubleshoot/skills/debug-plugins
Command: npx skills add https://github.com/anthropics/claude-tag-plugins --skill debug-plugins

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Use this Skill when a Claude plugin or standalone skill should be available but is missing, not loading, or behaving as if configuration changes never took effect. It helps pinpoint whether the issue is in the agent scope, the container contents, the launch command, the extracted plugin package, or the skill frontmatter.

Core Features & Use Cases

  • Container and scope inspection: Checks what plugin zips and skill directories actually arrived in the running session.
  • Launch configuration verification: Confirms whether Claude Code was started with the right plugin directory and account mount flags.
  • Failure diagnosis: Distinguishes between missing plugins, extraction problems, manifest errors, and invalid SKILL.md frontmatter.
  • Security-aware debugging: Treats logs and package contents as untrusted data and avoids executing anything found during inspection.
  • Use Case: A user says a newly installed plugin does not appear in Claude, and this Skill traces the load path to explain exactly what broke and how to fix it.

Quick Start

Ask this Skill to diagnose why your Claude plugin or skill is not showing up and tell you the exact fix.

Frequently Asked Questions about debug-plugins

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
Why is my Claude plugin not loading in the current session?

Claude plugins fail to load due to agent scope issues, incorrect launch command flags, extraction problems, manifest errors, or invalid SKILL.md frontmatter. Diagnosing the load path involves inspecting container files and logs to verify configuration and extraction integrity.

How do I troubleshoot a Claude skill that is missing or not showing up?

To troubleshoot a missing Claude skill, inspect the running session's container to verify plugin zips and skill directories arrived correctly. Then confirm the launch configuration included the right account mount flags and check the SKILL.md frontmatter for validation errors.

How does Claude Code verify plugin extraction and manifest integrity?

Claude Code verifies plugin extraction and manifest integrity by inspecting container files and session logs. This process checks whether the extracted plugin package contents and the SKILL.md frontmatter are structurally valid and securely loaded without executing untrusted data.

What causes Claude plugin configuration changes to never take effect?

Configuration changes fail to take effect when the launch command lacks the correct plugin directory and account mount flags. Verifying the agent scope and container contents ensures the newly installed plugin package is properly extracted and recognized by the loader.

Can I inspect Claude plugin package contents safely during debugging?

Yes, debugging plugin loads requires inspecting package contents and logs while treating them as untrusted data. Security-aware debugging examines the extracted files and manifest configuration to identify errors without executing any potentially malicious code found during inspection.

What is the best way to distinguish between a missing plugin and a manifest error?

The best way to distinguish a missing plugin from a manifest error is tracing the load path from the launch flags to the container. This inspection reveals whether the plugin zip failed to mount, did not extract, or arrived with invalid SKILL.md frontmatter.