API Reference — CLI Commands
Quick reference for all pod CLI commands.
pod <slug>[@version]
Fetch and execute a prompt.
| Option | Description |
|---|---|
--model <alias> | Override the AI model |
--<variable> <value> | Set a template variable |
-v, --verbose | Show verbose output |
bash
pod summarize
pod summarize@2
pod summarize --model sonnet --topic "AI"
cat file.md | pod summarizepod init
Initialize a project. Creates promptodex.json and updates .gitignore.
bash
pod initpod install [slug[@version]]
Install prompts into the project cache.
bash
pod install summarize
pod install summarize@2
pod install # install all from promptodex.jsonAlias: pod i
pod uninstall <slug>
Remove a prompt from the project.
bash
pod uninstall summarizepod config
Interactive setup wizard for vendors, API keys, and default model.
bash
pod configpod show-config
Display current configuration (API keys are masked).
bash
pod show-configpod doctor
Run diagnostic checks on config, API keys, registry connectivity, and cache.
bash
pod doctor