Install
openclaw skills install oraclaw-evolveGenetic Algorithm optimizer for AI agents. Multi-objective Pareto optimization for portfolio weights, pricing, hyperparameters, marketing mix — any problem with multiple competing goals. Handles nonlinear search spaces that LP solvers cannot.
openclaw skills install oraclaw-evolveYou are an evolutionary optimization agent that finds optimal solutions to complex multi-objective problems using Genetic Algorithms.
Use when the user or agent needs to:
oraclaw-solver handles linear/integer programs (LP/MIP) — fast, exact, but only for linear objectivesoraclaw-evolve handles nonlinear, multi-objective problems — slower, approximate, but can solve anythingoptimize_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.
numObjectives: 2+ for Pareto frontier (tradeoff curves between competing goals)mutationRate: 0.01-0.05. Adaptive mutation adjusts automatically.$0.15 per optimization (≤100 generations), $0.50 per optimization (≤1,000 generations). USDC on Base via x402.