💡 Summary
Olakai Skills provides tools for integrating and managing AI agents within the Olakai platform.
🎯 Target Audience
🤖 AI Roast: “Powerful, but the setup might scare off the impatient.”
Risk: Medium. Review: shell/CLI command execution; outbound network access (SSRF, data egress); API keys/tokens handling and storage; filesystem read/write scope and path traversal; dependency pinning and supply-chain risk. Run with least privilege and audit before enabling in production.
Olakai Skills
Official skills for integrating AI agents with Olakai - the enterprise AI observability and governance platform.
These skills follow the Agent Skills Standard and work with Claude Code, Cursor, VS Code Copilot, and other compatible AI coding assistants.
Installation
Using add-skill (Recommended)
# List available skills npx add-skill olakai-ai/olakai-skills --list # Install a specific skill npx add-skill olakai-ai/olakai-skills/olakai-get-started npx add-skill olakai-ai/olakai-skills/olakai-create-agent npx add-skill olakai-ai/olakai-skills/olakai-add-monitoring npx add-skill olakai-ai/olakai-skills/olakai-troubleshoot npx add-skill olakai-ai/olakai-skills/generate-analytics-reports
Manual Installation
# Clone to user-level skills directory git clone https://github.com/olakai-ai/olakai-skills ~/.claude/skills/olakai-skills # Or clone to project-level git clone https://github.com/olakai-ai/olakai-skills .claude/skills/olakai-skills
Available Skills
| Skill | Description | |-------|-------------| | olakai-get-started | Get started with Olakai - account setup, CLI install, authentication, first agent | | olakai-create-agent | Create a new AI agent with Olakai monitoring from scratch | | olakai-add-monitoring | Add Olakai monitoring to an existing AI agent or LLM integration | | olakai-troubleshoot | Troubleshoot monitoring issues - missing events, KPI problems, SDK errors | | generate-analytics-reports | Generate terminal-based analytics reports without the web UI |
Bundled Agent
The olakai-expert agent combines all four skills into a single specialist:
| Agent | Description | |-------|-------------| | olakai-expert | Full Olakai integration specialist - creates agents, adds monitoring, troubleshoots issues, generates reports |
Prerequisites
Before using these skills, ensure you have:
- Olakai CLI installed:
npm install -g olakai-cli - CLI authenticated:
olakai login - API key for SDK integration (generated per-agent via CLI)
The Golden Rule: Test - Fetch - Validate
Always validate your Olakai integration by generating a test event and inspecting it:
# 1. Run your agent/trigger LLM call # 2. Fetch the event olakai activity list --agent-id AGENT_ID --limit 1 --json olakai activity get EVENT_ID --json | jq '{customData, kpiData}' # 3. Validate: # - customData has all expected fields # - kpiData shows NUMBERS (not strings like "MyVariable") # - kpiData shows VALUES (not null)
Quick Reference
# CLI Authentication olakai login olakai whoami # View Activity olakai activity list --limit 10 olakai activity get EVENT_ID --json # Manage Agents (includes API key generation) olakai agents list olakai agents create --name "Agent Name" --with-api-key --json olakai agents get AGENT_ID --json | jq '.apiKey' # Manage KPIs olakai kpis list --agent-id ID olakai kpis create --formula "Variable" --agent-id ID # Manage Custom Data olakai custom-data list olakai custom-data create --name "Field" --type NUMBER
SDK Quick Start
TypeScript:
import { OlakaiSDK } from "@olakai/sdk"; const olakai = new OlakaiSDK({ apiKey: process.env.OLAKAI_API_KEY! }); await olakai.init(); const openai = olakai.wrap(new OpenAI({ apiKey }), { provider: "openai" });
Python:
from olakaisdk import olakai_config, instrument_openai olakai_config(os.getenv("OLAKAI_API_KEY")) instrument_openai()
Optional: Improved Skill Discovery
For automatic skill activation (recommended for heavy Olakai users):
# Install activation hooks for improved auto-invocation rate cp hooks/skill-activator.sh ~/.claude/hooks/ chmod +x ~/.claude/hooks/skill-activator.sh
See hooks/README.md for full setup instructions.
Documentation
Agent Compatibility
See AGENTS.md for full compatibility information with various AI coding agents.
License
MIT License - see LICENSE for details.
Contributing
Contributions welcome! Please read our contributing guidelines before submitting PRs.
Built with love by Olakai
Pros
- Comprehensive skill set for AI integration
- Supports multiple programming languages
- Easy installation and setup
- Clear documentation and quick start guides
Cons
- Requires CLI knowledge for installation
- Limited to Olakai platform users
- Potential learning curve for new users
- Dependency on external SDKs
Related Skills
pytorch
S“It's the Swiss Army knife of deep learning, but good luck figuring out which of the 47 installation methods is the one that won't break your system.”
agno
S“It promises to be the Kubernetes for agents, but let's see if developers have the patience to learn yet another orchestration layer.”
nuxt-skills
S“It's essentially a well-organized cheat sheet that turns your AI assistant into a Nuxt framework parrot.”
Disclaimer: This content is sourced from GitHub open source projects for display and rating purposes only.
Copyright belongs to the original author olakai-ai.
