Installation
Get up and running with Promptodex tools in under a minute.
pod-cli (Recommended)
The CLI is the fastest way to start using prompts from your terminal.
bash
npm install -g pod-cliOr use it without installing globally:
bash
npx pod-cli summarizeAlias
The CLI installs as pod. If there's a naming conflict on your system, you can also use promptodex as the command name.
Verify the installation
bash
pod --helpRequirements
- Node.js >= 18
promptodex SDK
If you want to use prompts in your JavaScript or TypeScript applications:
bash
npm install promptodexSee Using in Code for full SDK documentation.
Configure AI providers
To execute prompts (not just fetch them), the CLI needs access to an AI model. Run the setup wizard:
bash
pod configThis walks you through:
- Choosing a vendor (OpenAI, Anthropic, xAI, or localhost)
- Entering your API key (or port for local models)
- Setting a default model
You can also create the config file manually at ~/.promptodex/config.json. See CLI Configuration for details.
Next Steps
- Your First Prompt — Run a prompt in seconds