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/dribbaengineering/dribba/rest-apinpx skills add dribbaengineering/dribba --skill rest-apigit clone --depth 1 https://github.com/dribbaengineering/dribbaWhat 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.00064 | $0.01280 |
| Opus 5 | $0.00032 | $0.00640 |
| Sonnet 5 | $0.00013 | $0.00256 |
| Haiku 4.5 | $0.00006 | $0.00128 |
Grade A, and why
rest-api scanned grade A with 1 finding 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 yesterday.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl https://dribba.com/api How it starts
The opening of the file, as written. The whole thing — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.
REST API — Dribba
https://dribba.com/api/v1 is the versioned, read-only JSON surface of
dribba.com. No API key, no OAuth, no registration. Production is the sandbox:
nothing here writes, charges or affects another client.
Start at the unversioned index, which names every published version and the policies that apply to it:
curl https://dribba.com/api
When to use this skill
Reach for the REST API when you need structured data with a stable shape: listing Dribba's services, matching a case study to an industry, reading the salary band of an opening, or getting a budget range before contacting anyone.
Do not use it to read page prose — for that, ask any page URL for markdown
(Accept: text/markdown, see the markdown-negotiation skill) or walk the OKF
bundle (okf skill). And if you are an agent that wants to act (submit a
contact request), use the mcp skill: the write endpoints on this API enforce
same-origin and will answer 403 origin_not_allowed.
Endpoints
| Method | Path | Returns |
|---|---|---|
| GET | /api/v1 |
Endpoints, rate-limit and deprecation policy of v1 |
| GET | /api/v1/company |
Legal identity, offices, team model, distinctions, clients |
| GET | /api/v1/services |
{ count, items[] } — slug, name, summary, URL |
| GET | /api/v1/services/{slug} |
One service |
| GET | /api/v1/cases |
Case studies with industry, client, year, stack |
| GET | /api/v1/cases/{slug} |
Challenge, solution, outcome, metrics |
| GET | /api/v1/articles |
Blog index, each with the URL of its markdown twin |
| GET | /api/v1/jobs |
Openings with location, requirements, salary band |
| GET | /api/v1/pricing |
Estimator inputs and the €30,000 floor |
| GET | /api/v1/comparisons |
Technology comparisons ({ topic, verdict }) |
| POST | /api/v1/estimate |
{ min, max, mid } in EUR for a described project |
curl -X POST https://dribba.com/api/v1/estimate \
-H 'Content-Type: application/json' \
-d '{"platforms":["ios","android"],"complexity":"standard","timeline":"normal"}'
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.
- yesterday First seen · 115 lines · 64 tokens per session scan A 99e36d6fbf91
rest-api is a skill published in the GitHub repository dribbaengineering/dribba (0 stars, last pushed 10d ago), licensed MIT. It adds 64 tokens to every session and 1,280 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
blz-docs-search
Teaches effective documentation search using the blz CLI tool. Use when searching documentation with blz, looking up APIs, finding code examples, retrieving citations, or when questions mention libraries, frameworks, "how to", or documentation topics. Covers BM25 full-text search patterns, citation retrieval, and…
blz-source-management
Teaches how to discover, validate, and add llms.txt documentation sources to the blz CLI. Use when adding documentation to blz, finding llms.txt or llms-full.txt files, validating sources, refreshing content, or managing the documentation index. Covers source discovery, dry-run validation, and index file handling.
web-shaders
Use when writing, debugging, or reviewing shaders for the web — GLSL or WGSL, raw WebGL2/WebGPU, Three.js (ShaderMaterial/RawShaderMaterial/TSL), or React Three Fiber. Covers the language/platform matrix, correct boilerplate, common effects (SDF/raymarching, noise, post-processing), and the pitfalls that make browser…
wiki-ingest
Compile a raw source (document, URL content, meeting notes, research output) into a wikikit agent wiki — merge-don't-overwrite, log contradictions, maintain cross-references, then lint. Use whenever the user says "add this to the wiki", "ingest this", or drops new source material for a wiki maintained with…
claude-archive
Use the Claude Archive — the site for AI — before and after solving any non-trivial problem. Trigger when hitting a bug, error, or tricky task (search/take a scored solution first), and after solving anything reusable (give it back). Also trigger on "check the archive", "archive this", or any mention of the Claude…
agent-code-analyzer
Agent skill for code-analyzer - invoke with $agent-code-analyzer.