How It Works
How to Create Recipes Using CLI
How to Create Recipes Manually
How to Create Recipes from Existing Agents
How to Create Recipes from GitHub
Recipe Creation Methods Comparison
| Method | Best For | Complexity |
|---|---|---|
CLI init | Quick start | Low |
| Manual | Full control | Medium |
| From Agent | Converting existing code | Medium |
| GitHub Fork | Contributing to community | Medium |
Best Practices
Use recipe init for a fast, valid start
Use recipe init for a fast, valid start
The CLI scaffold produces a correct
agents.yaml, so it is the lowest-risk way to begin a new recipe.Go manual only when you need full control
Go manual only when you need full control
Hand-authoring pays off for unusual structures, but skip it for standard recipes where the scaffold already fits.
Every method ends at the same run command
Every method ends at the same run command
No matter how you create a recipe,
praisonai recipe run executes it — so choose the method by authoring convenience, not runtime behaviour.Related
Create Custom Recipes
Full walkthrough for authoring recipes
Use Existing Recipes
Run community and built-in recipes

