One skill. Every AI platform.
A single SKILL.md file that teaches any AI agent how to manage your Sentinel IoT fleet. Drop it in. Your agent does the rest.
sentinel-skill
v1.0 · 379 lines · SKILL.mdThe Sentinel Agent Skill gives your AI agent complete knowledge of the Kajeet Sentinel API — 175+ endpoints, authentication patterns, parameter formats, and example queries. Your agent reads this file and immediately knows how to query devices, check usage, monitor content filtering, track GPS, and more.
What your agent learns
Preview
# Sentinel Agent Skill
name: sentinel
version: 1.0
description: Query Kajeet Sentinel IoT fleet
## Authentication
export SENTINEL_TOKEN="your-jwt-token"
## Quick Start
"How many active devices?"
→ GET /v1.0/devices/{corpId}/totals
"Show usage for device 521-267-1508"
→ GET /v1.0/devices/{corpId}/{mdn}/usage
"What are the top blocked websites?"
→ GET /v1.0/devices/{corpId}/denied-domainsRead-only by default
Device queries, usage analytics, content filtering — no destructive operations until you're ready.
Zero config
Set one env var (SENTINEL_TOKEN), drop the file, done. Your agent handles the rest.
Natural language
"How many devices are active?" → agent calls the right endpoint, formats the answer.
Open standard
Built on the agentskills.io spec. One file works everywhere — no vendor lock-in.
Platform Install Guide
Same skill, same file. Just drop it in the right directory.
OpenClaw
~/.openclaw/workspace/skills/sentinel/mkdir -p ~/.openclaw/workspace/skills/sentinel
cp SKILL.md ~/.openclaw/workspace/skills/sentinel/
openclaw gateway restartAuto-discovered on next session. Works with any model backend.
Claude Code
~/.claude/skills/sentinel/mkdir -p ~/.claude/skills/sentinel
cp SKILL.md ~/.claude/skills/sentinel/Claude discovers it automatically on next session.
OpenAI Codex
~/.codex/skills/sentinel/mkdir -p ~/.codex/skills/sentinel
cp SKILL.md ~/.codex/skills/sentinel/Available in your next Codex CLI session.
Gemini CLI
~/.gemini/skills/sentinel/mkdir -p ~/.gemini/skills/sentinel
cp SKILL.md ~/.gemini/skills/sentinel/Gemini picks it up on next invocation.
How it works
Download
Grab the SKILL.md file — one file, 379 lines, pure markdown.
Drop it in
Copy to your agent's skills directory. No config, no dependencies, no build step.
Ask anything
"How many devices are active?" — your agent reads the skill, calls the API, returns the answer.
Build your own Agent Skill
The Agent Skills spec is open. If your platform supports SKILL.md, Sentinel works with it — no changes needed.
Read the Agent Skills spec