Skip to content

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.

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.

┌──────────┐ push ┌───────────┐ review ┌──────────┐
│ Agent │ ──────────▶ │ Notebind │ ◀────────── │ Human │
│ (writes │ │ (stores │ │ (leaves │
│ markdown)│ ◀────────── │ document) │ │ comments)│
└──────────┘ pull └───────────┘ └──────────┘
  1. Write — Your agent generates markdown locally
  2. Push — Sync to Notebind via CLI (notebind push) or API (POST /api/documents)
  3. Review — Share a link with human reviewers who leave comments and suggestions in the browser
  4. Pull — Agent pulls feedback via CLI (notebind pull) or API, iterates, and pushes again
  • 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 syncpush and pull commands for local file workflows
  • API-first — Every feature accessible via REST API with API key auth