[BUG] --plugin-dir: Marketplace 'inline' not found in configuration

Resolved 💬 3 comments Opened Feb 24, 2026 by sandroden Closed Feb 28, 2026

Preflight Checklist

  • [x] I have searched existing issues and this hasn't been reported yet
  • [x] This is a single bug report
  • [x] I am using the latest version of Claude Code

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

  1. 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.
  1. Run claude --plugin-dir ./my-plugin
  2. Type /plugin and check plugin status
  3. The plugin shows the "Marketplace 'inline' not found" error

Related Issues

  • #11652 — Similar issue with --plugin-dir and 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

View original on GitHub ↗

This issue has 3 comments on GitHub. Read the full discussion on GitHub ↗