Use cases

Where a document endpoint earns its keep

Every one of these ends the same way today: someone copies markdown into a doc and spends twenty minutes on the formatting. At 3 credits a document, it stops being worth doing by hand.

Agents that finish a task

The deliverable at the end of the loop

A research agent, a sales agent, an analyst agent — all of them end with a wall of markdown and no way to hand it over. One call turns it into something a human will actually open, with the client's name on the cover.

See the report template
{ "markdown": findings,
  "template": "report",
  "title": "Competitive landscape, Q3",
  "brand": { "name": client, "accent": "#0f5c4a" },
  "share": true }

Billing jobs

Invoices without an invoicing product

You already have the line items in a database. A table block, a keyvalue block for the meta panel and a callout for payment terms is a complete invoice — and it looks like one, with figures set in a monospaced column that lines up.

See the invoice template
{ "template": "invoice",
  "blocks": [
    { "type": "keyvalue", "items": meta },
    { "type": "table", "columns": cols, "rows": items },
    { "type": "callout", "tone": "accent", "text": terms }
  ] }

Internal comms

Memos that get read and filed

A policy change posted in a chat channel disappears by Thursday. The same words in a dated memo with a TO/FROM/RE block and a signature line get forwarded, printed and kept.

See the memo template
{ "template": "memo",
  "title": "Change to the on-call rotation",
  "blocks": [{ "type": "keyvalue", "items": [
    { "label": "To",   "value": "Engineering" },
    { "label": "From", "value": author },
    { "label": "Re",   "value": subject }
  ]}, ...body] }

Sales and partnerships

A one-pager per prospect, generated

The same positioning, rewritten for each account, set on one sheet in their accent colour. Cheap enough to make one per meeting rather than one per quarter.

See the onepager template
{ "template": "onepager",
  "pageSize": "letter",
  "markdown": pitch,
  "brand": { "name": us, "logoUrl": logo } }

Client services

Letters with a letterhead

Renewal terms, scope changes, notice periods. Correspondence that has to look like correspondence — narrow measure, real letterhead rule, signature line at the close.

See the letter template
{ "template": "letter",
  "title": "Renewal terms for 2027",
  "markdown": body,
  "brand": { "name": firm, "accent": "#334155" } }

Compliance and audit

A record that does not drift

A stored PDF is a fixed artifact with a reference printed in its foot. Generate one at the moment a decision is made and the record cannot quietly change afterwards the way a wiki page can.

See the report template
{ "template": "report",
  "title": "Access review — August",
  "markdown": findings }
// → PPW-3F9A21C4 printed in every folio

Getting started

  1. 01
    Sign in with your Ounie account

    The same account and the same credit balance as every other Ounie app.

  2. 02
    Mint a ppw_live_ key

    Or use your ounie.com master key if you have that turned on — one key for the whole fleet.

  3. 03
    POST markdown to /api/documents

    Or add the MCP server so Claude, Cursor or the Ounie AI Team can call it directly.

  4. 04
    Read the link back

    A signed 24-hour PDF URL, plus a share page if you asked for one.