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 skills add gkmex75/gkmex-developer-resources --skill gkmex-api-integrationgit clone --depth 1 https://github.com/gkmex75/gkmex-developer-resourcesWrote 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/gkmex75/gkmex-developer-resources/gkmex-api-integration)<a href="https://agentmods.dev/skills/gkmex75/gkmex-developer-resources/gkmex-api-integration"><img src="https://agentmods.dev/badge/skills/gkmex75/gkmex-developer-resources/gkmex-api-integration.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.1 | $0.00037 | $0.00725 |
| Opus 5 | $0.00018 | $0.00362 |
| Sonnet 5 | $0.00007 | $0.00145 |
| Haiku 4.5 | $0.00004 | $0.00072 |
Grade A, and why
gkmex-api-integration 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 — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Gkmex API integration
Build consumers of the published inventory; use the inventory and comparison workflows for buying questions. Check the developer guide and OpenAPI contract before adding integration behavior.
Choose the existing interface
| Runtime | Official package | List / detail methods |
|---|---|---|
| Node.js 20+ | npm install @gstcranes/gkmex |
listCranes / getCrane |
| Python 3.10+ | pip install gkmex |
list_cranes / get_crane |
Both export GkmexClient and GkmexError. Respect the application's chosen stack. If its runtime cannot use an SDK, call public REST instead: GET https://gkmex.com/api/health, GET https://gkmex.com/api/v1/cranes, and GET https://gkmex.com/api/v1/cranes/{id}. Use a returned public ID for details; never guess one.
All interfaces are public, zero-auth and read-only. Do not request an API key or invent OAuth. For direct HTTP clients, send Accept: application/json, a truthful application User-Agent and a finite timeout. A non-JSON403 can come from edge protection, not missing API credentials; inspect it without changing server protection.
Read pages correctly
Collection filters are brand, type (mobile or crawler), limit (1–100), and either offset or cursor. Never send cursor and offset together. Keep filters stable across pages. Treat next_cursor as opaque: send it unchanged through normal query encoding, then stop when absent or null. count is this page's length, not the matching total.
import { GkmexClient } from "@gstcranes/gkmex";
const client = new GkmexClient();
let cursor;
do {
const page = await client.listCranes({
type: "mobile",
limit: 100,
...(cursor ? { cursor } : {}),
});
for (const crane of page.data) console.log(crane.url);
cursor = page.next_cursor;
} while (cursor);
Preserve data and failures
An empty data array with HTTP200 is a valid no-match result; guard before accessing its first record. A timeout, HTTP error or malformed response is not empty inventory. Expose failure or incomplete-result state; do not silently return an empty success. Inspect SDK GkmexError.status and public error details. Correct400 parameters or a404 ID before retrying; bound any transient retries and respect Retry-After when supplied.
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 · 50 lines · 37 tokens per session scan A 8e84cbc0ca0f
gkmex-api-integration is a skill published in the GitHub repository gkmex75/gkmex-developer-resources (0 stars, last pushed 5d ago), licensed MIT. It adds 37 tokens to every session and 725 once invoked, about $0.0002 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-09-04.
Other skills, from other repositories
fastapi
FastAPI best practices and conventions. Use when working with FastAPI APIs, Pydantic models, dependencies, streaming responses including Server-Sent Events (SSE), and serving frontend apps. Keeps FastAPI code clean and up to date with the latest features and patterns.
fastapi-expert
Expert-level FastAPI development for high-performance Python APIs with async support. Use when the user mentions Python, API, async, REST, OpenAPI, or Pydantic, or when the task involves FastAPI Features.
fastapi
Operational skill for FastAPI: Pydantic models, dependency injection, async routes, OpenAPI, authentication hooks, and TestClient-based testing.
python-development
Professional Python development skill covering modern Python 3.10+, FastAPI, Django, Flask, async programming, data processing, and best practices. Use this skill when developing Python web applications, building FastAPI/Django projects, implementing async programming, or need guidance on Python architecture design…
stripe-projects
Use after E2B sandbox/API access has been provisioned through Stripe Projects and the user needs to use the resulting E2B API key with the E2B CLI, JavaScript SDK, Python SDK, or Code Interpreter SDK.
azure-mgmt-botservice-py
Azure Bot Service Management SDK for Python. Use for creating, managing, and configuring Azure Bot Service resources. Triggers: "azure-mgmt-botservice", "AzureBotService", "bot management", "conversational AI", "bot channels".