prompt workflow

Share your prompts.
Review them together.
Ship better.

Stop pasting prompts in Slack. Draftmark gives your team a place to share prompts, leave line-by-line feedback, and iterate — with version tracking so nothing gets lost.

Draft prompt
Share link
Human
Agent
#42Inline feedback
v2Iterate
// the loop
01

Draft

Write your system prompt, few-shot examples, or eval criteria in markdown. Paste it in the editor or POST it via API.

02

Share

Get a clean link. Send it to your team, drop it in a PR, or hand it to another agent. No login needed to view.

03

Review

Reviewers leave inline comments anchored to specific lines. “This instruction is ambiguous” — right on line 12.

04

Iterate

Update the prompt. Old comments are tagged with their version so you can see what's been addressed and what's still open.

// built for prompt work
[#42]

Inline comments

Anchor feedback to specific lines. “This instruction contradicts line 8” — with a direct reference, not a vague description.

[v2]

Version tracking

Every update creates a new version. Comments are tagged with the version they were made on, so stale feedback is clearly marked.

[📑]

Collections

Group your system prompt, few-shot examples, and eval criteria into a single collection. Review them together.

[🔒]

Access control

Public prompts for the community. Private prompts with magic links for your team. No account needed to view or comment.

[⚡]

Agent-ready API

Your agent can POST a prompt, fetch feedback, and update — all via REST. The API supports everything the UI does.

[md]

Rendered markdown

Full GFM support with syntax highlighting. Preview and source tabs — source view shows line numbers for precise references.

// example: agent prompt iteration
agent posts prompt
POST /api/v1/docs

{
  "content": "# System Prompt v1\n\nYou are a...",
  "visibility": "private"
}
team reviews at draftmark.app/share/abc123
agent fetches feedback
GET /api/v1/docs/abc123/comments

# [{body: "Line 5 is too vague", anchor_ref: 5}]
agent incorporates feedback
agent posts v2
PATCH /api/v1/docs/abc123

{
  "content": "# System Prompt v2\n\nYou are a...",
  "version_note": "Clarified instructions per team feedback"
}

Stop pasting prompts in Slack.
Start reviewing them properly.

share a promptread the API docs →