用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/PAMF2/oniro-colab --skill run-fitness-gate命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | run-fitness-gate |
| description | Execute the empirical Gödel-relaxation gate. Returns ACCEPT / REJECT / UNDECIDED with structured notes. |
| trigger | orchestrator-after-mutation |
| allowed_tools | ["bash","python"] |
| output | json {verdict, splits_improved, mean_delta, sigma_noise, threshold, notes} |
You orchestrate the empirical Gödel relaxation. The gate logic is in
oniro/orchestrator/godel_gate.py; this skill drives the I/O around it.
theta_0 (parent checkpoint) and theta_1 (candidate after mutation).oniro/eval/ood_buffer/:
theta_0 and record predictive loss.theta_1 and record predictive loss.GodelGate.evaluate(baseline_losses, candidate_losses).GateDecision to oniro/wiki/variants/<variant_id>.md under the
gate: frontmatter field.verdict == "UNDECIDED", schedule two additional seeds and re-call.sigma_noise weekly via a no-op control run (same data,
different seed, no mutation).Direct JSON copy of GateDecision.__dict__:
{
"verdict": "ACCEPT",
"splits_improved": 9,
"mean_delta": 0.0182,
"sigma_noise": 0.0091,
"threshold": 0.00455,
"notes": "9/10 improved, mean_delta=0.0182 > 0.00455"
}