Cookbook
Copy. Run. Automate.
Accelerate your workflow with pre-built chains that work in production: copy a command, run it, done. Bridge your terminal and the models you trust with minimal setup.
Automation
Automated Release Notes
Turn git logs into human-readable changelogs.
$ git log --oneline | contenox run release-notes
## v0.9.1 — Hook policies, SQLite fixes, CLI cleanup
Read recipe
Automation
Git & DevOps Recipes
Turn diffs into Conventional Commit messages.
$ git diff --staged | contenox run commit-msg
feat(hooks): add chain-scoped security policies
Read recipe
Integrations
Browser Automation with Playwright MCP
Let AI drive your browser for E2E-style automation.
$ contenox run --input "Click 'Sign in' on localhost:3000" --shell
✓ Navigated — clicked selector…
Read recipe
Integrations
Notion as a Tool
Control Notion from the terminal with MCP.
$ contenox run --input "Summarize my Tasks DB" --shell
✓ Fetched Notion database…
Read recipe
Reasoning
Autonomous Planning Recipes
Complex project scaffolding from a single prompt.
$ contenox plan new "scaffold a Go HTTP server with tests" && contenox plan next --auto
Step 1/5: Create project structure... ✓
Read recipe
Reasoning
Stateful Agents with MCP
Persistent memory across tool calls via MCP.
$ contenox run --input "Remember: release is Friday" …
✓ Stored in MCP memory graph
Read recipe
Documentation
Codebase Documentation
Generate architecture docs straight from your repo.
$ contenox run --input "Document pkg/auth" --shell
## Architecture — auth package…
Read recipe
Planning
Project Planning with Linear MCP
Create tracker tickets from repo and CI context.
$ contenox run --input "Create tickets from CI + next.config" …
✓ Created LIN-42 …
Read recipe