Bug Report: Plugin skills not appearing in slash command autocomplete
Preflight Checklist
What's Wrong?
Skills from a marketplace plugin work when typed directly but don't appear in the / slash command autocomplete dropdown. Another plugin (superpowers) from a different marketplace shows its skills in autocomplete correctly. Both plugins have identical directory structure and SKILL.md format.
When typing /supe, autocomplete shows:
/superpowers:brainstorm
/superpowers:execute-plan
- etc.
When typing /agent or /res or /vibe, autocomplete shows nothing from the agentops plugin.
However, typing /vibe directly and pressing Enter does work - the skill loads and executes correctly.
What Should Happen?
All skills from all enabled plugins should appear in the autocomplete dropdown when typing /. The agentops skills should appear alongside superpowers skills:
/agentops:research
/agentops:vibe
/agentops:plan
- etc.
Steps to Reproduce
-
Add a custom marketplace:
claude plugin marketplace add agentops-marketplace https://github.com/boshu2/agentops
-
Install the plugin:
claude plugin install agentops@agentops-marketplace
-
Verify installation:
claude plugin list
# Output shows: agentops@agentops-marketplace, Version: 1.0.8, Status: ✔ enabled
-
Validate the plugin (passes):
claude plugin validate ~/.claude/plugins/cache/agentops-marketplace/agentops/1.0.8
# Output: ✔ Validation passed
-
Start a new Claude Code session:
-
Type / and observe the autocomplete dropdown - agentops skills are missing
-
Type /vibe and press Enter - skill executes correctly (proving it IS loaded)
Is this a regression?
Yes, this is a regression. The agentops plugin skills were appearing correctly in autocomplete before. After an uninstall/reinstall cycle (to troubleshoot a different issue), they no longer appear in autocomplete even though the skills still work when typed directly.
Claude Code Version
Platform
Anthropic API (direct)
Operating System
macOS Darwin 25.2.0 (Sequoia)
Terminal/Shell
- Terminal: iTerm2
- Shell: zsh
Additional Context
Evidence that skills ARE loaded correctly
The plugin's skills appear in Claude's Skill tool context and execute when typed directly:
> /vibe
[Skill loads, SKILL.md content displayed, workflow executes successfully]
Plugin structure comparison
Both plugins have identical structure:
.claude-plugin/
├── plugin.json
└── marketplace.json
skills/
├── skillname/
│ └── SKILL.md
└── ...
SKILL.md format is identical
Both use the same YAML frontmatter:
---
name: skillname
description: "Skill description"
---
# Skill content...
Troubleshooting attempted
- Uninstall plugin → reinstall: No change
- Clear plugin cache → reinstall: No change
- Update marketplace → reinstall: No change
- Start new session: No change
- Validate plugin: Passes
Hypothesis
The autocomplete dropdown may use a separate cache that isn't refreshed when plugins are installed, or there's a race condition where recently installed plugins aren't registered for autocomplete even though they load correctly at runtime.
Workaround
Type skill commands directly (e.g., /vibe, /research) - they execute correctly despite not appearing in autocomplete.
Bug Report: Plugin skills not appearing in slash command autocomplete
Preflight Checklist
What's Wrong?
Skills from a marketplace plugin work when typed directly but don't appear in the
/slash command autocomplete dropdown. Another plugin (superpowers) from a different marketplace shows its skills in autocomplete correctly. Both plugins have identical directory structure and SKILL.md format.When typing
/supe, autocomplete shows:/superpowers:brainstorm/superpowers:execute-planWhen typing
/agentor/resor/vibe, autocomplete shows nothing from the agentops plugin.However, typing
/vibedirectly and pressing Enter does work - the skill loads and executes correctly.What Should Happen?
All skills from all enabled plugins should appear in the autocomplete dropdown when typing
/. The agentops skills should appear alongside superpowers skills:/agentops:research/agentops:vibe/agentops:planSteps to Reproduce
Add a custom marketplace:
Install the plugin:
Verify installation:
claude plugin list # Output shows: agentops@agentops-marketplace, Version: 1.0.8, Status: ✔ enabledValidate the plugin (passes):
Start a new Claude Code session:
Type
/and observe the autocomplete dropdown - agentops skills are missingType
/vibeand press Enter - skill executes correctly (proving it IS loaded)Is this a regression?
Yes, this is a regression. The agentops plugin skills were appearing correctly in autocomplete before. After an uninstall/reinstall cycle (to troubleshoot a different issue), they no longer appear in autocomplete even though the skills still work when typed directly.
Claude Code Version
Platform
Anthropic API (direct)
Operating System
macOS Darwin 25.2.0 (Sequoia)
Terminal/Shell
Additional Context
Evidence that skills ARE loaded correctly
The plugin's skills appear in Claude's Skill tool context and execute when typed directly:
Plugin structure comparison
Both plugins have identical structure:
SKILL.md format is identical
Both use the same YAML frontmatter:
Troubleshooting attempted
Hypothesis
The autocomplete dropdown may use a separate cache that isn't refreshed when plugins are installed, or there's a race condition where recently installed plugins aren't registered for autocomplete even though they load correctly at runtime.
Workaround
Type skill commands directly (e.g.,
/vibe,/research) - they execute correctly despite not appearing in autocomplete.