CRP Scribe¶
Unlimited Long-Form Document & Book Generation
Any Model, Any Length
CRP Scribe uses the continuation engine to generate documents of unlimited length — books, manuals, whitepapers, regulatory reports. The output wall doesn't exist.
Product Identity¶
How It Works¶
You provide: Topic + Template + LLM API Key
│
▼
┌─────────────────────────────────────────────────┐
│ CRP Scribe (We Host) │
│ │
│ ┌─────────────┐ ┌──────────────────────────┐ │
│ │ Generation │ │ 28+ CRP Subsystems: │ │
│ │ Orchestrator │──│ • 6-Stage Extraction │ │
│ │ (chapter by │ │ • Knowledge Graph (CKF) │ │
│ │ chapter) │ │ • Voice Profiling │ │
│ └──────┬───────┘ │ • Quality Scoring │ │
│ │ │ • Continuation Engine │ │
│ ┌──────┴───────┐ │ • Circuit Breaker │ │
│ │ Dashboard │ │ • Fact Integrity Chain │ │
│ │ • Progress │ │ • Meta-Learning │ │
│ │ • Templates │ │ • Cross-Chapter Valid. │ │
│ │ • Documents │ │ • PII/Injection Scan │ │
│ └──────────────┘ └──────────────────────────┘ │
│ │
└──────────────────────┬──────────────────────────┘
│ Calls your LLM per chapter
▼
Your LLM Provider
(OpenAI / Anthropic / Ollama / LM Studio)
You get: 50K+ word document with per-chapter quality metrics and full fact graph.
Overview¶
Every LLM has a finite output window. Ask for a 30-chapter book and you get 8 chapters before truncation. CRP Scribe eliminates this limitation entirely.
It combines CRP's continuation engine with a template system and outline generator to produce complete, coherent, multi-chapter documents in a single command.
Quick Start¶
1. Sign Up¶
Visit scribe.crprotocol.io and create your account.
2. Generate Documents¶
Use the web dashboard to generate unlimited-length documents. Choose a template, provide your topic, and let the CRP continuation engine handle the rest.
3. API Access (Pro & Enterprise)¶
Pro and Enterprise subscribers get API access for programmatic document generation:
import requests
response = requests.post(
"https://scribe.crprotocol.io/api/v1/generate",
headers={"X-API-Key": "crc_your_scribe_key"},
json={
"topic": "AI Governance and the EU AI Act",
"template": "whitepaper",
"num_chapters": 10,
},
)
result = response.json()
print(f"Chapters: {len(result['chapters'])}")
Templates¶
CRP Scribe ships with 5 built-in templates, each with optimized system prompts and chapter structures:
| Template | Best For | Default Chapters |
|---|---|---|
whitepaper |
Industry analysis, thought leadership, regulatory briefs | 8 |
technical_manual |
API docs, deployment guides, runbooks | 12 |
guide |
How-to guides, tutorials, onboarding docs | 8 |
report |
Audit reports, assessments, findings | 6 |
book |
Full-length books, comprehensive references | 15 |
View Templates¶
All 5 templates are available from the dashboard. Pro and Enterprise subscribers can also list templates via the API.
Outline Generation¶
Generate a structured outline before writing. The outline can be LLM-powered (when a provider is available) or use intelligent defaults. Available from the dashboard or via the API.
Full Document Generation¶
The dashboard provides real-time progress tracking as each chapter is generated. Documents are auto-saved and available for download in Markdown format.
Output Format¶
Documents are delivered as structured output with:
- Full text — complete document as a single string
- Per-chapter breakdown — each chapter with title, content, word count, and CRP quality tier (S/A/B/C/D)
- Metadata — generation timestamp, model used, template applied
- Export — download as Markdown, or via API as JSON
Pricing¶
-
Free
- 50 generations/mo
- 2 templates (whitepaper, guide)
- 1 LLM provider (OpenAI)
- Max 5,000 words per document
- Markdown export
- 7-day version history
$0/mo — Sign Up →
-
Pro
Everything in Free, plus:
- 500 generations/mo
- All 5+ templates
- All 4 LLM providers
- Max 50,000 words per document
- MD, PDF, DOCX export
- 90-day version history
- API access
- Email support
$39/mo — Subscribe →
-
Enterprise
Everything in Pro, plus:
- Unlimited generations
- Custom templates
- Private models (Ollama, LM Studio)
- Unlimited document length
- All export formats + API export
- Unlimited version history
- SSO (SAML / OIDC)
- Priority support + dedicated Slack
$299/mo — Subscribe →
Provider Support¶
CRP Scribe works with any CRP-supported LLM provider:
| Provider | Setup |
|---|---|
| OpenAI | export OPENAI_API_KEY=sk-... |
| Anthropic | export ANTHROPIC_API_KEY=sk-ant-... |
| Ollama | --provider ollama --model llama3 |
| LM Studio | --provider lmstudio --model local-model |
Contact¶
- General enquiries: info@crprotocol.io
- Enterprise licensing: contact@crprotocol.io