Fins Useful Recipes automatically
Discovers, loads, validates, and optionally executes CRAFT recipes from cookbook files in your workspace. It is the filesystem-native recipe runner for Cowork โ the bridge between cookbook definitions and live recipe execution.
Cowork Recipe Loader
TL;DR
How To Start
STEP 1Choose the Operating Mode
-
mode
· string · required
Operating mode. Options: “browse” (list available recipes from all cookbooks), “load” (parse and validate a specific recipe), “execute” (load + run with parameter collection). -
recipe_id
· string · optional
Recipe ID to load or execute. Required for load and execute modes. Example: “RCP-CWK-005.” -
source
· string · optional · default: workspace
Where to load the recipe from. Options: “workspace” (scan workspace folder), “git_history” (load from git commit history), “remote” (fetch from configured git remote). -
filter
· string · optional
Category or keyword filter for browse mode. Narrows the recipe catalog to matching entries.
Usage Examples
How AI Reads This Recipe
- DISCOVER COOKBOOKS by scanning the workspace for CFT-FWK-COOKBK-*.txt files. Parse each cookbook’s master index to extract recipe registries with IDs, titles, versions, categories, and statuses.
- ROUTE BY MODE: browse → Step 3A (catalog display), load → Step 3B (recipe acquisition), execute → Step 3B then Step 5 (acquisition + execution).
- BUILD CATALOG in browse mode. Compile all recipes from all discovered cookbooks into a formatted table. Apply the filter parameter if provided. Present the catalog and wait for the user to select a recipe or say “done.”
- ACQUIRE RECIPE in load/execute mode. Locate the recipe ID in the discovered cookbooks, extract the recipe body from the source (workspace file, git history, or remote), and confirm acquisition.
- VALIDATE before execution with 3 checks: CRAFT format compliance (recipe_id, title, description, parameters, prompt_template, CRAFT comment syntax), dependency resolution (all referenced recipes exist in discovered cookbooks), and security scan (8 suspicious patterns blocked). Any failure stops execution.
- EXECUTE the recipe: collect required parameters, log the execution start, run the prompt template with parameter values, log the result. If execution fails and CWK-014 (Error Interceptor) is available, route to it for analysis.
When to Use This Recipe
- Want to see all available CRAFT recipes across your workspace cookbooks in a browsable catalog.
- Need to load and validate a specific recipe before executing it, especially unfamiliar or newly added recipes.
- Want to execute a recipe with full validation, parameter collection, and execution logging.
- Need to load a historical version of a recipe from git for comparison or rollback.
Recipe FAQ
Q.How does cookbook discovery work?
Q.What does the 3-check validation cover?
Q.What source options are available?
Q.What happens when validation fails?
Q.How does execute mode collect parameters?
Q.Does the loader integrate with other recipes?
Version History
Get this recipe with CRAFT for Claude Cowork
Cowork recipes ship bundled with CRAFT for Claude Cowork — there’s no separate download. Clone the framework once, and your AI runs every recipe automatically when invoked.
Pull anytime to stay on the latest version — free to clone, no login or email required.
Then start your session
Once CRAFT is in your project folder, open a new Cowork session and ask Claude to initialize. For example:
You
Claude
Not familiar with Git? Download as a ZIP
No command line needed. Just download, move, and unzip:
- Open the CRAFT framework repo on GitHub.
- Click the green Code button, then choose Download ZIP.
- Move the downloaded ZIP into your Claude Cowork project folder.
- Unzip it: double-click on Mac, or right-click → Extract All on Windows.
