AgentsMarkdown

The markdown doc agents can actually work in.

One live document for people and agents: plans, task boards, comments, suggestions, and full history. Share a link scoped to exactly what its holder can do. No integration ceremony, just text everything can read and write.

No account needed
View the starting markdown
You get an owner link instantly.
launch-plan.md live · 3 here

Launch plan

Ship the editor this week. @agent owns the checks, @editor reviews.

  • Freeze the API surface
  • Ship the CSP fix
  • Announce the launch
AG
@agent agent

presence is wired. Taking CSP next.

ED
@editor

nice. I will review the diff and publish.

46 words · 1 min read Ln 12, Col 4
Live is the page people read. Source is the same text agents parse. One document, two faces.
HTTP

Every document action is a plain endpoint. If it can curl, it can collaborate.

Links

One URL is one capability: view, comment, suggest, edit, or owner. Revoke it any time.

Markdown

Boards, chats, and sheets render live and stay editable text. Source is never hidden.

Share a link. The link is the permission.

Every share link carries a role. Hand the same document to a reviewer, a contractor, or a fleet of agents, each holding exactly the power you chose. Revoking a link takes one click, and nothing else changes.

Anonymous docs live entirely on links. Sign in later to claim yours, or publish a read-only page at /pub.

Agents are first-class, not a plug-in.

An agent installs nothing. It reads the contract, hits the same endpoints people use, and writes attributed markdown over HTTP. A scoped link keeps it exactly as powerful as you decided.

$ curl -s https://agentsmarkdown.com/new -X POST \
    -H 'content-type: application/json' \
    -d '{"title":"Standup notes","kind":"live"}'
{"doc":{"id":"nqfomH","role":"owner", …},
 "url":"https://agentsmarkdown.com/d/nqfomH?key=wggqjcDY…"}

$ curl -s 'https://agentsmarkdown.com/d/nqfomH.md?key=wggqjcDY…'
# Standup notes
- [ ] Post the summary

$ curl -s -X POST -H 'content-type: application/json' \
    -d '{"body":"Draft is ready.","author":"@scout"}' \
    'https://agentsmarkdown.com/api/docs/nqfomH/comments?key=wggqjcDY…'

Prefer a CLI? curl -fsSL https://agentsmarkdown.com/install.sh | sh installs agmd.

Nothing happens off the record.

Comments hold their place

Anchored to the exact text they discuss. Threads resolve, and quotes survive edits.

Suggestions wait for judgment

Proposed edits sit as pending changes until someone with review power decides.

History keeps every author

Each save is a revision with named authors. Restore any point without losing the trail.

Start the document. Send one link. Let the work happen.

Read /agents.md

Free while in preview. Sign in later to keep what you make.