docs command manages project documentation in .praison/docs/ that provides context to AI agents.
Quick Start

Commands
List Docs
Create Doc
Show Doc
Delete Doc
Doc File Format
Docs are stored as markdown files with YAML frontmatter:Frontmatter Fields
| Field | Type | Description |
|---|---|---|
description | string | Short description of the doc |
priority | int | Priority (higher = included first, default: 100) |
tags | list | Tags for categorization |
Storage Locations
| Location | Scope | Description |
|---|---|---|
.praison/docs/ | Workspace | Project-specific docs |
~/.praison/docs/ | Global | Shared across all projects |
Use Cases
Project Context
Create docs that provide project context to agents:Coding Standards
API Documentation
Using Docs with @mentions
Reference docs in prompts using the@doc: mention:
Python API
Best Practices
Keep Docs Focused
Each doc should cover one topic. Split large docs into smaller, focused ones.
Use Priority
Set higher priority for frequently needed docs so they’re included first.
Use Tags
Tag docs for easy filtering and organization.
Update Regularly
Keep docs in sync with your codebase changes.

