Skip to main content
# List all available templates
praisonai templates list

# List templates in offline mode (cache only)
praisonai templates list --offline

# List templates from specific source
praisonai templates list --source cached
praisonai templates list --source local
praisonai templates list --source remote

# Search templates by keyword
praisonai templates search video
praisonai templates search transcript --offline

# Show template details
praisonai templates info transcript-generator
praisonai templates info github:MervinPraison/agent-recipes/video-editor

# Install template to cache
praisonai templates install transcript-generator
praisonai templates install github:MervinPraison/agent-recipes/shorts-generator
praisonai templates install github:MervinPraison/agent-recipes/[email protected]

# Run a template directly
praisonai templates run transcript-generator ./audio.mp3
praisonai templates run video-editor --input video.mp4 --output edited.mp4
praisonai templates run data-transformer --offline

# Initialize project from template
praisonai templates init my-project --template transcript-generator
praisonai templates init video-app --template video-editor --offline

# Cache management - list cached templates
praisonai templates cache list

# Cache management - clear all cached templates
praisonai templates cache clear

# Cache management - show cache size
praisonai templates cache size

# Get help
praisonai templates help
praisonai templates --help