Windows
Getting Started
Install prompd and create your first composable AI prompt in minutes.
Installation
Section titled “Installation”Node.js CLI (Recommended)
Section titled “Node.js CLI (Recommended)”# Install globally via npmnpm install -g @prompd/cli
# Verify installationprompd --versionPython CLI
Section titled “Python CLI”The Python implementation includes full MCP support and asset extraction capabilities.
# Install globally via pippip install prompd
# Verify installationprompd --versionPrompd Desktop
Section titled “Prompd Desktop”Visual IDE for AI workflows with Monaco editor, drag-and-drop workflow canvas, and built-in execution engine.
macOS / Linux
Coming soon
Quick Start
Section titled “Quick Start”Create Your First Prompt
Section titled “Create Your First Prompt”# Initialize current folder with example.prmd and manifest.jsonprompd init .
# Open in your editorcode example.prmdA basic .prmd file looks like this:
---id: code-reviewername: Code Reviewerversion: 1.0.0description: Review code for best practicesparameters: - name: language type: string required: true - name: code type: string required: true---
# SystemYou are an expert code reviewer specializing in {language}.
# UserPlease review the following code:
```{language}{code}```Compile Your Prompt
Section titled “Compile Your Prompt”# Compile to markdownprompd compile my-prompt.prmd --to-markdown
# Compile to OpenAI JSON formatprompd compile my-prompt.prmd --to-openai-json
# Run with parametersprompd run my-prompt.prmd \ --param language="Python" \ --param code="def hello(): print('world')"Using Package Inheritance
Section titled “Using Package Inheritance”Build on existing prompts from the registry:
---id: advanced-reviewername: Advanced Reviewerinherits: "@prompd.io/code-reviewer@1.0.0"parameters: - name: strictness type: string default: "moderate"---
# SystemApply {strictness} strictness level to the review.Publishing to Registry
Section titled “Publishing to Registry”# Package your promptprompd package create . my-package.pdpkg
# Login to registryprompd login
# Publish to registryprompd publish my-package.pdpkgInstalling Packages
Section titled “Installing Packages”# Search registryprompd search "code review"
# Install a packageprompd install @prompd.io/core-patterns@2.0.0
# Run installed packageprompd run @prompd.io/code-reviewer --param language="JavaScript"Next Steps
Section titled “Next Steps”- Explore the Prompd editor - Visual workflow builder and IDE
- File format specification - Full .prmd format reference
- CLI command reference - Complete command documentation
- Browse the registry - Discover community packages