npx skills add https://github.com/majesticlabs-dev/majestic-marketplace --skill cloudflare-coderInstallez cette compétence avec la CLI et commencez à utiliser le flux de travail SKILL.md dans votre espace de travail.
The Majestic marketplace where we share our workflows.
New here? Check out the Marketplace Tutorial for an interactive walkthrough.
Coding is no longer the bottleneck. Planning, review, and learning loops matter more than syntax. Each feature makes the next one easier to build.
| Step | What Happens | Key Tools |
|---|---|---|
| Plan | Agents research codebase + best practices, produce detailed implementation plans | /majestic:plan, architect agent |
| Work | Agents write code, tests, and iterate using real app feedback | /majestic:build-task, coder skills |
| Assess | Multi-angle review: security, performance, simplicity, conventions | /majestic:code-review, quality-gate |
| Reflect | Analyze session patterns, capture lessons so future agents improve | /majestic-tools:insight:reflect, /majestic:add-lesson |
See the Workflow Guide for detailed documentation.
Run the installer:
curl -fsSL https://raw.githubusercontent.com/majesticlabs-dev/majestic-marketplace/master/install.sh | bash
This gives you options to:
Run claude and add the marketplace:
/plugin marketplace add https://github.com/majesticlabs-dev/majestic-marketplace.git
Then install a plugin:
/plugin install {plugin-name}
Export Majestic plugins to OpenCode or Codex with schema-aware conversion:
./scripts/install-codex.sh
# Install all plugins
./scripts/install-codex.sh --all
# Install all plugins to OpenCode
./scripts/install-opencode.sh --all
# Install specific plugins
./scripts/install-codex.sh engineer rails tools
# Example (explicit): convert engineer, rails, and tools to OpenCode
# Output target: ~/.config/opencode
./scripts/install-opencode.sh engineer rails tools
# Install one plugin (short or prefixed)
./scripts/install-codex.sh engineer
./scripts/install-codex.sh majestic-tools
Both commands are now local to this repository and only require Ruby (scripts/convert-plugin.rb).
This runs a converter pipeline (not a plain file copy), so incompatible Claude metadata is translated for target formats.
disable-model-invocation frontmatter is preserved as part of source metadata parsing, but it does not exclude a command from conversion for OpenCode/Codex output.
Output locations:
~/.codex/skills/ and ~/.codex/prompts/~/.config/opencode (opencode.json, agents/, skills/, plugins/)Limitations: Codex still does not support some Claude Code features (Task, hooks, some MCP integrations), so behavior is reduced there.
| Plugin | Description |
|---|---|
| majestic-engineer | Language-agnostic engineering workflows (17 agents, 8 commands, 12 skills) |
| majestic-rails | Ruby on Rails development tools (23 agents, 5 commands, 9 skills) |
| majestic-react | Modern React development with TypeScript (3 agents, 1 command, 4 skills) |
| majestic-python | Python development tools (2 agents) |
| majestic-devops | Infrastructure-as-Code and DevOps workflows (1 agent, 8 skills) |
| majestic-llm | External LLM integration - Codex, Gemini (5 agents, 1 command) |
| majestic-marketing | Marketing and SEO tools (14 agents, 2 commands, 24 skills) |
| majestic-sales | Sales acceleration tools (1 command, 6 skills) |
| majestic-company | Business operations and CEO tools (2 agents, 21 skills) |
| majestic-experts | Expert panel discussion system (2 agents, 1 command) |
| majestic-tools | Claude Code customization tools (10 commands, 3 skills) |
| Plugin | Description | Install |
|---|---|---|
| skills | Skill creation tools - scaffold, lint, and manage Claude Code skills | /plugin marketplace add anthropics/skills |
| Plugin | Description | Install |
|---|---|---|
| beads | Dependency-aware issue tracker - issues chained like beads with blocking relationships | curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/install.sh | bash |
| beads_viewer | Terminal UI for Beads with DAG visualization, graph metrics, and AI agent "robot mode" | curl -fsSL https://raw.githubusercontent.com/Dicklesworthstone/beads_viewer/main/install.sh | bash |
| claude-hud | Real-time session insights - context window usage, active tools, todo progress, git status in statusline | /plugin marketplace add jarrodwatts/claude-hud |
| browser-cdp | Browser automation via Chrome DevTools Protocol - control Chrome, Brave, Edge with real profiles | npm install -g browser-cdp or bunx browser-cdp |
| agent-browser | Fast Rust CLI for AI agents - semantic locators, accessibility snapshots, session isolation | npm install -g agent-browser && agent-browser install |
| minimalist-entrepreneur | Business frameworks from The Minimalist Entrepreneur by Sahil Lavingia — community discovery, idea validation, MVP, pricing, sustainable growth | git clone https://github.com/slavingia/skills.git ~/.claude/plugins/skills |
Add Claude Code environment variables to your shell profile:
# Option 1: Use the installer (menu option 4)
curl -fsSL https://raw.githubusercontent.com/majesticlabs-dev/majestic-marketplace/master/install.sh | bash
# Option 2: Manual - append to ~/.zshrc or ~/.bashrc
curl -fsSL https://raw.githubusercontent.com/majesticlabs-dev/majestic-marketplace/master/instructions/shell-settings.sh >> ~/.zshrc
source ~/.zshrc
| Setting | Description |
|---|---|
ENABLE_BACKGROUND_TASKS |
Enables background task execution |
FORCE_AUTO_BACKGROUND_TASKS |
Automatically runs eligible tasks in background |
CLAUDE_BASH_MAINTAIN_PROJECT_WORKING_DIR |
Keeps bash commands in project directory |
cly alias |
alias cly="claude --dangerously-skip-permissions" - auto-approve for trusted projects |
Add the Sequential Thinking MCP server for enhanced reasoning:
claude mcp add sequential-thinking -s local -- npx -y @modelcontextprotocol/server-sequential-thinking
/plugin marketplace update majestic-marketplace
This pulls the latest changes from the marketplace repository and updates all installed plugins.
/plugin update majestic-engineer
/plugin list
Configure how Claude Code communicates with you using the /output-style command:
/output-style

