Set up the Osuite AI agents
The Osuite AI agents run as skills inside your AI IDE. This page is the one-time setup shared by every agent: create an API key, install the Osuite CLI and bundled skills, and authenticate it. Do it once and every agent — Instrumentation, Investigation, Visualizer, and Write PromQL — becomes available as a slash command.
Prerequisites
Section titled “Prerequisites”- An Osuite Cloud account
- An AI IDE that supports agent skills (see Supported AI IDEs)
Step 1: Create your API key
Section titled “Step 1: Create your API key”An API key lets the CLI and the agents interact with Osuite. Create one under Integration or Settings → Preferences, then copy it — you will need it in Step 3.
Step 2: Install the Osuite CLI
Section titled “Step 2: Install the Osuite CLI”curl -fsSL https://osuite.io/install-osuite-cli.sh | bashThe installer supports Linux and macOS on x64 and ARM64. It installs the standalone CLI at ~/.local/bin/osuite and installs all four agent skills without requiring Node.js, npm, or Bun.
Confirm the installation:
osuite --versionIf osuite is not found, add the installation directory to your current shell’s PATH:
export PATH="$HOME/.local/bin:$PATH"Add the same line to your shell profile to keep it available in new shells.
Step 3: Authenticate the CLI
Section titled “Step 3: Authenticate the CLI”The agents use the osuite CLI to query your telemetry and apply changes. Point it at your account by adding the following to your shell profile:
export OSUITE_API_ENDPOINT=https://api.<region>.osuite.ioexport OSUITE_API_KEY=<your-api-key>Run osuite whoami to confirm you are authenticated.
Refresh or repair the agent skills
Section titled “Refresh or repair the agent skills”osuite init-aiThe installer already installs all four skills. Run osuite init-ai only to repair or manually refresh them: Instrumentation (/osuite-instrument), Investigation (/osuite-investigate), Visualizer (/osuite-edit-dashboard), and Write PromQL (/osuite-write-promql).
To pick up newer skill versions later, run osuite upgrade, which updates the CLI and refreshes the installed skills.
Supported AI IDEs
Section titled “Supported AI IDEs”The agents install as standard agent skills, so any AI IDE that supports skills can invoke them, including:
- Cursor
- Antigravity
- Claude Code
Once installed, trigger any agent from your IDE as a slash command — for example /osuite-investigate the checkout API is throwing 500s.
Next steps
Section titled “Next steps”- Instrumentation Agent — send traces and logs to Osuite from your IDE
- Investigation Agent — diagnose production incidents from your IDE
- Visualizer Agent — build dashboards from natural language
- Write PromQL Agent — compose PromQL against your real metrics