| name | prompts-chat |
| description | Discover and apply curated prompts from the prompts.chat collection to optimize AI interactions. Use when refining prompt engineering, finding domain-specific prompt templates, improving response quality, or building prompt-based workflows. Triggers on: prompt optimization, prompt templates, prompt engineering, prompt library, curated prompts, prompt discovery, and AI prompt patterns.
|
| allowed-tools | Read Write Edit Bash Glob Grep |
| compatibility | Works across all AI platforms (Claude, ChatGPT, Gemini, Codex, and agents). Integrates with workflow agents for prompt pipeline automation and prompt versioning. Requires network access to fetch prompts.chat repository data.
|
| license | MIT |
| metadata | {"tags":"prompts, prompt-engineering, ai-optimization, prompt-templates, prompt-library, prompt-discovery, workflow-automation, prompt-curation","platforms":"Claude, ChatGPT, Gemini, Codex, jeo, jeopi","version":"1.0.0","source":"https://github.com/f/prompts.chat"} |
prompts-chat โ Curated AI Prompt Discovery & Application
Discover and apply high-quality prompts from the prompts.chat collection to enhance AI interactions, workflows, and prompt engineering.
Reference: prompts.chat โ a community-driven repository of useful prompts for various AI tasks and workflows.
When to use this skill
- You need a well-crafted prompt template for a specific task or domain
- You're optimizing an AI workflow and want proven prompt patterns
- You're building a prompt library or managing prompt versions
- You want to discover prompts for roles, tasks, or use cases you're unfamiliar with
- You're troubleshooting response quality by refining the prompt structure
When not to use this skill
- The main job is building a full LLM application framework โ use
pydantic-ai, crewai-multi-agent, or langgraph-human-in-the-loop
- The main job is prompt optimization via RLHF or fine-tuning โ use
dspy, openrlhf-training, or moe-training
- The main job is building an agent system โ use
deep-agents-core, crewai-multi-agent, or workflow skills like team
- The main job is RAG pipeline construction โ use
llamaindex or supabase-agent-skills
Instructions
Step 1: Classify your prompt need
Identify the category and use case:
prompt_need:
category: writing | coding | analysis | brainstorming | role-play | instruction-tuning | other
use_case: single-task | template-library | workflow-pipeline | prompt-versioning
domain: software | marketing | education | science | creative | business | other
current_pain: quality | consistency | structure | discovery | version-control
Step 2: Fetch and explore prompts.chat data
Access the prompts.chat repository to find relevant prompts:
git clone https://github.com/f/prompts.chat.git /tmp/prompts-chat 2>/dev/null || \
curl -s https://api.github.com/repos/f/prompts.chat/contents/ | jq '.[] | select(.type=="dir") | .name'
ls /tmp/prompts-chat 2>/dev/null || echo "Use online repository"
Step 3: Evaluate and select prompts
For each candidate prompt, assess:
- Relevance: Does it match your task or domain?
- Quality: Is the prompt structure clear and well-organized?
- Adoptability: Can you integrate it into your workflow without modification?
- Reusability: Does it work as a template for variations?
Step 4: Adapt prompts to your context
Customize selected prompts:
- Replace placeholders with your specific context
- Adjust tone, length, or output format to fit your workflow
- Test on representative inputs before full deployment
- Document variations and version changes
Step 5: Store and manage prompt versions
Create a local prompt library for your project:
prompts/
โโโ approved/
โ โโโ code-review.md
โ โโโ technical-writing.md
โ โโโ summarization.md
โโโ drafts/
โโโ VERSIONS.md
Document:
- Source (prompts.chat or custom)
- Version date
- Intended use case
- Known limitations or tips
Step 6: Integrate into workflows
Embed prompts into agent workflows:
PROMPT=$(cat prompts/approved/technical-writing.md)
curl -s https://api.openai.com/v1/chat/completions \
-H "Authorization: Bearer $API_KEY" \
-d @- <<EOF
{
"model": "gpt-4",
"messages": [{"role": "system", "content": "$PROMPT"}]
}
EOF
Step 7: Monitor and iterate
Track prompt performance:
- Note which prompts yield the best outputs
- Collect feedback from users or automated quality metrics
- Refine based on performance data
- Share improvements back to the community (optional)
Examples
Example 1: Finding a code-review prompt
Goal: Improve code review quality using a template prompt
Search prompts.chat for "code review" or "code analysis" category
โ Find the "Code Review" prompt
โ Adapt it with your repo's standards and style guide
โ Store in `prompts/approved/code-review.md`
โ Use in code review workflows
Example 2: Building a prompt library for content creation
Goal: Create consistent content across multiple topics
Collect prompts for:
- SEO-optimized blog post writing
- Social media caption generation
- Newsletter content curation
- Video script structuring
โ Store each in prompts/approved/
โ Version and document in VERSIONS.md
โ Integrate into content pipeline
Example 3: Prompt versioning and A/B testing
Goal: Compare prompt effectiveness
Create versions:
- prompts/approved/summarization-v1.md (original)
- prompts/approved/summarization-v2.md (refined)
โ Test both on sample inputs
โ Measure quality metrics (brevity, accuracy, completeness)
โ Keep best version, document learnings
Best practices
- Start with curated sources โ prompts.chat is battle-tested; use it as a foundation
- Document your source โ track which prompts come from where and why
- Version your prompts โ treat prompts like code; version and track changes
- Test before deploying โ validate new or modified prompts on representative inputs
- Share learnings โ contribute back to communities like prompts.chat when you improve a prompt
- Separate by use case โ organize prompts by domain, role, or task for discoverability
- Keep feedback loops โ collect data on which prompts work best and iterate
- Avoid prompt bloat โ retire or consolidate underused prompts regularly
Integration with other skills
dspy โ Use prompts.chat prompts as seed optimizers for DSPy pipelines
pydantic-ai โ Embed curated prompts into Pydantic AI agent systems
crewai-multi-agent โ Structure multi-agent teams with role-specific prompts
llm-wiki โ Store and version prompts in your durable knowledge base
user-guide-writing โ Use prompts to help structure documentation workflows
References