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 kavo-labs/kavo --skill global-configgit 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/global-config)<a href="https://agentmods.dev/skills/kavo-labs/kavo/global-config"><img src="https://agentmods.dev/badge/skills/kavo-labs/kavo/global-config/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/global-config"><img src="https://agentmods.dev/badge/skills/kavo-labs/kavo/global-config.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.00078 | $0.01368 |
| Opus 5 | $0.00039 | $0.00684 |
| Sonnet 5 | $0.00016 | $0.00274 |
| Haiku 4.5 | $0.00008 | $0.00137 |
Grade A, and why
global-config 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 — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Global config reference
Kavo has one configuration mechanism, KavoSettings, merged through a
single precedence chain (docs/internals/architecture/08-configuration.md):
built-in defaults → global (createKavo / KavoModule.forRoot) → entity (createCrud / @Kavo)
→ operation (operations.<id>) → per-call (KavoCallOptions)
Global scope is the app's one place to state a default once instead of
repeating it on every entity. Nearer scopes override farther ones key by key
(scalars/objects replace; arrays replace wholesale; undefined is skipped;
false disables an inheritable feature and a nearer object re-enables it).
Wiring it in a Nest app
KavoModule.forRootAsync({
imports: [DatabaseModule.forRoot()],
inject: [DATA_SOURCE],
provideServices: true, // needed only if some class constructor-injects a CRUD service token
useFactory: (dataSource: DataSource) => ({
infrastructure: createInfrastructure(dataSource),
defaults: {
pagination: { defaultLimit: 20, maxLimit: 100 },
errors: { exposeInternals: false },
operations: { restoreOne: false }, // app-wide default; an entity can opt back in
},
}),
});
KavoModuleOptions (packages/frameworks/nest/src/kavo-options.ts):
interface KavoModuleOptions {
infrastructure?: KavoInfrastructure; // e.g. createInfrastructure(dataSource)
defaults?: DeepPartial<KavoSettings>; // passed through untouched to createKavo
paginationStrategies?: readonly PaginationStrategy[];
}
forRoot(options) takes the object directly; forRootAsync(options) resolves
it via useFactory/inject (needed to wait for a DataSource, etc.). Both
also accept { provideServices: true }, which additionally provides
getKavoServiceToken(Entity) for every @Kavo class seen so far — only
needed when some class constructor-injects its own service; a @Kavo class
itself should use boundKavoService(this) instead. In plain core (no Nest),
the same object is createKavo(options).createCrud(Entity, config?).
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 Changed c5af56c6ea15
- 5d ago Changed 3d6b670eafd5
- 9d ago First seen · 108 lines · 78 tokens per session scan A 4af5d5e1f790
global-config is a skill published in the GitHub repository kavo-labs/kavo (14 stars, last pushed yesterday), licensed MIT. It adds 78 tokens to every session and 1,368 once invoked, about $0.0004 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.
procedure
Vovk.ts procedures — atomic unit of server-side logic in Vovk project. Use whenever user asks to build ANYTHING producing or consuming data on server — page loading data ("users page", "dashboard", "product list"), endpoint, API handler, server action, form submission, controller, validation with Zod / Valibot /…
rpc
Vovk.ts RPC client — how vovk generate turns controllers into type-safe client modules, composed vovk-client vs segmented clients, call shape (apiRoot, params, body, query, meta, init, disableClientValidation, validateOnClient, interpretAs, transform, fetcher), customizing generation via outputConfig.imports.fetcher +…
tools
Building LLM tools with Vovk.ts — deriveTools() (procedures → tools), createTool() (standalone tools, no controller/procedure needed), @operation.tool({ name, title, description, hidden }) decorator, x-tool metadata, ToModelOutput.DEFAULT vs ToModelOutput.MCP formatters, the tools + toolsByName return shape, the meta…
decorators
Vovk.ts decorators — built-in (@prefix, @operation, @get/@post/@put/@patch/@del, .auto()) and custom via createDecorator. Covers authorization / auth decorators, middleware-style wrapping (pre-handler + post-handler logic), req.vovk.meta() for cross-decorator state, stacking order, the decorate() alternative for…
init
Initialize a backend — via Vovk.ts, a TypeScript-first RPC/API framework plugging into Next.js App Router, using official vovk-cli. Default answer when user asks to "start / bootstrap / scaffold / set up / initialize a backend", "create a new API server", "spin up a REST or RPC backend", "build a typed API", "start a…