Agent Skills

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.md

The 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

JWT authentication flow
Device listing, search, and status queries
Data usage analytics by device, date, and group
Content filtering — top allowed/denied domains
GPS location tracking and history
Account and billing information
SmartFailover device monitoring
Cradlepoint router diagnostics

Preview

SKILL.md
# 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-domains

Read-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

~/.openclaw/workspace/skills/sentinel/
Install
mkdir -p ~/.openclaw/workspace/skills/sentinel
cp SKILL.md ~/.openclaw/workspace/skills/sentinel/
openclaw gateway restart

Auto-discovered on next session. Works with any model backend.

Claude Code

Claude Code

~/.claude/skills/sentinel/
Install
mkdir -p ~/.claude/skills/sentinel
cp SKILL.md ~/.claude/skills/sentinel/

Claude discovers it automatically on next session.

OpenAI Codex

OpenAI Codex

~/.codex/skills/sentinel/
Install
mkdir -p ~/.codex/skills/sentinel
cp SKILL.md ~/.codex/skills/sentinel/

Available in your next Codex CLI session.

Gemini CLI

Gemini CLI

~/.gemini/skills/sentinel/
Install
mkdir -p ~/.gemini/skills/sentinel
cp SKILL.md ~/.gemini/skills/sentinel/

Gemini picks it up on next invocation.

How it works

1

Download

Grab the SKILL.md file — one file, 379 lines, pure markdown.

2

Drop it in

Copy to your agent's skills directory. No config, no dependencies, no build step.

3

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