Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
daymade avatar

Claude Skills Troubleshooting

  • 698 installs
  • 1.3k repo stars
  • Updated August 4, 2026
  • daymade/claude-code-skills

claude-skills-troubleshooting is a debugging agent skill that systematically diagnoses and fixes failures when Claude Code, Cursor, or custom agent skills stop working for developers maintaining agent skill installations

About

claude-skills-troubleshooting is a daymade/claude-code-skills agent skill with 524 installs listed on skills.sh that guides systematic diagnosis when Claude Code, Cursor, or custom agent skills fail to load, trigger, or execute correctly. Developers reach for claude-skills-troubleshooting after skill manifests, paths, hooks, or agent configurations break following upgrades or repo changes. The skill focuses on reproducible troubleshooting steps across agent environments rather than rewriting skill content from scratch. Use it when skills silently stop activating, commands error on invocation, or IDE agent integrations regress after configuration edits.

  • Diagnoses common Claude Code and Cursor agent failures
  • Provides step-by-step troubleshooting workflows
  • Covers permission, context, and output parsing issues
  • Works across multiple agent environments and skill types
  • Includes recovery commands and configuration fixes

Claude Skills Troubleshooting by the numbers

  • 698 all-time installs (skills.sh)
  • Ranked #1,432 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/daymade/claude-code-skills --skill claude-skills-troubleshooting

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs698
repo stars1.3k
Last updatedAugust 4, 2026
Repositorydaymade/claude-code-skills

Why do Claude Code agent skills stop working?

Systematically diagnose and fix failures when Claude Code, Cursor, or custom agent skills stop working.

Who is it for?

Developers maintaining Claude Code or Cursor skill libraries who hit sudden skill load, trigger, or execution failures.

Skip if: Skip claude-skills-troubleshooting when authoring brand-new skill content from scratch with no runtime or installation errors present.

When should I use this skill?

Trigger when Claude Code, Cursor, or custom agent skills fail to load, trigger incorrectly, or error after configuration or install changes.

What you get

Identified root cause, corrected skill manifest or path fixes, and restored agent skill trigger behavior.

  • root cause diagnosis
  • corrected skill configuration steps

By the numbers

  • Listed with 524 installs on skills.sh

Files

SKILL.mdMarkdownGitHub ↗

Claude Skills Troubleshooting

Overview

Diagnose and resolve common Claude Code plugin and skill configuration issues. This skill provides systematic debugging workflows for plugin installation, enablement, and activation problems.

Quick Diagnosis

Run the diagnostic script to identify common issues:

python3 scripts/diagnose_plugins.py

The script checks:

  • Installed vs enabled plugins mismatch
  • Missing enabledPlugins entries in settings.json
  • Stale marketplace cache
  • Invalid plugin configurations

Common Issues

Issue 1: Plugin Installed But Not Showing in Available Skills

Symptoms:

  • /plugin shows plugin as installed
  • Skill not appearing in Skill tool's available list
  • Plugin metadata exists in installed_plugins.json

Root Cause: Known bug (GitHub #17832) - plugins are added to installed_plugins.json but NOT automatically added to enabledPlugins in settings.json.

Diagnosis:

# Check if plugin is in installed_plugins.json
cat ~/.claude/plugins/installed_plugins.json | grep "plugin-name"

# Check if plugin is enabled in settings.json
cat ~/.claude/settings.json | grep "plugin-name"

Solution:

# Option 1: Use CLI to enable
claude plugin enable plugin-name@marketplace-name

# Option 2: Manually edit settings.json
# Add to enabledPlugins section:
# "plugin-name@marketplace-name": true

Issue 2: Understanding Plugin State Architecture

Key files:

FilePurpose
~/.claude/plugins/installed_plugins.jsonRegistry of ALL plugins (installed + disabled)
~/.claude/settings.jsonenabledPluginsControls which plugins are ACTIVE
~/.claude/plugins/known_marketplaces.jsonRegistered marketplace sources
~/.claude/plugins/cache/Actual plugin files

A plugin is active ONLY when: 1. Exists in installed_plugins.json (registered) 2. Listed in settings.jsonenabledPlugins with value true

Issue 3: Marketplace Cache Stale

Symptoms:

  • GitHub has latest changes
  • Install finds plugin but gets old version
  • Newly added plugins not visible

Solution:

# Update marketplace cache
claude plugin marketplace update marketplace-name

# Or clear and re-fetch
rm -rf ~/.claude/plugins/cache/marketplace-name
claude plugin marketplace update marketplace-name

Issue 4: Plugin Not Found in Marketplace

Common causes (in order of likelihood):

1. Local changes not pushed to GitHub - Most common!

   git status
   git push
   claude plugin marketplace update marketplace-name

2. marketplace.json configuration error

   python3 -m json.tool .claude-plugin/marketplace.json

3. Skill directory missing

   ls -la skill-name/SKILL.md

Diagnostic Commands Reference

PurposeCommand
List marketplacesclaude plugin marketplace list
Update marketplaceclaude plugin marketplace update {name}
Install pluginclaude plugin install {plugin}@{marketplace}
Enable pluginclaude plugin enable {plugin}@{marketplace}
Disable pluginclaude plugin disable {plugin}@{marketplace}
Uninstall pluginclaude plugin uninstall {plugin}@{marketplace}
Check installed`cat ~/.claude/plugins/installed_plugins.json \
Check enabled`cat ~/.claude/settings.json \

Batch Enable Missing Plugins

To enable all installed but disabled plugins from a marketplace:

python3 scripts/enable_all_plugins.py marketplace-name

Skills vs Commands Architecture

Claude Code has two types of user-invocable extensions:

1. Skills (in skills/ directory)

  • Auto-activated based on description matching
  • Loaded when user request matches skill description

2. Commands (in commands/ directory)

  • Explicitly invocable via /command-name
  • Appears in Skill tool's available list
  • Requires command file (e.g., commands/seer.md)

If a skill should be explicitly invocable, add a corresponding command file.

References

  • See references/known_issues.md for GitHub issue tracking
  • See references/architecture.md for detailed plugin architecture

Related skills

How it compares

Use claude-skills-troubleshooting for broken skill runtime diagnosis rather than skill authoring generators or feature documentation skills.

FAQ

Which agents does claude-skills-troubleshooting support?

claude-skills-troubleshooting supports Claude Code, Cursor, and custom agent skill setups, providing systematic diagnosis when skills stop loading, triggering, or executing after configuration changes.

How popular is claude-skills-troubleshooting?

claude-skills-troubleshooting is published in daymade/claude-code-skills and is listed on skills.sh with 524 installs, indicating community use for agent skill failure diagnosis.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.