
Prompt Library
- 6 installs
- 100 repo stars
- Updated April 10, 2026
- agricidaniel/claude-prompts
prompt-library is a Claude Code skill that browses and filters a curated library of 2,500+ AI generation prompts by category, model, and output type.
About
prompt-library is a Claude Code skill that browses and filters a curated library of 2,500+ AI generation prompts. It lists prompts by category, model, or output type, shows database stats, and can surface a random prompt for inspiration. A developer uses it to explore available prompts before building or adapting one.
- Browses and filters a library of 2,500+ curated AI prompts by category, model, and output type
- Shows stats overview and can surface a random prompt for inspiration
- Displays prompts with tags, output type, and original source
Prompt Library by the numbers
- 6 all-time installs (skills.sh)
- Ranked #1,096 of 1,335 Generative Media skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
prompt-library capabilities & compatibility
- Capabilities
- prompt browsing · prompt search · image generation
- Use cases
- image generation · video generation · research
- Pricing
- Free
What prompt-library says it does
Browse, filter, and explore a curated library of 2,500+ AI prompts organized by 19 categories, 17 models, and 4 output types.
Browse and explore 2,500+ curated prompts with rich filtering.
npx skills add https://github.com/agricidaniel/claude-prompts --skill prompt-libraryAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 6 |
|---|---|
| repo stars | ★ 100 |
| Last updated | April 10, 2026 |
| Repository | agricidaniel/claude-prompts ↗ |
What it does
Browse and filter a curated library of 2,500+ AI generation prompts by category, model, and output type.
Who is it for?
Exploring and filtering the prompt catalog before writing or adapting a prompt
Skip if: Building a new prompt from scratch (use prompt-build) or converting models (use prompt-adapt)
When should I use this skill?
you say prompt library, browse prompts, show categories, list prompts, or explore prompts
What you get
Filtered lists of prompts with tags, output type, and source for selection.
- Filtered prompt lists
- A database stats overview
By the numbers
- 2,500+ curated prompts
- 19 categories, 17 models, 4 output types
Files
Prompt Library
Browse and explore 2,500+ curated prompts with rich filtering.
Library Commands
Browse by Category
Show available categories with counts:
python3 {PROMPT_ENGINE_DIR}/scripts/search_prompts.py --categoriesThen load a specific category:
python3 {PROMPT_ENGINE_DIR}/scripts/search_prompts.py --category CATEGORY --limit 10Browse by Model
List prompts for a specific AI model:
python3 {PROMPT_ENGINE_DIR}/scripts/search_prompts.py --model "Midjourney" --limit 10Browse by Output Type
Filter by output type (image, video, text, generator):
python3 {PROMPT_ENGINE_DIR}/scripts/search_prompts.py --type video --limit 10Stats Overview
Show database statistics:
python3 {PROMPT_ENGINE_DIR}/scripts/search_prompts.py --statsRandom Prompt
Get a random prompt for inspiration:
python3 {PROMPT_ENGINE_DIR}/scripts/search_prompts.py --random [--category CAT] [--model MODEL]Display Format
When showing prompts, use this format:
## [Category] -- [Model]
**Prompt:**
> [Full prompt text]
**Tags:** [tag1], [tag2], [tag3]
**Output:** [image/video/text]
**Source:** [original Airtable source]When showing multiple prompts, use a numbered list with truncated previews (first 150 chars) and let the user select one for full details.
Data Locations
- Stats:
{PROMPT_ENGINE_DIR}/prompts/stats.json - All prompts:
{PROMPT_ENGINE_DIR}/prompts/all_prompts.json - By category:
{PROMPT_ENGINE_DIR}/prompts/{category}/prompts.json
Related skills
FAQ
How can I filter prompts?
You can browse by category, by AI model, or by output type (image, video, text, generator), and view a stats overview.
Can it give me a random prompt?
Yes, it can surface a random prompt, optionally scoped to a category or model, for inspiration.