Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/groniz/groniz-cli/llms.txt

Use this file to discover all available pages before exploring further.

The Groniz agent skill installs the same way across all supported agents — one command, no manual configuration. The differences between agents come down to where the skill file is placed and whether the agent also supports the Groniz MCP server as an alternative transport. This page covers every agent other than Claude Code, which has its own setup guide.

Install command

To let the skills CLI detect your agent automatically:
npx skills add groniz/groniz-cli
Or target one or more agents by name to skip the detection prompt:
npx skills add groniz/groniz-cli -a opencode -a cline
Select your agent below for specific install paths, MCP instructions, and any per-agent caveats.

Skill install

npx skills add groniz/groniz-cli
The skill file is installed to .agents/skills/ in your project directory. Codex reads this directory automatically.

MCP setup

Codex supports MCP via ~/.codex/config.toml. Add the Groniz server by editing that file directly:
[[mcp_servers]]
name = "groniz"
url  = "https://mcp.groniz.com/mcp"

[mcp_servers.headers]
Authorization = "Bearer YOUR_API_KEY"
Replace YOUR_API_KEY with your Groniz API key. Codex will pass the Authorization header on every MCP request.
The GRONIZ_API_KEY environment variable must be set before Codex launches. Codex reads environment variables at startup and will not pick up changes made after it is running. Add the export to your shell profile (~/.zshrc, ~/.bashrc, etc.) so it is always present when you open a new terminal.

Authentication

Set your API key in your shell profile so it is available before Codex starts:
export GRONIZ_API_KEY=your_api_key_here
Or authenticate via the CLI directly:
groniz auth login
The stored credential in ~/.groniz/credentials.json is used automatically by the CLI regardless of the GRONIZ_API_KEY env var.

Common to all agents

Regardless of which agent you use, two things must be in place before the agent can post: 1. The Groniz CLI binary The skill teaches the agent how to use the CLI, but the binary itself must be installed separately. If you have not already done this:
curl -fsSL https://groniz.com/install.sh | sh
No Node.js required. The binary is self-contained and can be updated later with groniz update. 2. Valid credentials Every Groniz command requires authentication. Run this once:
groniz auth login
Or set the environment variable in your shell profile:
export GRONIZ_API_KEY=your_api_key_here
The stored credential in ~/.groniz/credentials.json persists across shell sessions and agent restarts, unlike an export that only lasts for the current session.
If your agent is not listed above, check whether it reads .claude/skills/ or .agents/skills/. If it supports either directory, install the skill manually by copying SKILL.md from github.com/groniz/groniz-cli into the appropriate folder. The file is plain Markdown and requires no modification.

Build docs developers (and LLMs) love