Skip to content
@Prompd

Prompd

From prompt to production
Prompd

Prompd

From prompt to production

Website  ·  Docs  ·  Download  ·  Registry


Prompd is an open-source ecosystem for building, composing, and deploying AI workflows. Everything runs on your machine — your API keys stay local and your workflows stay yours.

  • Structured prompt format — YAML frontmatter + Markdown with typed parameters and context references
  • Package-based inheritance — inherit, extend, and compose prompts like code
  • Multi-provider compilation — compile once, target any AI provider
  • Visual workflow canvas — chain prompts, add logic, connect tools

The Prompd Format

Prompd introduces .prmd — a structured prompt format that turns prompts into versionable, composable, and shareable artifacts.

------
name: pr-review
version: 2.1.0
description: "Context-aware pull request reviewer with team standards"
context:
  - ./standards/style-guide.md
  - ./standards/security-checklist.md
system: ./prompts/systems/reviewer.md
parameters:
  - name: diff
    type: string
    required: true
    description: "The pull request diff to review"
  - name: language
    type: string
    default: "typescript"
  - name: focus
    type: string
    enum: ["security", "performance", "correctness", "all"]
    default: "all"
---

Review this {{language}} pull request{% if focus != "all" %} with emphasis on **{{focus}}**{% endif %}.

## Diff
```
{{diff}}
```

{% if focus == "security" %}
Flag any inputs that reach a database, shell, or HTTP response without validation.
{% endif %}

Prompts can inherit from packages, include context files, define typed parameters, and compile to any provider's format.

How It Works

Write structured prompts in .prmd with inheritance, parameters, and context references.

Compose workflows visually on the canvas or in .pdflow files — chain prompts, add logic, connect tools.

Deploy workflows as background services with cron triggers, webhooks, or manual execution.

Share prompts as packages on the PrompdHub — version, publish, and reuse across projects.

Get Started

  1. Download the desktop app
  2. Read the docs
  3. Install the CLI
  4. Browse community prompts

Repositories

Repo Description
prompd-app Desktop IDE — Electron + React + Monaco editor + visual workflow canvas
prompd-cli CLI toolchain — compile, validate, package, and publish prompts
prompd-docs Documentation — format spec, guides, and examples
prompds Community prompts — open-source prompt packages and templates

Community

Follow along and get involved:

License

Prompd is source-available under the Elastic License 2.0 (ELv2). Free to use, modify, and self-host. The only restriction: you can't offer it as a competing hosted service.

Pinned Loading

  1. prompd-docs prompd-docs Public

    Documentation, format spec, and guides for the Prompd ecosystem

    1

  2. prompds prompds Public

    Community prompt packages and templates for the Prompd ecosystem

    TypeScript 2

  3. prompd-app prompd-app Public

    Open-source desktop IDE for building, composing, and deploying AI workflows

    TypeScript 2

  4. prompd-cli prompd-cli Public

    CLI toolchain for compiling, validating, packaging, and publishing Prompd prompts

    TypeScript 3

Repositories

Showing 5 of 5 repositories

Top languages

Loading…

Most used topics

Loading…