oraclaw-solver

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

A scheduling and resource-allocation skill that uses mathematical optimization to assign tasks to available time, energy, budgets, staff, routes, or other limited resources.

In plain words
What is it for?
Use it to plan work around time and energy, distribute budgets, assign staff, optimize routes, or solve other constraint-based planning problems.
Why use it?
It helps find schedules or allocations that satisfy required limits and priorities instead of arranging them manually.

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 plan work around time and energy, distribute budgets, assign staff, optimize routes, or solve other constraint-based planning problems.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/whatsonyourmind/oraclaw/oraclaw-solver"><img src="https://agentmods.dev/badge/skills/whatsonyourmind/oraclaw/oraclaw-solver.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 853 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.00036 $0.00853
Opus 5 $0.00018 $0.00426
Sonnet 5 $0.00007 $0.00171
Haiku 4.5 $0.00004 $0.00085

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

Security

Grade A, and why

oraclaw-solver 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-solver/SKILL.md · 90 lines

How it starts

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

OraClaw Solver — AI Scheduling & Optimization

You are a planning agent that uses industrial-grade optimization (LP/MIP solver) to find optimal schedules and resource allocations.

When to Use This Skill

Use this when the user or another agent needs to:

  • Plan a daily/weekly schedule matching tasks to energy levels
  • Allocate budget across competing priorities with constraints
  • Solve any resource allocation problem with hard limits
  • Optimize staffing, routing, or capacity planning

How to Use

Smart Scheduling

Call solve_schedule with tasks and available time slots:

{
  "tasks": [
    { "id": "report", "name": "Quarterly Report", "durationMinutes": 120, "priority": 9, "energyRequired": "high" },
    { "id": "emails", "name": "Clear Inbox", "durationMinutes": 30, "priority": 3, "energyRequired": "low" },
    { "id": "code-review", "name": "Review PRs", "durationMinutes": 60, "priority": 7, "energyRequired": "medium" }
  ],
  "slots": [
    { "id": "morning", "startTime": 1711350000, "durationMinutes": 120, "energyLevel": "high" },
    { "id": "after-lunch", "startTime": 1711360800, "durationMinutes": 60, "energyLevel": "medium" },
    { "id": "late-pm", "startTime": 1711369800, "durationMinutes": 30, "energyLevel": "low" }
  ]
}

The solver matches high-priority tasks to high-energy slots automatically.

Custom Constraint Optimization

Call solve_constraints for any optimization with constraints:

{
  "direction": "maximize",
  "objective": { "ads": 2.5, "content": 1.8, "events": 3.2 },
  "variables": [
    { "name": "ads", "lower": 0, "upper": 50000 },
    { "name": "content", "lower": 0, "upper": 30000 },
    { "name": "events", "lower": 0, "upper": 20000, "type": "integer" }
  ],
  "constraints": [
    { "name": "total_budget", "coefficients": { "ads": 1, "content": 1, "events": 1 }, "upper": 80000 },
    { "name": "min_content", "coefficients": { "content": 1 }, "lower": 10000 }
  ]
}

Rules

  1. Tasks can only be assigned to slots with sufficient duration
  2. The solver is deterministic — same input always produces same output
  3. For scheduling: energy matching is automatic (high task → high slot scores best)
  4. For constraints: use "type": "integer" for whole-number quantities, "binary" for yes/no decisions
  5. Infeasible problems return "status": "infeasible" — relax constraints and retry

Read the full file on GitHub · 90 lines

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 · 90 lines · 36 tokens per session scan A 9b14078cf14a

Subscribe to this mod's changes

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

fastify

Production Fastify (TypeScript) patterns: schema validation, plugins, typed routes, error handling, security hardening, logging, testing with inject, and graceful shutdown.

bobmatnyc/claude-mpm-skills · 36 tokens

darto-write-middleware

Write and register middleware in a Darto (Dart) app — the Middleware factory pattern, global/path-scoped/route-level registration, short-circuiting, per-request state, and global error/404 handlers. Use when adding cross-cutting behavior (auth, logging, CORS, timing) or configuring app.onError / app.notFound in a…

evandersondev/darto · 86 tokens

darto-add-route

Add or modify HTTP endpoints in a Darto (Dart) web app — verbs, path/query params, request-body reading, route groups, and Context response helpers. Use when building or changing API routes in a project that depends on the darto package (import 'package:darto/darto.dart'). Not for Express/Node — Darto handlers take a…

evandersondev/darto · 90 tokens

darto-validate-request

Validate the body, query, params, or headers of a Darto (Dart) request using the zValidator middleware and zard (Zod-style) schemas. Use when adding input validation to a Darto endpoint, defining a z.map/z.string/z.int schema, reading validated data with c.req.valid, or customizing the validation error response.…

evandersondev/darto · 83 tokens

darto-scaffold-project

Scaffold, run, and build a Darto (Dart) web project using the dartocli — create a new project with a NestJS-style module structure, run a hot-reload dev server, compile a production binary, and generate a typed API client. Use when starting a new Darto app, setting up the project layout, or configuring dev/build…

evandersondev/darto · 81 tokens

Express/Fastify Backend Patterns

Use this skill when building Node.js HTTP APIs with Express or Fastify and you want safe request validation, predictable error handling, and maintainable routing/service layering.

AmariahAK/atlarix-skills · 6 tokens