<h1 align="center">
<a href="https://prompts.chat">
Access prompts.chat directly in [Claude Code](https://code.claude.com) with our official plugin. Search prompts, discover skills, and improve your prompts without leaving your IDE.
Sign in to like and favorite skills
Access prompts.chat directly in Claude Code with our official plugin. Search prompts, discover skills, and improve your prompts without leaving your IDE.
Add the prompts.chat marketplace to Claude Code:
/plugin marketplace add f/prompts.chat
Then install the plugin:
/plugin install [email protected]
| Feature | Description |
|---|---|
| MCP Server | Connect to prompts.chat API for real-time prompt access |
| Commands | and slash commands |
| Agents | Prompt Manager and Skill Manager agents for complex workflows |
| Skills | Auto-activating skills for prompt and skill discovery |
/prompts.chat:prompts <query> /prompts.chat:prompts <query> --type IMAGE /prompts.chat:prompts <query> --category coding /prompts.chat:prompts <query> --tag productivity
Examples:
/prompts.chat:prompts code review /prompts.chat:prompts writing assistant --category writing /prompts.chat:prompts midjourney --type IMAGE /prompts.chat:prompts react developer --tag coding
/prompts.chat:skills <query> /prompts.chat:skills <query> --category coding /prompts.chat:skills <query> --tag automation
Examples:
/prompts.chat:skills testing automation /prompts.chat:skills documentation --category coding /prompts.chat:skills api integration
The plugin provides these tools via the prompts.chat MCP server:
| Tool | Description |
|---|---|
| Search prompts by keyword, category, tag, or type |
| Retrieve a prompt with variable substitution |
| Save a new prompt (requires API key) |
| Enhance prompts using AI |
| Tool | Description |
|---|---|
| Search for Agent Skills |
| Get a skill with all its files |
| Create multi-file skills (requires API key) |
| Add a file to an existing skill |
| Update a file in a skill |
| Remove a file from a skill |
The
prompt-manager agent helps you:
The
skill-manager agent helps you:
Automatically activates when you:
Automatically activates when you:
To save prompts and skills, you need an API key from prompts.chat/settings.
Set the
PROMPTS_API_KEY environment variable:
export PROMPTS_API_KEY=your_api_key_here
Add the header when connecting to the MCP server:
PROMPTS_API_KEY: your_api_key_here
plugins/claude/prompts.chat/ ├── .claude-plugin/ │ └── plugin.json # Plugin manifest ├── .mcp.json # MCP server configuration ├── commands/ │ ├── prompts.md # /prompts.chat:prompts command │ └── skills.md # /prompts.chat:skills command ├── agents/ │ ├── prompt-manager.md # Prompt management agent │ └── skill-manager.md # Skill management agent └── skills/ ├── prompt-lookup/ │ └── SKILL.md # Prompt discovery skill └── skill-lookup/ └── SKILL.md # Skill discovery skill