oraclaw-evolve

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

A genetic-algorithm optimizer for problems with several competing goals. Genetic algorithms search through many possible solutions by repeatedly selecting and varying candidates.

In plain words
What is it for?
Use it to optimize portfolio weights, pricing, marketing mixes, machine-learning settings, or other problems with multiple objectives.
Why use it?
It can search nonlinear, discontinuous, or combinatorial problems where a simple linear solver does not fit, while showing trade-offs between objectives.

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 optimize portfolio weights, pricing, marketing mixes, machine-learning settings, or other problems with multiple objectives.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/whatsonyourmind/oraclaw/oraclaw-evolve
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-evolve
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-evolve

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/whatsonyourmind/oraclaw/oraclaw-evolve"><img src="https://agentmods.dev/badge/skills/whatsonyourmind/oraclaw/oraclaw-evolve.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 635 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.00049 $0.00635
Opus 5 $0.00024 $0.00318
Sonnet 5 $0.00010 $0.00127
Haiku 4.5 $0.00005 $0.00064

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

Security

Grade A, and why

oraclaw-evolve 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-evolve/SKILL.md · 76 lines

What it actually says

OraClaw Evolve — Genetic Algorithm Optimization for Agents

You are an evolutionary optimization agent that finds optimal solutions to complex multi-objective problems using Genetic Algorithms.

When to Use This Skill

Use when the user or agent needs to:

  • Optimize portfolio weights across risk/return/liquidity tradeoffs
  • Find the best marketing mix across multiple KPIs simultaneously
  • Tune hyperparameters for ML models
  • Solve any optimization with multiple competing objectives
  • Handle nonlinear, discontinuous, or combinatorial search spaces

Why Evolve vs. Solver?

  • oraclaw-solver handles linear/integer programs (LP/MIP) — fast, exact, but only for linear objectives
  • oraclaw-evolve handles nonlinear, multi-objective problems — slower, approximate, but can solve anything

Tool: optimize_evolve

{
  "populationSize": 50,
  "maxGenerations": 100,
  "geneLength": 4,
  "bounds": [
    { "min": 0, "max": 1 },
    { "min": 0, "max": 1 },
    { "min": 0, "max": 1 },
    { "min": 0, "max": 1 }
  ],
  "selectionMethod": "tournament",
  "crossoverMethod": "uniform",
  "mutationRate": 0.02,
  "numObjectives": 2
}

Returns: best chromosome, Pareto frontier (non-dominated solutions), convergence generation, execution time.

Rules

  1. Use numObjectives: 2+ for Pareto frontier (tradeoff curves between competing goals)
  2. Tournament selection is best for most problems. Rank-based for wildly varying fitness values.
  3. Uniform crossover explores more broadly. Single-point is more conservative.
  4. Set mutationRate: 0.01-0.05. Adaptive mutation adjusts automatically.
  5. More generations = better solutions but longer compute. Start with 50, increase if needed.

Pricing

$0.15 per optimization (≤100 generations), $0.50 per optimization (≤1,000 generations). USDC on Base via x402.

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 · 76 lines · 49 tokens per session scan A 377babe06fa5

Subscribe to this mod's changes

oraclaw-evolve is a skill published in the GitHub repository Whatsonyourmind/oraclaw (13 stars, last pushed today), licensed MIT. It adds 49 tokens to every session and 635 once invoked, about $0.0002 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

visualize

Visualize the Semantica knowledge graph — topology, centrality, communities, paths, embeddings, decision insights, and temporal evolution. Uses GraphAnalyzer, CentralityCalculator, CommunityDetector, PathFinder, and ContextGraph analytics. Sub-commands: topology, centrality, community, path, decision-graph, insights…

semantica-agi/semantica · 0 tokens

embed

Generate, inspect, and use node/text embeddings in Semantica — compute Node2Vec embeddings, find similar nodes, score link predictions, batch similarity, and pairwise similarity. Uses NodeEmbedder, SimilarityCalculator, LinkPredictor, and AgentContext. Sub-commands: compute, similar, similarity, predict-link…

semantica-agi/semantica · 0 tokens

reason

Run reasoning over the Semantica knowledge graph — deductive logic, abductive hypothesis generation, Datalog programs, SPARQL queries, Rete network evaluation. Uses DeductiveReasoner, AbductiveReasoner, DatalogReasoner, SPARQLReasoner, ReteEngine. Sub-commands: deductive, abductive, datalog, sparql, rete, prove…

semantica-agi/semantica · 0 tokens

validate

Validate Semantica pipelines, extraction quality, graph schemas, and ontology consistency. Returns structured error/warning checklists. Uses PipelineValidator, PipelineBuilder.validatepipeline(), GraphValidator, and OntologyValidator. Sub-commands: pipeline, step, dependencies, extraction, graph, ontology, performance.

semantica-agi/semantica · 0 tokens

temporal

Temporal graph operations on Semantica — scoped queries at a point in time, graph snapshots, node change timelines, temporal causal analysis, and graph state reconstruction. Uses AgentContext.findprecedents(asof=), ContextGraph.stateat(), CausalChainAnalyzer.traceattime(), and TemporalQueryRewriter. Sub-commands…

semantica-agi/semantica · 0 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