metago-frequency-adapt

metago-frequency-adapt is a skill for Claude Code, Codex from metago-ai/metagolifeform. It costs 74 tokens per session (1,471 once invoked), scanned A, original, MIT.

A rule system that changes how often an agent creates or improves capabilities based on a calculated system-completeness score. It uses dormant, standby and active states.

In plain words
What is it for?
Use it to check capability coverage, closed-loop completion, safety compliance, output completeness and memory consistency, then choose a low, high or zero creation rate.
Why use it?
It reduces unnecessary creation when the system is complete while increasing capability-building when important gaps remain.

Skill for Claude CodeCodex

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

Good fit Use it to check capability coverage, closed-loop completion, safety compliance, output completeness and memory consistency, then choose a low, high or zero creation rate.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/metago-ai/metagolifeform/metago-frequency-adapt
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 metago-ai/metagolifeform --skill metago-frequency-adapt
Clone the repo
git clone --depth 1 https://github.com/metago-ai/metagolifeform

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 metago-frequency-adapt

README.md
[![agentmods](https://agentmods.dev/badge/skills/metago-ai/metagolifeform/metago-frequency-adapt/github.svg)](https://agentmods.dev/skills/metago-ai/metagolifeform/metago-frequency-adapt)
Your own site
<a href="https://agentmods.dev/skills/metago-ai/metagolifeform/metago-frequency-adapt"><img src="https://agentmods.dev/badge/skills/metago-ai/metagolifeform/metago-frequency-adapt/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 metago-frequency-adapt

Your own site · 80×15
<a href="https://agentmods.dev/skills/metago-ai/metagolifeform/metago-frequency-adapt"><img src="https://agentmods.dev/badge/skills/metago-ai/metagolifeform/metago-frequency-adapt.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,471 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.00074 $0.01471
Opus 5 $0.00037 $0.00736
Sonnet 5 $0.00015 $0.00294
Haiku 4.5 $0.00007 $0.00147

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

Security

Grade A, and why

metago-frequency-adapt 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.

plugins/agent-plugins-1.0.0/skills/metago-frequency-adapt/SKILL.md · 182 lines

How it starts

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

创造频率自适应(Frequency Adaptation)

此技能实现"创造频率自适应"——根据系统完整性动态调节创造频率,避免过度创造浪费资源,也避免创造不足导致能力缺口。

触发条件

  • 系统完整性发生变化时触发
  • 创造回路启动时触发
  • 元进化循环到达阶段3时触发
  • 定期自检时触发(评估当前完整性)
  • 开发者手动触发

三态模型

状态1:休眠(Dormant)

触发条件:系统完整性 = 100%
创造频率:0(不创造)
行为模式:
  - 仅执行常规任务
  - 不启动创造回路
  - 监控完整性变化
转换条件:完整性下降至<98% → 转入"激活"

状态2:待机(Standby)

触发条件:系统完整性 ≥ 98% 且 < 100%
创造频率:低频(按需创造)
行为模式:
  - 执行常规任务
  - 低频深潜模式(精炼优化现有能力)
  - 偶尔触发创造(仅当遇到明确缺口)
转换条件:
  - 完整性下降至<98% → 转入"激活"
  - 完整性达到100% → 转入"休眠"

状态3:激活(Active)

触发条件:系统完整性 < 98%
创造频率:高频(积极创造)
行为模式:
  - 高频激活创造回路
  - 主动识别能力缺口
  - 积极生成新能力补全
  - 每次创造后重新评估完整性
转换条件:
  - 完整性提升至≥98% → 转入"待机"
  - 完整性达到100% → 转入"休眠"

完整性评估算法

系统完整性 = (
  能力覆盖率 × 0.30 +
  闭环完整率 × 0.25 +
  安全合规率 × 0.20 +
  输出完整率 × 0.15 +
  记忆一致率 × 0.10
)

评估维度:
1. 能力覆盖率:已激活能力 / 所需能力
2. 闭环完整率:已闭环能力 / 总能力
3. 安全合规率:合规检查通过率
4. 输出完整率:输出完整性通过率
5. 记忆一致率:记忆与实际一致性

频率调控算法(ALG_641)

def frequency_adapt(integrity_score):
    if integrity_score >= 1.0:
        state = "dormant"
        frequency = 0
    elif integrity_score >= 0.98:
        state = "standby"
        frequency = "low"  # 按需创造
    else:
        state = "active"
        frequency = "high"  # 积极创造
        # 完整性越低,频率越高
        intensity = (1 - integrity_score) / 0.02  # 0-1
    return state, frequency

状态转换图

        完整性=100%
            ↑
     ┌──────┴──────┐
     ↓             │
  休眠 ←───── 待机
     │             ↑
     │     完整性≥98%
     │             │
     ↓             │
  激活 ──────────→待机
     ↑    完整性≥98%
     │
  完整性<98%

执行流程

步骤1: 评估当前系统完整性
  → 计算五维完整性评分
  → 输出完整性分数

步骤2: 确定创造状态
  → 根据完整性分数确定三态
  → 设置创造频率

步骤3: 执行创造策略
  → 休眠:不创造
  → 待机:低频深潜,精炼优化
  → 激活:高频创造,补全缺口

步骤4: 创造后重新评估
  → 每次创造后重新计算完整性
  → 根据新完整性调整状态

输出格式

【创造频率自适应】
系统完整性评估:
  - 能力覆盖率:XX%
  - 闭环完整率:XX%
  - 安全合规率:XX%
  - 输出完整率:XX%
  - 记忆一致率:XX%
  - 综合完整性:XX%

创造状态:[休眠/待机/激活]
创造频率:[0/低频/高频]
行为策略:[策略描述]

状态转换:
  - 上一状态:[状态]
  - 当前状态:[状态]
  - 转换原因:[原因]

核心原则

  1. 创造频率自适应(D41):完整性高时深潜,低时激活
  2. 资源效率:避免过度创造浪费资源
  3. 能力补全:避免创造不足导致缺口
  4. 动态调控:根据完整性动态调整

Read the full file on GitHub · 182 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. 12d ago First seen · 182 lines · 74 tokens per session scan A a2deb77654d7

Subscribe to this mod's changes

metago-frequency-adapt is a skill published in the GitHub repository metago-ai/metagolifeform (4 stars, last pushed 11d ago), licensed MIT. It adds 74 tokens to every session and 1,471 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-08-31.