LIST-All-RECIPES
CRAFT Recipe Categories and Directory
Last Updated: June 23, 2025
===============================================
RECIPE ORGANIZATION STRUCTURE
===============================================
Recipes use the format: RCP-XXX-YYY-ZZZ-NAME-vMAJOR.MINORpatch
Where:
- XXX: Category (001-999)
- YYY: Subcategory (001-999)
- ZZZ: Sequence (001-999)
- NAME: Descriptive name
- Version: Semantic versioning
===============================================
RECIPES
===============================================
# CRAFT Recipe Collection: All Recipes
This page contains all CRAFT recipes in a single location for easy access and discovery. You can fetch this entire page to access any recipe.
## Quick Navigation
### CAT-Foundational
- [RCP-001-001-001-ULTRA-PROMPT-v1.00a](#rcp-001-001-001-ultra-prompt) - The 10-Part Ultra Prompt
- [RCP-001-001-002-EMAIL-SUBJECT-v1.00a](#rcp-001-001-002-email-subject) - Email Subject Line Generator
- [RCP-001-002-001-PROMPT-REFINER-v1.00a](#rcp-001-002-001-prompt-refiner) - AI Prompt Refinement Expert
- [RCP-001-003-001-AI-INTRO-v1.00a](#rcp-001-003-001-ai-intro) - Personal AI Introduction Builder
- [RCP-001-003-002-ROLE-RECOMMENDER-v1.00a](#rcp-001-003-002-role-recommender) - AI Chat Role Recommender
### CAT-Content
- [RCP-002-002-001-PROJECT-DESC-v1.00a](#rcp-002-002-001-project-desc) - Website/Project Description Builder
### CAT-Marketing
- [RCP-003-002-001-TARGET-AUDIENCE-v1.00a](#rcp-003-002-001-target-audience) - Target Audience Identifier
- [RCP-003-003-001-COPYWRITING-MASTER-v1.00a](#rcp-003-003-001-copywriting-master) - Master Copywriting Framework Selector
### CAT-Analysis
- [RCP-007-001-001-FIVE-WHYS-v1.00a](#rcp-007-001-001-five-whys) - 5 Whys Root Cause Analyzer
---
## How to Use This Directory
1. Browse categories to find recipes by topic
2. Click on any recipe ID to view the full recipe
3. Use subcategories to find related recipes
4. Check back regularly for new additions
## Recipe ID Format
New format: RCP-XXX-YYY-ZZZ-NAME-vMAJOR.MINORpatch
- XXX: Category number (001-010)
- YYY: Subcategory number (001-999)
- ZZZ: Sequence within subcategory (001-999)
- NAME: Descriptive name
- Version: Semantic versioning
Legacy format: RCP-XXX-NAME (still supported)
===============================================
HOW TO USE THIS DIRECTORY
===============================================
1. BROWSE BY CATEGORY
Navigate through categories and subcategories to find recipes
2. FETCH IN CRAFT
Use the recipe URL with fetch_recipe():
recipe = fetch_recipe("https://www.aicookbook.ai/recipes-via-craft-api/[recipe-id]")
3. QUICK EXECUTION
Use quick_recipe() for immediate results:
result = quick_recipe(recipe_url, parameter1="value1", parameter2="value2")
4. DISCOVERY FUNCTIONS
- list_categories() - Returns this category structure
- list_subcategories("CAT-Content") - Lists subcategories
- search_recipes_by_keyword("email") - Search all recipes
===============================================
INTEGRATION WITH CRAFT
===============================================
This directory is designed for automated discovery:
# In your CRAFT session:
categories = list_categories()
for category in categories:
recipes = list_recipes_in_category(category["id"])
print(f"{category['name']}: {len(recipes)} recipes")
# Search for specific functionality:
email_recipes = search_recipes_by_keyword("email")
for recipe in email_recipes:
print(f"- {recipe['title']} ({recipe['path']})")
===============================================
NOTES
===============================================
- Categories use sequential numbering starting from 001
- Each category has a unique number that increments by 1
- Subcategories start at 001 within each category
- The combination XXX-YYY creates unique subcategory paths
- Legacy recipes (RCP-XXX-NAME) are being migrated to the new format
- This page is the authoritative source for recipe discovery
- Subcategories will expand as our recipe cookbook grows
- New subcategories will be created when needed and assigned the next available number
- No subcategory numbers are pre-assigned to avoid conflicts
===============================================
END OF DIRECTORY
===============================================