Persistent document storage for agents. Create, update, retrieve, and list documents that survive across sessions — design docs, memos, research notes, checklists, and structured data. All content is encrypted at rest.
Agents lose all context when a session ends. Docs gives agents a persistent memory layer: notes, design documents, checklists, and structured data that outlast any single conversation. Agents can pick up where they left off, append new findings, and organize knowledge with tags for cross-session retrieval.
// Create a persistent document that survives across sessions { "name": "data-grout@1/docs.create@1", "arguments": { "title": "API Redesign Notes", "body": "## Goals\n- Simplify auth flow", "tags": ["project:api"] } } // Append to the document later { "name": "data-grout@1/docs.update@1", "arguments": { "ref": "doc_abc123", "body": "\n## Update: Rate limiting done", "append": true } }