compute-normalization

compute-normalization is a skill for Claude Code, Codex from yogsoth-ai/de-anthropocentric-research-engine. It costs 14 tokens per session (418 once invoked), scanned A, original, Apache-2.0.

A method for comparing technical approaches while accounting for the computing resources they require, such as processor work, GPU time, model size, or cost.

In plain words
What is it for?
Use it to find efficient methods, identify Pareto-optimal choices, rank performance per resource, and compare options across budget levels.
Why use it?
It prevents a method from looking best only because its resource demands are ignored.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it to find efficient methods, identify Pareto-optimal choices, rank performance per resource, and compare options across budget levels.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yogsoth-ai/de-anthropocentric-research-engine/compute-normalization
Install

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.

Any agent
npx skills add yogsoth-ai/de-anthropocentric-research-engine --skill compute-normalization
Clone the repo
git clone --depth 1 https://github.com/yogsoth-ai/de-anthropocentric-research-engine

Made for: Claude Code, Codex.

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 compute-normalization

README.md
[![agentmods](https://agentmods.dev/badge/skills/yogsoth-ai/de-anthropocentric-research-engine/compute-normalization/github.svg)](https://agentmods.dev/skills/yogsoth-ai/de-anthropocentric-research-engine/compute-normalization)
Your own site
<a href="https://agentmods.dev/skills/yogsoth-ai/de-anthropocentric-research-engine/compute-normalization"><img src="https://agentmods.dev/badge/skills/yogsoth-ai/de-anthropocentric-research-engine/compute-normalization/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 compute-normalization

Your own site · 80×15
<a href="https://agentmods.dev/skills/yogsoth-ai/de-anthropocentric-research-engine/compute-normalization"><img src="https://agentmods.dev/badge/skills/yogsoth-ai/de-anthropocentric-research-engine/compute-normalization.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 418 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00014 $0.00418
Opus 5 $0.00007 $0.00209
Sonnet 5 $0.00003 $0.00084
Haiku 4.5 $0.00001 $0.00042

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

Security

Grade A, and why

compute-normalization 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 6d 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.

skills/compute-normalization/SKILL.md · 59 lines

What it actually says

Compute Normalization

Purpose

Analyze the performance-compute tradeoff across methods. Identify Pareto-optimal methods (best performance for a given compute budget), compute-normalized rankings, and efficiency frontiers. Essential for practical method selection under resource constraints.

Input Schema

Field Type Description
method_scores object[] Array of {method, dataset, metric, score}
compute_costs object[] Array of {method, flops, gpu_hours, params, training_cost_usd}

Output Schema

{
  "pareto_frontier": [
    {
      "method": "string",
      "score": 0.0,
      "compute_metric": "string",
      "compute_value": 0.0,
      "is_pareto_optimal": true
    }
  ],
  "efficiency_rankings": [
    {
      "method": "string",
      "score_per_flop": 0.0,
      "score_per_gpu_hour": 0.0,
      "score_per_param": 0.0
    }
  ],
  "compute_normalized_scores": [
    {
      "method": "string",
      "raw_score": 0.0,
      "normalized_score": 0.0,
      "normalization_method": "string"
    }
  ],
  "practical_recommendations": {
    "budget_low": {"method": "string", "score": 0.0, "cost": "string"},
    "budget_medium": {"method": "string", "score": 0.0, "cost": "string"},
    "budget_high": {"method": "string", "score": 0.0, "cost": "string"}
  }
}
Files

What ships with it

1 file 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.

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. 6d ago First seen · 59 lines · 14 tokens per session scan A 9005caba36e4

Subscribe to this mod's changes

compute-normalization is a skill published in the GitHub repository yogsoth-ai/de-anthropocentric-research-engine (449 stars, last pushed today), licensed Apache-2.0. It adds 14 tokens to every session and 418 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

bulk-rnaseq

End-to-end bulk RNA-seq orchestrator — takes raw FASTQ reads through QC and trimming (FastQC, fastp/Trim Galore), alignment and quantification (STAR, Salmon, featureCounts), assembles a gene-level counts matrix, then hands off to differential expression (pydeseq2), pathway/GSEA enrichment (pathway-enrichment), and…

K-Dense-AI/scientific-agent-skills · 218 tokens

esm

Use when working directly with the esm Python SDK, ESM3 or ESMC model IDs, Forge/Biohub inference clients, or ESMFold2 folding workflows.

K-Dense-AI/scientific-agent-skills · 39 tokens

genomic-intelligence

Predict regulatory features, gene structure, and expression directly from DNA sequence using Genomic Intelligence's hosted transformer DNA language models — no local GPU or model weights. Six tasks over a REST API and a hosted MCP server (keyless public demo): promoter regions, splice donor/acceptor sites, enhancer…

K-Dense-AI/scientific-agent-skills · 150 tokens

glycoengineering

Analyze and engineer protein glycosylation. Scan sequences for N-glycosylation sequons (N-X-S/T), predict O-glycosylation hotspots, and access curated glycoengineering tools (NetOGlyc, GlycoShield, GlycoWorkbench). For glycoprotein engineering, therapeutic antibody optimization, and vaccine design.

K-Dense-AI/scientific-agent-skills · 75 tokens

pysam

Python/HTSlib workflows for genomic files. Use when reading, querying, filtering, or writing SAM/BAM/CRAM, VCF/BCF, FASTA/FASTQ, or tabix data with pysam, including pileup, coverage, indexing, and CRAM references.

K-Dense-AI/scientific-agent-skills · 64 tokens

vaex

Use this skill for processing and analyzing large tabular datasets (billions of rows) that exceed available RAM. Vaex excels at out-of-core DataFrame operations, lazy evaluation, fast aggregations, efficient visualization of big data, and machine learning on large datasets. Apply when users need to work with large…

K-Dense-AI/scientific-agent-skills · 100 tokens