Skip to main content
The CLI works as a tool inside any coding assistant that can execute shell commands. This lets Claude Code, Cursor, Windsurf, and similar tools invoke your deployed Reminix agents and tools directly from a chat or command palette.

Claude Code

Create a Claude Code skill that invokes your Reminix agents:
# A Claude Code skill can call your agents
reminix agent invoke code-reviewer \
  --prompt "Review this pull request for security issues" \
  -o json

# Or call tools to look up context
reminix tool call get_customer_context \
  -i '{"customer_id": "cust_123"}' \
  -o json

Other coding assistants

Any coding assistant that supports shell execution can call your deployed agents and tools through the CLI:
  • Cursor — use in custom commands or agent mode
  • Windsurf — invoke via terminal tool calls
  • GitHub Copilot — use in workspace agent mode
All commands support -o json for structured output that AI agents can parse reliably.

Tips

  • Always use -o json when calling from a coding assistant for reliable parsing
  • Use -v (verbose) to include execution metadata in the response
  • Use --stream for long-running agent calls to get incremental output
  • Set REMINIX_PROJECT as an environment variable to avoid passing -p on every call

Next steps

Scripting

Bash patterns for processing CLI output.

CI/CD

Use the CLI in GitHub Actions and other pipelines.

CLI Reference

Every command and flag in one place.

Tools

Define new tools coding assistants can call through the CLI.