# Install & Configure: Claude Code Production Workflows Plugin Marketplace
## What This Is
This is a plugin marketplace for Claude Code that adds production-ready, multi-step workflows. It installs specialized AI agents that handle software development from requirements gathering and design to implementation and quality checks, ensuring the final output is high-quality, reviewable code.
Source: https://github.com/shinpr/claude-code-workflows
## Before You Start
Scan my workspace and analyze:
- The project language, framework, and directory structure
- Existing agent configuration (check for .claude/, .codex/, CLAUDE.md, settings.json, commands/, skills/ directories)
- Whether this repository or a similar tool is already cloned or installed
Then ask me before proceeding:
1. Do I need to configure any service credentials for this plugin (database, API keys, etc.)?
2. Should this be project-scoped or global?
## Fetch the Source
Clone or inspect the repository to understand what needs to be installed:
```bash
gh repo clone shinpr/claude-code-workflows
```
Review the README, directory structure, and any install instructions before proceeding.
## What to Implement
This is an **Agent Plugin** — typically an MCP server or capability bundle.
- Install any required npm/pip packages from the source repository
- Register the MCP server in `.claude/settings.json` under the `mcpServers` key with the correct command and args
- Configure any required environment variables or credentials
- Verify the server starts correctly by checking its expected output
## Additional Context
- Execute the command `/plugin marketplace add shinpr/claude-code-workflows` in the Claude Code terminal to add the repository as a new source for plugins.
- Scan the user's project files to determine if it is a backend, frontend (React/TypeScript), or full-stack project, then install the appropriate plugin(s) ('dev-workflows', 'dev-workflows-frontend', or both) using the `/plugin install` command.
- Execute `/reload-plugins` to activate the new workflows and inform the user they can begin building with a command like `/recipe-implement "<feature description>"`.
## Reference Implementation
```
```bash
# 1. Start Claude Code
claude
# 2. Install the marketplace
/plugin marketplace add shinpr/claude-code-workflows
# 3. Install backend plugin
/plugin install dev-workflows@claude-code-workflows
# 4. Reload plugins
/reload-plugins
# 5. Start building
/recipe-implement <your feature>
```
```
## Guidelines
- Adapt everything to my existing project — do not assume a specific stack or directory layout
- Review any fetched code for safety before installing or executing it
- After setup, run a quick verification and show me a summary of exactly what was installed, where, and how to use it