oraclaw-cmaes

oraclaw-cmaes is a skill for Claude Code, Codex from Whatsonyourmind/oraclaw. It costs 50 tokens per session (632 once invoked), scanned A, original, MIT.

A method for finding the best settings for continuous numeric parameters when you can measure how good each attempt is but cannot calculate a direct improvement path. CMA-ES searches through possible combinations of values.

In plain words
What is it for?
Use it to tune machine-learning settings, calibrate model parameters against observed data, and optimize numeric allocations or pricing choices.
Why use it?
It reduces the manual trial and error needed to tune settings when the system being tested is a black box. It is intended for continuous problems such as adjusting rates, weights, or allocations.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: positional $N argument; built for openclaw.

Good fit Use it to tune machine-learning settings, calibrate model parameters against observed data, and optimize numeric allocations or pricing choices.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/whatsonyourmind/oraclaw/oraclaw-cmaes
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 Whatsonyourmind/oraclaw --skill oraclaw-cmaes
Clone the repo
git clone --depth 1 https://github.com/Whatsonyourmind/oraclaw

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 oraclaw-cmaes

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/whatsonyourmind/oraclaw/oraclaw-cmaes"><img src="https://agentmods.dev/badge/skills/whatsonyourmind/oraclaw/oraclaw-cmaes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 632 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.00050 $0.00632
Opus 5 $0.00025 $0.00316
Sonnet 5 $0.00010 $0.00126
Haiku 4.5 $0.00005 $0.00063

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

Security

Grade A, and why

oraclaw-cmaes 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.

mission-control/packages/clawhub-skills/oraclaw-cmaes/SKILL.md · 69 lines

What it actually says

OraClaw CMA-ES — SOTA Continuous Optimizer for Agents

You are an optimization agent that uses CMA-ES (Covariance Matrix Adaptation Evolution Strategy) — the gold standard for derivative-free continuous optimization. Used by Google for hyperparameter tuning.

When to Use This Skill

Use when the user or agent needs to:

  • Optimize continuous parameters (learning rates, weights, thresholds)
  • Tune hyperparameters for ML models
  • Calibrate model parameters to match observed data
  • Find optimal continuous allocations (portfolio weights, pricing)
  • Any black-box optimization where you can evaluate f(x) but don't have gradients

Why CMA-ES vs. Genetic Algorithm?

  • CMA-ES: 10-100x more sample-efficient on smooth continuous problems. Learns the correlation structure of the search space. SOTA for continuous optimization.
  • GA (oraclaw-evolve): Better for discrete/combinatorial problems, multi-objective Pareto frontiers.
  • Use CMA-ES for continuous. Use GA for discrete.

Tool: optimize_cmaes

{
  "dimension": 3,
  "initialMean": [0.5, 0.5, 0.5],
  "initialSigma": 0.3,
  "maxIterations": 200,
  "objectiveWeights": [2.0, 1.5, 1.0]
}

Returns: bestSolution, bestFitness, iterations, evaluations, converged, executionTimeMs.

Rules

  1. dimension = number of continuous parameters to optimize
  2. initialMean = starting point (center of search). If unknown, use 0.5 for normalized params.
  3. initialSigma = initial step size (0.1-0.5 typical). Too small = slow convergence, too large = unstable.
  4. CMA-ES MINIMIZES the objective. To maximize, negate the weights.
  5. Converges in O(dimension^2) iterations typically. Dimension 10 needs ~100-300 iterations.

Pricing

$0.10 per optimization. USDC on Base via x402. Free tier: 1,000 calls/month.

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. 12d ago First seen · 69 lines · 50 tokens per session scan A 17bb550b69c3

Subscribe to this mod's changes

oraclaw-cmaes is a skill published in the GitHub repository Whatsonyourmind/oraclaw (13 stars, last pushed yesterday), licensed MIT. It adds 50 tokens to every session and 632 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-30.

Related

Other skills, from other repositories

computer-vision-pipeline

Build production computer vision pipelines for object detection, tracking, and video analysis. Handles drone footage, wildlife monitoring, and real-time detection. Supports YOLO, Detectron2, TensorFlow, PyTorch. Use for archaeological surveys, conservation, security. Activate on "object detection", "video analysis"…

curiositech/windags-skills · 92 tokens

arboreto

Infer gene regulatory networks (GRNs) from gene expression data using scalable algorithms (GRNBoost2, GENIE3). Use when analyzing transcriptomics data (bulk RNA-seq, single-cell RNA-seq) to identify transcription factor-target gene relationships and regulatory interactions. Supports distributed computation for…

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

pyhealth

Build clinical/healthcare deep-learning pipelines with PyHealth — loading EHR/signal/imaging datasets (MIMIC-III/IV, eICU, OMOP, SleepEDF, ChestXray14, EHRShot), defining tasks (mortality, readmission, length-of-stay, drug recommendation, sleep staging, ICD coding, EEG events), instantiating models (Transformer…

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

torchdrug

Build and troubleshoot TorchDrug 0.2.1 workflows for molecular graphs, property prediction, self-supervised pretraining, molecule generation, retrosynthesis, protein representation learning, and knowledge graph reasoning. Use when code imports torchdrug or needs its datasets, models, tasks, or Engine.

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

deepspot-m

Generate transcriptome-wide virtual spatial transcriptomics from H&E histology with DeepSpot-M. Use when you need spatial gene expression in log1p-CPM for 224x224 tiles at about 20x, want to query protein-coding genes by symbol instead of a fixed panel, or want to run prediction across a whole slide after tiling with…

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

extract

Run the full Semantica semantic extraction pipeline on a file or selected text — NER, relations, events, coreference resolution, triplets, and validation. Clears result cache before each run. Returns Markdown tables with entity/relation/event/triplet results and inline validator warnings.

semantica-agi/semantica · 59 tokens