Cookbook

Recipes for repeatable workflows.

Start from pre-built chains for release notes, browser checks, API writes, and knowledge-tool workflows. Copy the command, inspect the policy, and run it from your terminal.

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