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 β€” Tools 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(tools): 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

HubSpot via MCP

HubSpot's MCP server via OAuth + pre-issued credentials.

$ contenox chat "use hubspot to read the companies"
Clove β€” fintech SaaS, Associated Contacts: 2
Read recipe
Integrations

Leads β†’ HubSpot

Web search to CRM: leads found by Tavily, companies + contacts in HubSpot.

$ ./leads-to-hubspot.sh leads.txt
OK Paygentic id=429822814428 contacts=776398192879,…
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

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