Borrowing it
Nothing to install: this file belongs to richardwooding/file-search-on. 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/richardwooding/file-search-on/main/.claude/skills/extend-cel-schema/SKILL.mdgit clone --depth 1 https://github.com/richardwooding/file-search-onWrote 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/richardwooding/file-search-on/extend-cel-schema)<a href="https://agentmods.dev/skills/richardwooding/file-search-on/extend-cel-schema"><img src="https://agentmods.dev/badge/skills/richardwooding/file-search-on/extend-cel-schema/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/richardwooding/file-search-on/extend-cel-schema"><img src="https://agentmods.dev/badge/skills/richardwooding/file-search-on/extend-cel-schema.svg" alt="Reviewed on agentmods" width="80" 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.00138 | $0.01555 |
| Opus 5 | $0.00069 | $0.00777 |
| Sonnet 5 | $0.00028 | $0.00311 |
| Haiku 4.5 | $0.00014 | $0.00155 |
Grade A, and why
extend-cel-schema 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 12d 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 — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Extend CEL Schema
Every CEL-visible attribute in file-search-on must be declared, resolvable, and documented — three call sites that must move together. Drift between them produces a runtime error (no such attribute: foo) the moment a CEL expression references the missing piece — go build will not catch it. This skill makes the invariant explicit and ships an audit script that reports drift.
The invariant
A CEL-visible attribute must be declared, resolvable, and documented. Drift produces a runtime error (no such attribute: foo) the moment a CEL expression references the missing piece — go build will not catch it.
| Where | What goes there | Failure mode if missing |
|---|---|---|
internal/celexpr/env.go — cel.Variable("foo", cel.<Type>Type) inside New |
Declares the variable to cel-go | Compile error: undeclared reference to 'foo' |
internal/celexpr/activation.go — resolution in (*fileAttrsActivation).ResolveName, via either a case "foo": returning a typed FileAttributes field or a key in the zeroDefaults map |
How the attribute's value is produced at evaluation time | Runtime error: no such attribute: foo |
internal/celexpr/schema.go — entry in the right AttributeDoc slice |
Drives both --list output and the MCP list_attributes tool |
Attribute is invisible to humans and to MCP clients |
How resolution works (post-2024 refactor). ResolveName(name) is a single switch:
- Typed fields — common scalars (
name,path,size, …) and everyis_*predicate /md5/similarity/ … resolve via acase "foo": return a.attrs.Foo, truethat reads aFileAttributesstruct field. No default needed; the field is always present. - Type-specific / front-matter attributes — fall through the switch to a verbatim
Extra[name]lookup, then tozeroDefaults[name]. There is no rename switch anymore: the content type'sAttributes()map must emit the final CEL name directly (e.g. emitimg_width, notwidth; emitjson_kind, notkind). ThezeroDefaultsentry supplies the value for files that didn't emit the key.
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 12d ago First seen · 60 lines · 138 tokens per session scan A f0445357fe0b
extend-cel-schema is a skill published in the GitHub repository richardwooding/file-search-on (5 stars, last pushed 3d ago), licensed MIT. It adds 138 tokens to every session and 1,555 once invoked, about $0.0007 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.
Other skills, from other repositories
go
Use when writing, reviewing, testing, or shipping Go code and HTTP services: idioms, %w error wrapping, goroutine/context/errgroup concurrency, net/http 1.22 routing, log/slog, project layout, table-driven tests, Go hardening. NOT language-agnostic threat modeling (that is secure-coding), NOT Dockerfile/CI shipping…
go-docs
Go 1.26 — language specification, standard library, concurrency, modules, tools, testing, crypto, networking, database access, and idiomatic patterns.
golang-samber-do
Dependency injection in Golang using samber/do — service containers, lifecycle management, scopes, health checks, graceful shutdown, and module organization. Apply when using or adopting samber/do, when the codebase imports github.com/samber/do or github.com/samber/do/v2, or when refactoring manual constructor…
cartograph-use-case
Compile use-case trees into docs/hops.md: Input → Branches → Output. Use when hops.md is missing or stale, the user asks to map a flow, an event is a different use case, or traces break across async calls.
go
Use when writing Go/Golang code — goroutines/channels concurrency, net/http web servers, database/sql, generics (1.18+), module management, testing and benchmarking. Go: the language powering Docker, Kubernetes, and cloud-native infrastructure.
golang-grpc
Provides gRPC usage guidelines, protobuf organization, and production-ready patterns for Golang microservices. Use when implementing, reviewing, or debugging gRPC servers/clients, writing proto files, setting up interceptors, handling gRPC errors with status codes, configuring TLS/mTLS, testing with bufconn, or…