Preflight Checklist
What's Wrong?
When loading a plugin with --plugin-dir, the plugin appears as installed but shows this error in its status:
Marketplace 'inline' not found in configuration. Available marketplaces: claude-code-plugins,
anthropic-agent-skills, superpowers-marketplace, claude-plugins-official, everything-claude-code
The plugin's skills are not loaded and cannot be used.
What Should Happen?
The plugin loaded via --plugin-dir should work correctly. The internal "inline" marketplace assigned to --plugin-dir plugins should be properly registered so components can be resolved.
Workaround
Creating a local marketplace and installing the plugin through the standard marketplace flow works correctly:
/plugin marketplace add ./my-marketplace
/plugin install my-plugin@my-marketplace
Steps to Reproduce
- Create a valid plugin following the official documentation:
my-plugin/
├── .claude-plugin/
│ └── plugin.json
└── skills/
└── my-skill/
└── SKILL.md
plugin.json:
{
"name": "my-plugin",
"description": "Test plugin",
"version": "1.0.0",
"author": { "name": "Test" }
}
SKILL.md:
---
name: my-skill
description: A test skill
---
Test skill content.
- Run
claude --plugin-dir ./my-plugin
- Type
/plugin and check plugin status
- The plugin shows the "Marketplace 'inline' not found" error
Related Issues
Claude Code Version
2.1.52 (Claude Code)
Platform
Anthropic API
Operating System
Ubuntu 24.04.4 LTS (Linux 6.14.0)
Terminal/Shell
bash
Preflight Checklist
What's Wrong?
When loading a plugin with
--plugin-dir, the plugin appears as installed but shows this error in its status:The plugin's skills are not loaded and cannot be used.
What Should Happen?
The plugin loaded via
--plugin-dirshould work correctly. The internal "inline" marketplace assigned to--plugin-dirplugins should be properly registered so components can be resolved.Workaround
Creating a local marketplace and installing the plugin through the standard marketplace flow works correctly:
Steps to Reproduce
plugin.json:{ "name": "my-plugin", "description": "Test plugin", "version": "1.0.0", "author": { "name": "Test" } }SKILL.md:claude --plugin-dir ./my-plugin/pluginand check plugin statusRelated Issues
--plugin-dirif--setting-sources ""#11652 — Similar issue with--plugin-dirand the "inline" marketplace (closed due to inactivity)Claude Code Version
2.1.52 (Claude Code)
Platform
Anthropic API
Operating System
Ubuntu 24.04.4 LTS (Linux 6.14.0)
Terminal/Shell
bash