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 pantheon-org/tekhne --skill context-indexgit clone --depth 1 https://github.com/pantheon-org/tekhneWrote 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/pantheon-org/tekhne/context-index)<a href="https://agentmods.dev/skills/pantheon-org/tekhne/context-index"><img src="https://agentmods.dev/badge/skills/pantheon-org/tekhne/context-index/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/pantheon-org/tekhne/context-index"><img src="https://agentmods.dev/badge/skills/pantheon-org/tekhne/context-index.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Anti-Refusal · line 146 Skill instructs the agent to omit warnings, disclaimers, or ethical commentary. Stripping safety caveats hides risk from the user and is a common jailbreak preamble.Fix: Remove instructions that suppress warnings, disclaimers, or ethical commentary. Let the agent surface safety-relevant caveats to the user.
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.00178 | $0.02272 |
| Opus 5 | $0.00089 | $0.01136 |
| Sonnet 5 | $0.00036 | $0.00454 |
| Haiku 4.5 | $0.00018 | $0.00227 |
Grade A, and why
context-index 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 — 218 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Context Index
Scan, validate, and index every context file the project has captured.
Mindset
The index is a cache, never a ledger. The source of truth for what exists is always the YAML frontmatter inside each context file; the generated index is a derived summary that lets an agent answer "what plans/findings/decisions exist?" without reading every file. Because it is derived, regeneration is idempotent and safe to run whenever there is doubt about freshness — there is no state to corrupt, only a file to rewrite from scratch.
A file with missing or malformed frontmatter is not a formatting nitpick: it is invisible to every tool and agent that reads the index instead of the raw directory tree. Treat exclusion-from-index as the real failure mode, not the warning text that reports it. Balance that with proportionate language — flag the gap clearly (ALWAYS regenerate after a change, NEVER hand-edit the index) without turning every missing tag into a blocking emergency.
Prerequisites
- One or more context files, each with frontmatter that is valid or fixable.
- The
create-context-fileskill (companion to this one) to add or repair frontmatter on files that lack it, using its typology set and templates. - Shell access (
bash,python3,git) to run this skill's scripts.
When to Use
- After creating, renaming, or deleting a context file.
- When a pre-commit or CI gate blocks with a message like "missing YAML frontmatter" or "index is stale."
- When asked "what plans / findings / decisions / follow-ups exist?" — read the index rather than walking the directory tree by hand.
- After a bulk import, migration, or retroactive frontmatter cleanup touching many context files at once.
When Not to Use
- Do not run this as a substitute for creating a missing file — create it
first with the
create-context-fileskill, which owns the filename and frontmatter shape. - Do not edit the generated index by hand — it is fully regenerated and any manual edit is silently overwritten on the next run.
- Do not treat a clean regeneration as proof every context file is meaningful or current — it only proves the frontmatter parses; stale content still needs a human to retire it.
What ships with it
23 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.
- .tessl-plugin/plugin.json 523 B
- evals/instructions.json 1.7 KB
- evals/scenario-1/capability.txt 19 B
- evals/scenario-1/criteria.json 1006 B
- evals/scenario-1/task.md 1.5 KB
- evals/scenario-2/capability.txt 19 B
- evals/scenario-2/criteria.json 1.1 KB
- evals/scenario-2/task.md 2.0 KB
- evals/scenario-3/capability.txt 20 B
- evals/scenario-3/criteria.json 892 B
- evals/scenario-3/task.md 1.9 KB
- evals/scenario-4/capability.txt 34 B
- evals/scenario-4/criteria.json 1.2 KB
- evals/scenario-4/task.md 1.9 KB
- evals/summary.json 759 B
- references/regeneration-reference.md 6.1 KB
- scripts/check-context-filenames.sh 2.1 KB runs code
- scripts/check-context-frontmatter.sh 901 B runs code
- scripts/check-plan-staleness.sh 3.0 KB runs code
- scripts/check-wave-evidence.sh 2.5 KB runs code
- scripts/context-ready.sh 5.4 KB runs code
- scripts/regenerate-context-index.sh 8.3 KB runs code
- scripts/validate-context-frontmatter.sh 2.5 KB runs code
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 · +21 lines · +43 tokens per session ff3b638f0298
- 9d ago First seen · 197 lines · 135 tokens per session scan A ff93efceba19
context-index is a skill published in the GitHub repository pantheon-org/tekhne (10 stars, last pushed yesterday), licensed MIT. It adds 178 tokens to every session and 2,272 once invoked, about $0.0009 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-03.
Other skills, from other repositories
syndic
Gère un parc de copropriétés en France avec vue portfolio consolidée. Couvre administration, comptabilité (décret 2005, plan comptable copro, 5 annexes), assemblées générales (convocation, PV, notification), appels de fonds, travaux, fournisseurs, recouvrement d'impayés et transition de syndic. Maîtrise les majorités…
template-instantiation
Creates .NET projects from templates with validated parameters, smart defaults, Central Package Management adaptation, and latest NuGet version resolution. USE FOR: creating new dotnet projects, scaffolding solutions with multiple projects, installing or uninstalling template packages, creating projects that respect…
note-improvement
Capture an out-of-scope improvement opportunity so it doesn't get lost. Use when the user asks to "note improvement", "save improvement", "track this for later", "remember this improvement", "note this idea", "log improvement", "backlog this", or "park this idea". Also invoke proactively when noticing something…
turborepo-monorepo
Provides comprehensive Turborepo monorepo management guidance for TypeScript/JavaScript projects. Use when creating Turborepo workspaces, configuring turbo.json tasks, setting up Next.js/NestJS apps, managing test pipelines (Vitest/Jest), configuring CI/CD, implementing remote caching, or optimizing build performance…
handover-admin
Generate comprehensive admin documentation for AEM Edge Delivery Services project handover. Use when handing over admin responsibilities, onboarding a new site administrator, or documenting admin procedures — e.g., "admin guide", "admin documentation", "admin handover".
Product Strategy
A comprehensive skill for product strategy — covering frameworks, opportunity sizing, prioritization, roadmap building, OKRs, and stakeholder management. From early-stage discovery to mature product org execution.