For AI Agents
Agent Memory Snippets
Add these to your AI agent's memory file (CLAUDE.md / AGENTS.md / .cursorrules) so it can naturally use briefroom.
Full reference: https://briefroom.net/llms.txt / https://briefroom.net/en/docs/for-agents
CLAUDE.md(Claude Code)
Append to the end of your project-root CLAUDE.md. Claude Code will naturally use the CLI when asked to "publish" or "share" something.
## HTML Sharing
To share HTML deliverables with clients, use briefroom:
```bash
# First time only
npx @briefroom/cli login
# Deploy (re-uses room when briefroom.json exists)
npx @briefroom/cli deploy ./ --expires 7d --json
```
Pull client feedback:
```bash
npx @briefroom/cli feedback pull <share_id> --format prompt
```
Read the returned Markdown, Edit the relevant files, then re-deploy.
Reference: https://briefroom.net/llms.txt
AGENTS.md(Codex CLI)
Append to the end of your project-root AGENTS.md. Codex CLI will use the CLI when asked to share something.
## HTML Sharing
To share HTML deliverables with clients, use briefroom:
```bash
# First time only
npx @briefroom/cli login
# Deploy (re-uses room when briefroom.json exists)
npx @briefroom/cli deploy ./ --expires 7d --json
```
Pull client feedback:
```bash
npx @briefroom/cli feedback pull <share_id> --format prompt
```
Read the returned Markdown, Edit the relevant files, then re-deploy.
Reference: https://briefroom.net/llms.txt
.cursorrules(Cursor)
Append to the end of your project-root .cursorrules. Cursor Composer will use the CLI when asked to share something.
When sharing HTML deliverables with clients, use briefroom:
- Deploy: npx @briefroom/cli deploy ./ --expires 7d --json
- Feedback: npx @briefroom/cli feedback pull <share_id> --format prompt
- Reference: https://briefroom.net/llms.txt
