# Linear Documents

> Manage Linear documents. Use for creating and viewing documentation.

- Skill: `nesszer/linear-documents` (Agent Skill)
- Install (CLI): `npx skillmds@latest add nesszer/linear-documents`
- Raw SKILL.md: https://api.skillmd.com/api/skills/nesszer/linear-documents/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: nesszer (https://skillmd.com/u/nesszer)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/nesszer/linear-documents

---


# Documents

```bash
# List documents
linear-cli d list
linear-cli d list --output json

# Get document
linear-cli d get DOC_ID
linear-cli d get DOC_ID --output json

# Create document
linear-cli d create "Design Doc" -p PROJECT_ID
linear-cli d create "RFC" -p PROJECT_ID --id-only

# Update document
linear-cli d update DOC_ID --title "New Title"
linear-cli d update DOC_ID --content "New content"
```

## Flags

| Flag | Purpose |
|------|---------|
| `-p PROJECT` | Project ID |
| `--id-only` | Return ID only |
| `--output json` | JSON output |

