chimeralang-mcp: Skill for Claude Code

.claude/skills/chimera/SKILL.md

chimera is a skill for Claude Code from fernandogarzaaa/chimeralang-mcp. It costs 62 tokens per session (4,340 once invoked), scanned A, original, MIT.

A routing layer for the Chimera language tools, which process prompts and documents for tasks such as claim checking, hallucination detection, and reasoning. It chooses a smaller set of tools based on the request and its size.

In plain words
What is it for?
Use it with long documents, build or test logs, large conversation histories, multiple documents, verification requests, or tasks that need several Chimera tools.
Why use it?
It avoids sending every request through every available tool, which can reduce unnecessary processing for simple prompts.

Skill for Claude Code

Written for Claude Code: PostToolUse hook event. Also seen: reads .claude/ paths; mentions CLAUDE.md; positional $N argument.

This is fernandogarzaaa/chimeralang-mcp's own configuration. It tells Claude Code how to work on chimeralang-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything chimeralang-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to fernandogarzaaa/chimeralang-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/fernandogarzaaa/chimeralang-mcp/main/.claude/skills/chimera/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/fernandogarzaaa/chimeralang-mcp

Made for: Claude Code.

Wrote 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.

agentmods badge for chimera

README.md
[![agentmods](https://agentmods.dev/badge/skills/fernandogarzaaa/chimeralang-mcp/chimera/github.svg)](https://agentmods.dev/skills/fernandogarzaaa/chimeralang-mcp/chimera)
Your own site
<a href="https://agentmods.dev/skills/fernandogarzaaa/chimeralang-mcp/chimera"><img src="https://agentmods.dev/badge/skills/fernandogarzaaa/chimeralang-mcp/chimera/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.

agentmods 80×15 button for chimera

Your own site · 80×15
<a href="https://agentmods.dev/skills/fernandogarzaaa/chimeralang-mcp/chimera"><img src="https://agentmods.dev/badge/skills/fernandogarzaaa/chimeralang-mcp/chimera.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,340 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00062 $0.04340
Opus 5 $0.00031 $0.02170
Sonnet 5 $0.00012 $0.00868
Haiku 4.5 $0.00006 $0.00434

Measured 10d ago against content hash 8ec07c6093b8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

chimera 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 10d 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.

.claude/skills/chimera/SKILL.md · 269 lines

How it starts

The opening of the file, as written. The whole thing — 269 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Chimera skill — smart routing into chimeralang-mcp

Works for both Claude Code (via this SKILL.md) and Codex (via the sibling AGENTS.md adapter at repo root). Both agents end up running the same routing rules.

The chimeralang-mcp server (currently 0.8.1) exposes 51 tools. Routing all of them through every prompt is wasteful. The goal of this skill is: pick the smallest correct tool subset for the user's actual intent and execute the work through it.


Decision tree (run in order)

  1. Trivial input? If the prompt is < 200 chars and there are no documents/logs/messages attached, skip every chimera tool and answer directly. The token-saving hooks in .claude/settings.json already handle short prompts.
  2. Has structured payload? If the prompt or attached artifact is a document (> 500 chars), a build/test log, a long message history, or a corpus of multiple docs — go to the Routing matrix below.
  3. Reasoning / verification request? If the user is asking for analysis, claim checking, multi-perspective deliberation, or hallucination detection — go to the Reasoning lane.
  4. AI-to-AI reasoning? If the user wants the agent to reason internally (without producing prose for them yet), or wants to compress a system prompt for another LLM — use the Glyph lane.
  5. End-of-task? Always finish with chimera_session_report so totals are surfaced. The Stop hook does this automatically — only call manually if you want telemetry mid-session.

Routing matrix — prompt pattern → chimera tool

Trigger First-choice tool Notes
Single doc/code blob > 500 chars chimera_optimize 60–75% reduction typical; preserves fenced code with preserve_code=true.
Long conversation history chimera_compress Proportional truncation to a token budget.
Both docs + history chimera_fracture Single call with quality gate; prefer this over chaining the two above.
Build / test / install / install log chimera_log_compress Errors and warnings preserved verbatim, body abridged.
Stable system block reused across SDK calls chimera_cache_mark Lossless 75–90% via Anthropic prompt cache markers.
Multiple chimera calls in one go chimera_batch Saves round-trips when the input is fan-out parallel.
Recurring per-turn cost surfacing chimera_overhead_audit Quantifies "ghost tokens" (system prompt + tool defs).
Inspect repeated tool calls chimera_dedup_lookup The PostToolUse hook populates the cache.
End-of-session totals chimera_session_report Bundles cost summary + budget + dedup. Stop hook auto-fires.
LLM-free extractive summary chimera_summarize Fast and deterministic; no Claude API call.

Read the full file on GitHub · 269 lines

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. 10d ago First seen · 269 lines · 62 tokens per session scan A 8ec07c6093b8

Subscribe to this mod's changes

chimera is a skill published in the GitHub repository fernandogarzaaa/chimeralang-mcp (1 stars, last pushed 3mo ago), licensed MIT. It adds 62 tokens to every session and 4,340 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-08-31.

Related

Other skills, from other repositories

agent-platform-rag-engine-management

Manage and query Agent Platform RAG Engine Corpora and retrieve grounded contexts using the Google GenAI SDK. Use when listing RAG corpora or files, inspecting a corpus, retrieving contexts, or generating content grounded in a RAG corpus. Do not use for standard database queries (use SQL/Spanner skills), Google…

google/skills · 85 tokens

agent-platform-model-registry

Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.

google/skills · 60 tokens

foundry-config-setup

Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.

microsoft/agent-framework · 65 tokens

google-cloud-solution-agentic-analytics-spark-knowledge-catalog

Discovers requirements and generates guidance to design and deploy a governed, secure agentic-analytics solution for data that's distributed across Google Cloud, other cloud providers, or on-premises. Data that's outside Google Cloud (such as data from Databricks, Snowflake, Salesforce, SAP, or Oracle systems) is…

google/skills · 138 tokens

training-check

Interactively monitor training metrics from the current Codex session, periodically checking WandB or fallback logs for NaN, divergence, plateaus, and broken runs.

wanshuiyin/Auto-claude-code-research-in-sleep · 35 tokens

nemo-automodel-launcher-config

Configure NeMo AutoModel job launches for interactive runs, Slurm clusters, and SkyPilot cloud execution.

NVIDIA/skills · 30 tokens