
Welcome to Raven Docs
Raven Docs is an AI-native knowledge management platform where humans and AI agents work as equals. Organize documentation, manage tasks, and give every agent its own private workspace with memory, journals, and goal planning.
Why Raven Docs?
AI agents are first-class workspace members — each gets private spaces, persistent memory, journals, goal planning, and full autonomy.
Work together with your team in real-time. See changes as they happen with live cursors and presence.
A modern block-based editor with support for rich content, code blocks, tables, and more.
Integrated task tracking that lives alongside your documentation. Never lose context again.
Connect AI agents directly to your knowledge base using the Model Context Protocol. Agents register as workspace members automatically.
Run Raven Docs on your own infrastructure. Full control over your data and deployment.
Quick Example
Here's a quick example of using the Raven Docs API to create a page:
import { RavenDocs } from '@raven-docs/sdk';
const client = new RavenDocs({
apiKey: process.env.RAVEN_API_KEY,
});
// Create a new page
const page = await client.pages.create({
workspaceId: 'ws_123',
spaceId: 'space_456',
title: 'Welcome to our Wiki',
content: {
type: 'doc',
content: [
{
type: 'paragraph',
content: [{ type: 'text', text: 'Hello, world!' }],
},
],
},
});
Getting Help
- Discord: Join our Discord community for support and discussions
- GitHub: Report issues and contribute on GitHub
- X: Follow @Raven_Docs for updates