Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/makingchatbots/genesys-cloud-skills/platform-apinpx skills add MakingChatbots/genesys-cloud-skills --skill platform-apigit clone --depth 1 https://github.com/MakingChatbots/genesys-cloud-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/makingchatbots/genesys-cloud-skills/platform-api)<a href="https://agentmods.dev/skills/makingchatbots/genesys-cloud-skills/platform-api"><img src="https://agentmods.dev/badge/skills/makingchatbots/genesys-cloud-skills/platform-api.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00065 | $0.01438 |
| Opus 5 | $0.00032 | $0.00719 |
| Sonnet 5 | $0.00013 | $0.00288 |
| Haiku 4.5 | $0.00006 | $0.00144 |
Grade A, and why
platform-api scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 187 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Platform API Extraction Skill
Overview
This skill provides jq query patterns for extracting API endpoint information from the Genesys Cloud Platform API Swagger 2.0 schema. The schema contains over 1,900 endpoints and 4,305 definitions in a 19MB+ file.
Schema: schema.json must be downloaded before first use. Run the download script from this skill's directory:
./scripts/download-schema.sh
See the download script for region options and usage details.
Before running any queries, determine the absolute path to this SKILL.md file's parent directory and set the schema path variable:
SCHEMA="<resolved-skill-directory>/schema.json"
All examples below use "$SCHEMA" to reference this file.
MANDATORY WORKFLOW
CRITICAL: NEVER recommend endpoints without verification!
When asked about an endpoint or API operation, you MUST follow this 4-step workflow:
PERFORMANCE REQUIREMENT: Execute Queries in PARALLEL
Steps 1-3 are INDEPENDENT queries. Execute them in a SINGLE message using multiple Bash tool calls in parallel.
Step 1: Search & Verify
Search for matching endpoints (ALWAYS limit to 15-20 results):
jq -r '.paths | keys | map(select(test("KEYWORD"; "i"))) | .[0:15] | .[]' "$SCHEMA"
Common patterns: "find all X" -> /api/v2/X$, "get specific X" -> /api/v2/X/\{id\}
See references/search-operations.md for detailed search patterns.
Step 2: Confirm Exact Endpoint Exists
jq '.paths["/api/v2/exact/path"] | keys' "$SCHEMA"
If this returns null, the endpoint does not exist. Do NOT proceed.
Step 3: Extract Full Operation Details
jq '.paths["/api/v2/exact/path"]["METHOD"] | {
operationId,
summary,
description,
permissions: ."x-inin-requires-permissions",
parameters: [.parameters[]? | {name, in, required, type, description}]
}' "$SCHEMA"
Replace METHOD with: get, post, put, patch, or delete.
See references/jq-query-patterns.md for complete extraction patterns and references/schema-resolution.md for resolving $ref references.
What ships with it
5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 187 lines · 65 tokens per session scan A 088933ca9531
platform-api is a skill published in the GitHub repository MakingChatbots/genesys-cloud-skills (1 stars, last pushed 6mo ago), licensed MIT. It adds 65 tokens to every session and 1,438 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
agenttrace-session-audit
Audit local AI coding-agent sessions with agenttrace. Use when the user asks to inspect Claude Code, Codex CLI, Gemini CLI, Qwen Code, Cline, Aider, Cursor exports, Hermes Agent, OpenCode, OpenClaw, Pi, Oh My Pi, Kimi CLI, Copilot-style logs, or generic JSON/JSONL traces for cost, tokens, tool failures, latency…
justfix
Use this skill when the user asks for a quote, estimate, price, or "how much" for a UK trades job – electrical, plumbing, locksmith, glazing, carpentry, handyperson, heating, gas, roofing, drains, white goods, or boiler service. Calls the JustFix Estimator MCP server to return a cost breakdown, scope summary, and a…
sync-awareness
Suggest syncing MCP server configurations or instruction files to other AI coding agents when the user is editing MCP settings (.claude.json, .mcp.json) or modifying CLAUDE.md files. Available commands: /sync, /sync-list, /sync-diff, /sync-instructions.
timeline-report
Generate a "Journey Into [Project]" narrative report analyzing a project's entire development history from claude-mem's timeline. Use when asked for a timeline report, project history analysis, development journey, or full project report.
bootstrap
This skill guides you through setting up your Agent Recall persona. It runs automatically on first use or when invoked with /bootstrap.
smart-explore
Token-optimized structural code search using tree-sitter AST parsing. Use instead of reading full files when you need to understand code structure, find functions, or explore a codebase efficiently.