AGENT0S
HomeLibraryAgentic
FeedbackLearn AI
LIVE
Agent0s · AI Intelligence Library
Share FeedbackUpdated daily · 7am PST
Library/plugin
pluginintermediateClaude Code

Claude Code Production Workflows Plugin Marketplace

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.

AI SETUP PROMPT

Paste into Claude Code — it will scan your project and set everything up

# 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
2,802 charactersCompatible with Claude Code & Codex CLI
MANUAL SETUP STEPS
  1. 01Execute the command `/plugin marketplace add shinpr/claude-code-workflows` in the Claude Code terminal to add the repository as a new source for plugins.
  2. 02Scan 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.
  3. 03Execute `/reload-plugins` to activate the new workflows and inform the user they can begin building with a command like `/recipe-implement "<feature description>"`.

CODE INTELLIGENCE

bash
```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>
```

FIELD OPERATIONS

Full-Stack E-commerce Feature

Use the `dev-workflows` and `dev-workflows-frontend` plugins together to build a complete "Add to Cart" feature. The workflow agents will design the backend API endpoint for adding an item, create the database schema update, and then build the corresponding React button component and state management logic for the frontend.

CLI Data Processing Tool

Use the `dev-workflows` plugin to build a command-line tool that fetches data from a public API (e.g., weather data), processes it, and saves the results to a CSV file. The workflow will handle argument parsing, API client logic, data transformation, and file I/O, including generating unit tests for each part.

STRATEGIC APPLICATIONS

  • →A development team can accelerate prototyping by using the full-stack workflow to scaffold a new feature. The AI agents generate the initial backend API and frontend components, allowing human developers to immediately focus on refining business logic and UI details instead of writing boilerplate code.
  • →A startup can enforce coding standards and best practices by integrating the `dev-skills` and `metronome` plugins. This ensures that all AI-generated code adheres to the team's testing principles and design guidelines, improving code quality and maintainability from day one.

TAGS

#workflow#plugin#backend#frontend#full-stack#automation#agent#react#typescript
Source: GITHUB · Quality score: 9/10
VIEW SOURCE