Your First Prompt
Let's run a prompt from the Promptodex registry in seconds.
Run a prompt
bash
pod summarizeThat's it. The CLI fetches the summarize prompt from the registry, sends it to your configured AI model, and prints the response.
Pass content to a prompt
Most prompts accept variables. Pass them as flags:
bash
pod summarize --content "Artificial intelligence is transforming healthcare..."See what happened
Add -v for verbose output to see the full prompt that was sent:
bash
pod summarize --content "Your text" -vUse a specific version
Pin to a version with @ syntax:
bash
pod summarize@1Override the model
The prompt author may recommend a model, but you can override it:
bash
pod summarize --model sonnetNext Steps
- Using Variables — Learn about dynamic prompts
- Piping Input — Feed content from files and other commands