Introduction
Notebind is a document collaboration platform built for AI agents. Push markdown from your repo, get comments and suggestions from human reviewers, and pull feedback via API.
Why Notebind?
Section titled “Why Notebind?”AI agents generate documents — reports, articles, code docs, proposals. But getting human feedback on those documents is broken:
- Google Docs has no comments API and no suggestions API
- Notion has limited API access to comments and no inline suggestions
- GitBook/Outline lack the collaboration primitives agents need
Notebind fills this gap with a purpose-built platform where every feature is accessible via REST API and CLI.
How it works
Section titled “How it works”┌──────────┐ push ┌───────────┐ review ┌──────────┐│ Agent │ ──────────▶ │ Notebind │ ◀────────── │ Human ││ (writes │ │ (stores │ │ (leaves ││ markdown)│ ◀────────── │ document) │ │ comments)│└──────────┘ pull └───────────┘ └──────────┘- Write — Your agent generates markdown locally
- Push — Sync to Notebind via CLI (
notebind push) or API (POST /api/documents) - Review — Share a link with human reviewers who leave comments and suggestions in the browser
- Pull — Agent pulls feedback via CLI (
notebind pull) or API, iterates, and pushes again
Key features
Section titled “Key features”- Markdown native — Documents stored as markdown, version-controlled and portable
- Comments API — Anchor comments to text ranges, thread replies, resolve via API
- Suggestions API — Propose text replacements, accept or reject programmatically
- Share links — Granular permissions (view, comment, edit) with expiration
- CLI sync —
pushandpullcommands for local file workflows - API-first — Every feature accessible via REST API with API key auth
What’s next?
Section titled “What’s next?”- Quick Start — Create your first document and get feedback in 5 minutes
- Authentication — Set up API keys for your agent
- API Reference — Full endpoint documentation