Borrowing it
Nothing to install: this file belongs to kavo-labs/kavo. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/kavo-labs/kavo/main/.claude/skills/add-config-key/SKILL.mdgit clone --depth 1 https://github.com/kavo-labs/kavoWrote 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/kavo-labs/kavo/add-config-key)<a href="https://agentmods.dev/skills/kavo-labs/kavo/add-config-key"><img src="https://agentmods.dev/badge/skills/kavo-labs/kavo/add-config-key/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/kavo-labs/kavo/add-config-key"><img src="https://agentmods.dev/badge/skills/kavo-labs/kavo/add-config-key.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00059 | $0.01917 |
| Opus 5 | $0.00030 | $0.00958 |
| Sonnet 5 | $0.00012 | $0.00383 |
| Haiku 4.5 | $0.00006 | $0.00192 |
Grade A, and why
add-config-key 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 4d 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 — 140 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Adding a config key
Kavo has one configuration mechanism: KavoSettings, merged through a
single precedence chain (docs/internals/architecture/08-configuration.md):
built-in defaults → global (createKavo) → entity (createCrud)
→ operation (operations.<id>) → per-call (KavoCallOptions)
The schema-extensibility rule (doc 08 §1) is normative: feature work adds
keys to this schema — it never adds a second config mechanism. If you find
yourself threading a new constructor parameter or a separate options object
through the engine, stop; it belongs in KavoSettings.
Where the pieces live
BUILT_IN_DEFAULTS(packages/core/src/config/defaults.ts) — add the key with its default value. Every key needs one; there is no "unset" state a resolved config can observe.- The settings type — extend the
KavoSettingsinterface/schema so the new key is typed at every scope (global defaults, entity config,operations.<id>overrides,KavoCallOptions.settings). mergeSettings(packages/core/src/config/merge-settings.ts) — confirm the new key's shape matches the existing merge semantics rather than inventing a new one:- scalars and object-as-value keys: nearer scope replaces farther scope, key by key;
falsedisables an inheritable feature where the schema allows it (follow thedelete/operations.<id>pattern) — a nearer object re-enables it;- arrays replace wholesale, never merge element-wise;
undefinedat any scope is skipped, not treated as an explicit override.
validateSettings— add bootstrap validation that fails with aConfigurationExceptionnaming the entity, the key path, and the offending value (doc 08 §4's message shape is the bar:Invalid configuration for entity 'User' at 'pagination.maxLimit': ...). Validation runs once at bootstrap (resolveEntityConfig), not per request — the resolved config is deep-frozen afterward, so this is the only chance to catch a bad value before it's baked in.describeResolvedConfig— check whether the new key should surface inkavo.describe(entityName)'s debug dump; most settings keys should.
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.
- 4d ago Changed · +6 lines cfaa30937235
- 5d ago Changed 77d12f0f3f92
- 9d ago First seen · 134 lines · 59 tokens per session scan A 4921765b0c90
add-config-key is a skill published in the GitHub repository kavo-labs/kavo (14 stars, last pushed yesterday), licensed MIT. It adds 59 tokens to every session and 1,917 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-09-02.
Other skills, from other repositories
ocli-api
Turn any OpenAPI/Swagger API into CLI commands and call them. Search endpoints with BM25, check parameters, execute — no MCP server needed.
ast-introspection
Use Go AST-aware analysis to enumerate symbols, extract signatures, and propose mechanically safe refactors (read-only by default).
config-loader-helper
Diagnose configuration-related failures, enumerate required env vars, and guide safe local test setup (no secrets).
db-infra-mocks
Propose minimal seams and local substitutes so tests run without real RDBMS/Redis/Mongo infrastructure.
build-run
Build and run the project locally to reproduce compile/runtime issues in a safe, non-production way.
ci-orchestrator
Run a CI-like pipeline locally (format, lint, vet, static-analysis, tests) and summarize per-step results with remediation guidance.