This repository provides two separate Claude Code plugins managed by a single marketplace.json file.
One marketplace.json at the root level lists both plugins:
{
"name": "auth0-agent-skills",
"plugins": [
{
"name": "auth0",
"path": "plugins/auth0",
...
},
{
"name": "auth0-sdks",
"path": "plugins/auth0-sdks",
...
}
]
}Plugin 1: auth0 (Core Skills)
auth0-quickstart- Framework detectionauth0-migration- Migrate from other providersauth0-mfa- Multi-Factor Authentication
Plugin 2: auth0-sdks (SDK Skills)
auth0-react- React SPAsauth0-nextjs- Next.jsauth0-vue- Vue.js 3auth0-angular- Angular 12+auth0-express- Express.jsauth0-react-native- React Native & Expo
auth0/agent-skills/
├── .claude-plugin/
│ └── marketplace.json # Single marketplace file listing both plugins
├── plugins/
│ ├── auth0/ # Core Plugin
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # Plugin config
│ │ └── skills/ # Skills directory
│ │ ├── auth0-quickstart/
│ │ ├── auth0-migration/
│ │ └── auth0-mfa/
│ └── auth0-sdks/ # SDK Plugin
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin config
│ └── skills/ # Skills directory
│ ├── auth0-react/
│ ├── auth0-nextjs/
│ ├── auth0-vue/
│ ├── auth0-angular/
│ ├── auth0-express/
│ └── auth0-react-native/
├── PLUGIN.md
├── README.md
└── LICENSE
Purpose: Master marketplace listing for both plugins
Location: .claude-plugin/marketplace.json
Contains:
- Repository metadata (name, version, author, license)
- Array of plugins with their configurations
- Each plugin definition includes:
- Plugin name (required, kebab-case)
- Plugin source path (required) - e.g.,
plugins/auth0 - Plugin description, version, keywords, category
- Skills are auto-discovered from the
skills/directory within each plugin
Example:
{
"name": "auth0-agent-skills",
"displayName": "Auth0 Agent Skills",
"version": "1.0.0",
"plugins": [
{
"name": "auth0",
"source": "plugins/auth0",
"description": "Essential Auth0 skills including quickstarts, migration from other providers, and Multi-Factor Authentication (MFA).",
"version": "1.0.0",
"keywords": ["auth0", "quickstart", "migration", "mfa", "security"],
"category": "authentication"
},
{
"name": "auth0-sdks",
"source": "plugins/auth0-sdks",
"description": "Framework-specific Auth0 SDK integration skills for React, Next.js, Vue, Angular, Express, and React Native with complete implementation guides.",
"version": "1.0.0",
"keywords": ["auth0", "sdk", "react", "nextjs", "vue", "angular", "express", "react-native"],
"category": "integration"
}
]
}Purpose: Plugin-specific configuration
Location:
plugins/auth0/.claude-plugin/plugin.jsonplugins/auth0-sdks/.claude-plugin/plugin.json
Contains:
- Plugin name, display name, and version
- Plugin description
- Skills are auto-discovered from the
skills/directory
Example (plugins/auth0/.claude-plugin/plugin.json):
{
"name": "auth0",
"displayName": "Auth0 Skills",
"version": "1.0.0",
"description": "Essential Auth0 skills including quickstarts, migration from other providers, and Multi-Factor Authentication (MFA)."
}Install Both Plugins:
- Open Claude Code
- Navigate to Settings → Plugins
- Search "Auth0"
- Install "Auth0 Agent Skills" (installs both plugins)
Install Individual Plugin:
- Search for "Auth0 Core Skills" or "Auth0 SDK Skills"
- Install the specific plugin you need
# Install all skills from both plugins
npx skills add auth0/agent-skills
# Install specific plugin
npx skills add auth0/agent-skills/plugins/auth0
npx skills add auth0/agent-skills/plugins/auth0-sdks
# Install individual skill
npx skills add auth0/agent-skills/plugins/auth0/skills/auth0-quickstartgit clone https://github.com/auth0/agent-skills.git
cd agent-skills
# Copy all skills
cp -r plugins/auth0/skills/* ~/.claude/skills/
cp -r plugins/auth0-sdks/skills/* ~/.claude/skills/✅ Unified discovery - Users find both plugins under one entry ✅ Consistent branding - One Auth0 listing in marketplace ✅ Easier management - Single metadata file to maintain ✅ Bundle option - Can install all at once
✅ Flexibility - Users can install only what they need ✅ Smaller downloads - Each plugin is focused ✅ Independent updates - Update SDK skills without core ✅ Clear boundaries - Logical separation of concerns
✅ Self-contained - Each plugin includes its own skills ✅ No shared dependencies - Skills belong to their plugin ✅ Easy distribution - Plugin is a complete package ✅ Clear ownership - Obvious which skills belong to which plugin
Both plugins are fully independent and can be installed separately:
- auth0 plugin: Core skills (quickstart, migration, MFA)
- auth0-sdks plugin: Framework-specific integrations
Benefits:
- ✅ Install only what you need
- ✅ No forced dependencies
- ✅ Maximum flexibility
- ✅ Smaller installations
Recommendation: Install both for complete Auth0 coverage, but either plugin works standalone.
Edit marketplace.json:
{
"version": "1.1.0",
"plugins": [
{
"name": "auth0",
"version": "1.1.0",
...
},
{
"name": "auth0-sdks",
"version": "1.1.0",
...
}
]
}Also update each plugins/*/plugin.json.
git add .
git commit -m "Release v1.1.0"
git tag v1.1.0
git push origin main --tags- Submit repository to Claude Code marketplace
- Marketplace will read
marketplace.json - Both plugins will be listed under "Auth0 Agent Skills"
- Users can install one or both plugins
User installs "Auth0 Agent Skills" from marketplace → gets both plugins with all 9 skills
User only needs framework detection and MFA → installs just auth0 plugin (3 skills)
User already has quickstart setup → installs just auth0-sdks plugin (6 skills)
Note: Will auto-install auth0 due to dependency
Developer working on React app → uses CLI to install just auth0-react skill
Both plugins marked as "paid":
{
"pricing": "paid"
}Indicates enterprise/customer-only distribution with Auth0 support.
- GitHub Issues: https://github.com/auth0/agent-skills/issues
- Email: support@auth0.com
- Documentation: README.md for usage, PLUGIN.md for architecture
- v1.0.0 - Initial marketplace release
- Single marketplace.json listing both plugins
- Plugins in their own directories with their skills
- Clear separation: core (3 skills) vs SDKs (6 skills)
- Progressive disclosure for large skills
- Skills auto-discovery within plugins
- Plugin independence (no forced dependencies)