By marsolab
Manage multi-agent AI code configurations across platforms (OpenAI Codex, Claude Code, Cursor, Gemini). Use when: (1) initializing new multi-agent projects, (2) syncing configurations (MCP servers, skills, rules, subagents) across platforms, (3) translating configurations between different agent platforms, (4) migrating from one agent platform to another, or (5) maintaining consistent agent configurations across development teams using different tools.
npx claudepluginhub marsolab/skills --plugin multi-agent-configA dual-compatible plugin marketplace for Claude Code and OpenAI Codex, providing curated skills for AI coding agents.
/plugin marketplace add marsolab/skills
Then install individual plugins:
/plugin install go-dev@marsolab-skills
/plugin install sys-arch@marsolab-skills
Clone this repository into your project and Codex will
discover plugins from .agents/plugins/marketplace.json
automatically.
| Plugin | Category | Description |
|---|---|---|
| apple-dev | Development | Swift, SwiftUI, HIG |
| copy | Writing | SaaS copywriting |
| go-dev | Development | Go backends, CLIs |
| landing-page-breakdown | Design | Page analysis |
| multi-agent-config | DevOps | Multi-agent configs |
| sys-arch | Architecture | System design |
| front-dev | Development | Modern web apps |
Create the plugin directory structure:
plugins/<plugin-name>/
├── .claude-plugin/plugin.json
├── .codex-plugin/plugin.json
└── skills/<skill-name>/
├── SKILL.md
└── references/ (optional)
Add the SKILL.md with YAML frontmatter:
---
name: my-skill
description: What this skill does.
version: 1.0.0
tags:
- tag1
- tag2
---
Run the sync script to regenerate manifests:
uv run scripts/sync-manifests.py
Update the category and display name mappings in
scripts/sync-manifests.py if needed.
Commit all changes and push to main.
.claude-plugin/marketplace.json # Claude Code
.agents/plugins/marketplace.json # Codex
plugins/
<plugin-name>/
.claude-plugin/plugin.json
.codex-plugin/plugin.json
skills/<skill-name>/
SKILL.md
references/
assets/
scripts/
scripts/
sync-manifests.py
SKILL.md frontmatter is the single source of truth. All JSON manifests are generated from it:
# Regenerate all manifests
uv run scripts/sync-manifests.py
# Check for drift (used in CI)
uv run scripts/sync-manifests.py --check
Team-oriented workflow plugin with role agents, 27 specialist agents, ECC-inspired commands, layered rules, and hooks skeleton.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer
Claude Code skills for Godot 4.x game development - GDScript patterns, interactive MCP workflows, scene design, and shaders
Use this agent when you need expert assistance with React Native development tasks including code analysis, component creation, debugging, performance optimization, or architectural decisions. Examples: <example>Context: User is working on a React Native app and needs help with a navigation issue. user: 'My stack navigator isn't working properly when I try to navigate between screens' assistant: 'Let me use the react-native-dev agent to analyze your navigation setup and provide a solution' <commentary>Since this is a React Native specific issue, use the react-native-dev agent to provide expert guidance on navigation problems.</commentary></example> <example>Context: User wants to create a new component that follows the existing app structure. user: 'I need to create a custom button component that matches our app's design system' assistant: 'I'll use the react-native-dev agent to create a button component that aligns with your existing codebase structure and design patterns' <commentary>The user needs React Native component development that should follow existing patterns, so use the react-native-dev agent.</commentary></example>
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques