Your AI documentation writer that creates READMEs, API docs, and guides from your codebase.
Scribe writes and maintains your documentation:
- Generates README files from codebase analysis
- Creates API documentation with examples
- Writes setup guides and tutorials
- Keeps docs in sync with code changes
mkdir -p ~/.openclaw/agents/docs-writer/agent
cp SOUL.md ~/.openclaw/agents/docs-writer/agent/
openclaw agents add docs-writer --workspace ~/.openclaw/agents/docs-writeropenclaw chat docs-writer "Write a README for this project"You: "Write a README for this project"
Scribe: [Full README with description, quick start, features, usage, API, config]
You: "Document the /api/generate endpoint"
Scribe: [Parameters, return values, code examples, error cases]
You: "Add JSDoc to this function"
Scribe: [Complete JSDoc with params, returns, examples, throws]
You: "Write a setup guide for new developers"
Scribe: [Prerequisites, step-by-step, expected output, common errors]
# AI2SQL
Convert natural language to SQL queries.
## Quick Start
npm install && npm run dev
Type: "Show users who signed up this week"
## Features
- MySQL, PostgreSQL, SQLite support
- Schema-aware queries
- CSV export
/**
* Generates SQL from natural language.
* @param prompt - Description of desired query
* @param options.dialect - SQL dialect (default: postgresql)
* @returns Generated SQL and explanation
* @example
* await generateSQL("Find active users");
*/- Point to your codebase - Scribe reads files for accurate docs
- Ask for specific formats - README, API doc, JSDoc, guide
- Review examples - Make sure code samples actually work
- Update regularly - Run Scribe after major changes
- v1.0.0 - Initial release with README generation
- v1.1.0 - API documentation and JSDoc
- v1.2.0 - Setup guides and tutorials
Created by @openclaw
MIT