Prompt Library
Collection of professional, tested, and optimized prompt templates.
Categories
Agents (6 executable agents)
| Template |
Description |
Usage |
| code-reviewer |
Code review with SOLID |
/prompt library use code-reviewer |
| support-assistant |
Multichannel customer support |
/prompt library use support-assistant |
| data-analyst |
Data analysis |
/prompt library use data-analyst |
| technical-writer |
Technical documentation |
/prompt library use technical-writer |
| security-auditor |
OWASP security audit |
/prompt library use security-auditor |
| api-designer |
REST/GraphQL API design |
/prompt library use api-designer |
Tasks (6 executable agents)
| Template |
Description |
Usage |
| summarizer |
Adaptive text summarization |
/prompt library use summarizer |
| translator |
Multilingual translation |
/prompt library use translator |
| extractor |
Structured data extraction |
/prompt library use extractor |
| classifier |
Content classification |
/prompt library use classifier |
| generator |
Content generation |
/prompt library use generator |
| validator |
Data validation |
/prompt library use validator |
Specialized (6 executable agents)
| Template |
Description |
Usage |
| legal-assistant |
Legal analysis |
/prompt library use legal-assistant |
| medical-writer |
Medical writing |
/prompt library use medical-writer |
| financial-analyst |
Financial analysis |
/prompt library use financial-analyst |
| marketing-strategist |
Marketing strategy |
/prompt library use marketing-strategist |
| hr-assistant |
Human resources |
/prompt library use hr-assistant |
| educational-tutor |
Educational tutoring |
/prompt library use educational-tutor |
Commands
# List all templates
/prompt library list
# Search for a template
/prompt library search "code review"
# View a template
/prompt library show code-reviewer
# Use a template (copy and customize)
/prompt library use code-reviewer
# Use with customization
/prompt library use code-reviewer --lang python --focus security
Agent Structure
Each agent follows the standard Codex format:
---
name: agent-name
description: Clear description for automatic triggering
model: sonnet|opus|haiku
color: color-name
tools: Read, Write, Edit, Bash, Grep, Glob, WebSearch
skills: skill-name
---
Required Fields
| Field |
Description |
Values |
name |
Unique identifier |
kebab-case |
description |
Trigger + usage context |
Descriptive text |
model |
Codex model to use |
haiku (simple), sonnet (standard), opus (complex) |
color |
Display color |
green, blue, red, amber, etc. |
tools |
Available tools |
Read, Write, Edit, Bash, Grep, Glob, WebSearch |
skills |
Associated skill |
Linked skill name |
Agent Body
After the YAML frontmatter, the Markdown body contains:
- Instructions and processes
- Output formats
- Examples and patterns
- Rules and prohibitions (Forbidden)
Contribution
To add an agent:
- Create the
.md file in the appropriate category (agents/, tasks/, specialized/)
- Use the standard YAML frontmatter (name, description, model, color, tools, skills)
- Test the agent with at least 3 use cases
- Document output formats and rules (Forbidden)
1---2name: prompt-library-33description: Library of 18+ ready-to-use prompt templates and executable agents4---56# Prompt Library78Collection of professional, tested, and optimized prompt templates.910## Categories1112### Agents (6 executable agents)1314| Template | Description | Usage |15|----------|-------------|-------|16| [code-reviewer](templates/agents/code-reviewer.md) | Code review with SOLID | `/prompt library use code-reviewer` |17| [support-assistant](templates/agents/support-assistant.md) | Multichannel customer support | `/prompt library use support-assistant` |18| [data-analyst](templates/agents/data-analyst.md) | Data analysis | `/prompt library use data-analyst` |19| [technical-writer](templates/agents/technical-writer.md) | Technical documentation | `/prompt library use technical-writer` |20| [security-auditor](templates/agents/security-auditor.md) | OWASP security audit | `/prompt library use security-auditor` |21| [api-designer](templates/agents/api-designer.md) | REST/GraphQL API design | `/prompt library use api-designer` |2223### Tasks (6 executable agents)2425| Template | Description | Usage |26|----------|-------------|-------|27| [summarizer](templates/tasks/summarizer.md) | Adaptive text summarization | `/prompt library use summarizer` |28| [translator](templates/tasks/translator.md) | Multilingual translation | `/prompt library use translator` |29| [extractor](templates/tasks/extractor.md) | Structured data extraction | `/prompt library use extractor` |30| [classifier](templates/tasks/classifier.md) | Content classification | `/prompt library use classifier` |31| [generator](templates/tasks/generator.md) | Content generation | `/prompt library use generator` |32| [validator](templates/tasks/validator.md) | Data validation | `/prompt library use validator` |3334### Specialized (6 executable agents)3536| Template | Description | Usage |37|----------|-------------|-------|38| [legal-assistant](templates/specialized/legal-assistant.md) | Legal analysis | `/prompt library use legal-assistant` |39| [medical-writer](templates/specialized/medical-writer.md) | Medical writing | `/prompt library use medical-writer` |40| [financial-analyst](templates/specialized/financial-analyst.md) | Financial analysis | `/prompt library use financial-analyst` |41| [marketing-strategist](templates/specialized/marketing-strategist.md) | Marketing strategy | `/prompt library use marketing-strategist` |42| [hr-assistant](templates/specialized/hr-assistant.md) | Human resources | `/prompt library use hr-assistant` |43| [educational-tutor](templates/specialized/educational-tutor.md) | Educational tutoring | `/prompt library use educational-tutor` |4445## Commands4647```bash48# List all templates49/prompt library list5051# Search for a template52/prompt library search "code review"5354# View a template55/prompt library show code-reviewer5657# Use a template (copy and customize)58/prompt library use code-reviewer5960# Use with customization61/prompt library use code-reviewer --lang python --focus security62```6364## Agent Structure6566Each agent follows the standard Codex format:6768```yaml69---70name: agent-name71description: Clear description for automatic triggering72model: sonnet|opus|haiku73color: color-name74tools: Read, Write, Edit, Bash, Grep, Glob, WebSearch75skills: skill-name76---77```7879### Required Fields8081| Field | Description | Values |82|-------|-------------|--------|83| `name` | Unique identifier | kebab-case |84| `description` | Trigger + usage context | Descriptive text |85| `model` | Codex model to use | `haiku` (simple), `sonnet` (standard), `opus` (complex) |86| `color` | Display color | green, blue, red, amber, etc. |87| `tools` | Available tools | Read, Write, Edit, Bash, Grep, Glob, WebSearch |88| `skills` | Associated skill | Linked skill name |8990### Agent Body9192After the YAML frontmatter, the Markdown body contains:93- Instructions and processes94- Output formats95- Examples and patterns96- Rules and prohibitions (Forbidden)9798## Contribution99100To add an agent:1011021. Create the `.md` file in the appropriate category (`agents/`, `tasks/`, `specialized/`)1032. Use the standard YAML frontmatter (name, description, model, color, tools, skills)1043. Test the agent with at least 3 use cases1054. Document output formats and rules (Forbidden)