| Style | Description |
|---|---|
| Bullet Points | Hierarchical bullet points for quick scanning |
| Explanatory | Claude explains its implementation choices and codebase patterns |
| GenUI | Generative UI with embedded modern styling |
| HTML Structured | Clean semantic HTML with proper structure |
| Learning | Claude pauses and asks you to write small pieces of code for hands-on practice |
| Markdown Focused | Full markdown features for maximum readability |
| Table Based | Markdown tables for better organization and scanning |
| TTS Summary | Audio task completion announcements with TTS |
| Ultra Concise | Minimal words maximum speed direct actions |
| YAML Structured | Machine-readable YAML format for structured data and easy parsing |
See Output Styles for full documentation and customization.
After installing plugins, run this command in your project to set up AI agent configuration:
/majestic:init
This creates:
The .agents.yml file stores project-specific settings that commands read automatically:
# .agents.yml - Project configuration for Claude Code commands
default_branch: main
tech_stack: rails # rails | python | generic
app_status: development # development | production
task_management: github # github | linear | beads | file | none
workflow: worktrees # worktrees | branches
branch_naming: type/issue-desc # feature/desc | issue-desc | type/issue-desc | user/desc
lessons_path: .agents/lessons/
Commands like /majestic:code-review, /git:create-pr, and /majestic:build-task read this config automatically.
Custom Config Path: Override the config filename with AGENTS_CONFIG environment variable:
export AGENTS_CONFIG=".my-project-config.yml"
Add pre-built coding guidelines to your CLAUDE.md using the installer:
bash -c "$(curl -fsSL https://raw.githubusercontent.com/majesticlabs-dev/majestic-marketplace/master/install.sh)"
Available modules:
| Resource | Description |
|---|---|
| Marketplace Tutorial | Interactive slide deck for getting started |
| Output Styles | Pre-built formatting guides for consistent responses |
| Instructions | CLAUDE.md instruction modules |
This project is licensed under the Polyform NonCommercial License 1.0.0.
For commercial licensing: Contact Us