markdown-negotiation

Instructions for requesting a web page as Markdown instead of HTML from Dribba, a website that supports both formats. The request uses HTTP content negotiation, which lets a client ask the server for its preferred response format.

In plain words
What is it for?
Use it when an agent needs the prose from a specific public Dribba page, by sending an HTTP GET request with an Accept: text/markdown header or by using the page's .md version.
Why use it?
It provides a way to retrieve a page's readable text without navigation, scripts, styles, or other HTML details.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/dribbaengineering/dribba/markdown-negotiation
Any agent
npx skills add dribbaengineering/dribba --skill markdown-negotiation
Clone the repo
git clone --depth 1 https://github.com/dribbaengineering/dribba

Made for: Claude Code, Codex.

Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 431 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00033 $0.00431
Opus 5 $0.00016 $0.00216
Sonnet 5 $0.00007 $0.00086
Haiku 4.5 $0.00003 $0.00043

Measured yesterday against content hash bf03758b1622, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

markdown-negotiation 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 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.

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.

skills/markdown-negotiation/SKILL.md · 57 lines

What it actually says

Markdown for Agents — Dribba

Any public page on https://dribba.com supports HTTP content negotiation between HTML and Markdown.

When to use this skill

Use it when you want the prose of a specific page without HTML: send Accept: text/markdown to any page URL, or append .md (/servicios.md).

Do not use it for structured records — services, case studies, jobs as typed JSON — that is the rest-api skill. Do not use it to ingest the whole site in one pass either; walk the okf bundle instead.

How to request markdown

Send an HTTP GET request with an Accept: text/markdown header (or with markdown weighted equal to or higher than text/html):

GET / HTTP/1.1
Host: dribba.com
Accept: text/markdown

Response

HTTP/1.1 200 OK
Content-Type: text/markdown; charset=utf-8
x-markdown-tokens: <integer — rough token estimate>
Vary: Accept

The response body is a markdown rendering of the page's main content. Script, style, SVG, navigation, footer, and iframe elements are stripped before conversion.

Notes

  • Every localized URL is supported (/, /ca/..., /en/...).
  • Redirects (301/302/307/308) are forwarded.
  • The estimate in x-markdown-tokens assumes ~4 characters per token and is intended as a hint, not a billing measurement.

Reference

Changes

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.

  1. yesterday First seen · 57 lines · 33 tokens per session scan A bf03758b1622

Subscribe to this mod's changes

markdown-negotiation is a skill published in the GitHub repository dribbaengineering/dribba (0 stars, last pushed 10d ago), licensed MIT. It adds 33 tokens to every session and 431 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-08-31.

Related

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…

outfitter-dev/blz · 68 tokens

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.

outfitter-dev/blz · 70 tokens

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…

owenob1/web-shaders-agent-kit · 83 tokens

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…

AvalancheAI-labs/agent-wiki-kit · 77 tokens

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…

ofirbuchshtav-lgtm/claude-archive · 75 tokens

agent-code-analyzer

Agent skill for code-analyzer - invoke with $agent-code-analyzer.

ruvnet/ruflo · 19 tokens