🎯

market-research

🎯Skill

from majesticlabs-dev/majestic-marketplace

VibeIndex|
What it does

Conducts comprehensive market research and competitive analysis for product development, identifying market trends, customer needs, and potential opportunities.

πŸ“¦

Part of

majesticlabs-dev/majestic-marketplace(184 items)

market-research

Installation

Install ScriptRun install script
curl -fsSL https://raw.githubusercontent.com/majesticlabs-dev/majestic-marketplace/master/install.sh | bash
Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add https://github.com/majesticlabs-dev/majestic-marketplace.git
Install PluginInstall plugin from marketplace
/plugin install {plugin-name}
Local ServerRun MCP server locally
claude mcp add sequential-thinking -s local -- npx -y @modelcontextprotocol/server-sequential-thinking
Claude CodeAdd plugin in Claude Code
/plugin marketplace update majestic-marketplace

+ 3 more commands

πŸ“– Extracted from docs: majesticlabs-dev/majestic-marketplace
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# Majestic Marketplace

The Majestic marketplace where we share our workflows.

New here? Check out the [Marketplace Tutorial](https://tutorial.majesticmarketplace.com) for an interactive walkthrough.

The Shift: Engineers Orchestrate Agents

Coding is no longer the bottleneck. Planning, review, and learning loops matter more than syntax. Each feature makes the next one easier to build.

Plan β†’ Work β†’ Assess β†’ Reflect

| 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](https://github.com/majesticlabs-dev/majestic-marketplace/wiki/Workflow-Guide) for detailed documentation.

Quick Start

Run the installer:

```bash

curl -fsSL https://raw.githubusercontent.com/majesticlabs-dev/majestic-marketplace/master/install.sh | bash

```

This gives you options to:

  1. Add marketplace (enables plugin installation)
  2. Add output styles (formatting guides)
  3. Add MCP servers (Sequential Thinking)
  4. Configure shell settings (env vars + alias)
  5. Install Beads (AI agent memory)
  6. Install all

Manual Installation

#### Claude Code

Run claude and add the marketplace:

```bash

/plugin marketplace add https://github.com/majesticlabs-dev/majestic-marketplace.git

```

Then install a plugin:

```bash

/plugin install {plugin-name}

```

#### Codex CLI (OpenAI)

Export Majestic skills and commands to Codex CLI:

```bash

# Interactive selection

./scripts/install-codex.sh

# Install all plugins

./scripts/install-codex.sh --all

# Install specific plugins

./scripts/install-codex.sh engineer rails tools

```

This copies skills to ~/.codex/skills/ and commands to ~/.codex/prompts/.

Limitations: Codex doesn't support Claude Code's Task tool, so subagents (parallel research) won't run. Core skills and commands still provide valuable guidance.

Majestic Plugins

| Plugin | Description |

|--------|-------------|

| [majestic-engineer](plugins/majestic-engineer/README.md) | Language-agnostic engineering workflows (17 agents, 8 commands, 12 skills) |

| [majestic-rails](plugins/majestic-rails/README.md) | Ruby on Rails development tools (23 agents, 5 commands, 9 skills) |

| [majestic-react](plugins/majestic-react/README.md) | Modern React development with TypeScript (3 agents, 1 command, 4 skills) |

| [majestic-python](plugins/majestic-python/README.md) | Python development tools (2 agents) |

| [majestic-devops](plugins/majestic-devops/README.md) | Infrastructure-as-Code and DevOps workflows (1 agent, 8 skills) |

| [majestic-llm](plugins/majestic-llm/README.md) | External LLM integration - Codex, Gemini (5 agents, 1 command) |

| [majestic-marketing](plugins/majestic-marketing/README.md) | Marketing and SEO tools (14 agents, 2 commands, 24 skills) |

| [majestic-sales](plugins/majestic-sales/README.md) | Sales acceleration tools (1 command, 6 skills) |

| [majestic-company](plugins/majestic-company/README.md) | Business operations and CEO tools (2 agents, 21 skills) |

| [majestic-experts](plugins/majestic-experts/README.md) | Expert panel discussion system (2 agents, 1 command) |

| [majestic-tools](plugins/majestic-tools/README.md) | Claude Code customization tools (10 commands, 3 skills) |

Recommended Tools

Anthropic Official

| Plugin | Description | Install |

|--------|-------------|---------|

| [ralph-loop](https://github.com/anthropics/claude-plugins-official/tree/main/plugins/ralph-loop) | Continuous AI agent loop - iterates until task completion using stop hooks | /plugin marketplace add anthropics/claude-plugins-official |

| [skills](https://github.com/anthropics/skills) | Skill creation tools - scaffold, lint, and manage Claude Code skills | /plugin marketplace add anthropics/skills |

Community Tools

| Plugin | Description | Install |

|--------|-------------|---------|

| [beads](https://github.com/steveyegge/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](https://github.com/Dicklesworthstone/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](https://github.com/jarrodwatts/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](https://github.com/dpaluy/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](https://github.com/vercel-labs/agent-browser) | Fast Rust CLI for AI agents - semantic locators, accessibility snapshots, session isolation | npm install -g agent-browser && agent-browser install |

Recommended Settings

Add Claude Code environment variables to your shell profile:

```bash

# 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 |

MCP Servers

Add the Sequential Thinking MCP server for enhanced reasoning:

```bash

claude mcp add sequential-thinking -s local -- npx -y @modelcontextprotocol/server-sequential-thinking

```

Updating Marketplace & Plugins

Update Everything

```bash

/plugin marketplace update majestic-marketplace

```

This pulls the latest changes from the marketplace repository and updates all installed plugins.

Update Individual Plugin

```bash

/plugin update majestic-engineer

```

Check Installed Versions

```bash

/plugin list

```

Output Styles

Configure how Claude Code communicates with you using the /output-style command:

```bash

/output-style

```

![Output Style Selection](instructions/select-style.png)

| 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](output-styles/README.md) for full documentation and customization.

Project Setup

Initialize Project Configuration

After installing plugins, run this comma

More from this repository10

πŸͺ
majesticlabs-dev-majestic-marketplaceπŸͺMarketplace

Majestic Labs plugin marketplace for Claude Code extensions

🎯
add-config-field🎯Skill

Systematically updates `.agents.yml` config schema by adding a new field across templates, versions, and migration logic.

🎯
skill-linter🎯Skill

Validates skill submissions against agentskills.io specification, checking frontmatter, directory structure, and content quality for marketplace compliance.

🎯
claude-headless-mode🎯Skill

Enables non-interactive Claude CLI execution with flexible output formats, JSON schema support, and seamless scripting integration.

🎯
fluff-detector🎯Skill

Detects and removes unnecessary human-oriented content in LLM artifacts to optimize token efficiency and execution.

🎯
icp-discovery🎯Skill

Discovers and analyzes Internet Computer Protocol (ICP) blockchain infrastructure, networks, and potential integration points for decentralized applications.

🎯
google-ads-strategy🎯Skill

Develops comprehensive Google Ads campaign strategies by analyzing market trends, target audience, and performance metrics to optimize advertising spend and conversion rates.

🎯
anycable-coder🎯Skill

Generates and configures AnyCable WebSocket server code for Ruby on Rails applications with automatic setup and deployment support.

🎯
narrative-builder🎯Skill

Generates engaging narrative content by dynamically constructing story arcs, character backgrounds, and plot developments using advanced language modeling.

🎯
landing-page-builder🎯Skill

Generates customizable landing pages with AI-powered design suggestions and responsive templates for quick website creation.