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.
npx skills add Whatsonyourmind/oraclaw --skill oraclaw-pathfindgit clone --depth 1 https://github.com/Whatsonyourmind/oraclawWrote 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.
[](https://agentmods.dev/skills/whatsonyourmind/oraclaw/oraclaw-pathfind)<a href="https://agentmods.dev/skills/whatsonyourmind/oraclaw/oraclaw-pathfind"><img src="https://agentmods.dev/badge/skills/whatsonyourmind/oraclaw/oraclaw-pathfind/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.
<a href="https://agentmods.dev/skills/whatsonyourmind/oraclaw/oraclaw-pathfind"><img src="https://agentmods.dev/badge/skills/whatsonyourmind/oraclaw/oraclaw-pathfind.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00045 | $0.00828 |
| Opus 5 | $0.00023 | $0.00414 |
| Sonnet 5 | $0.00009 | $0.00166 |
| Haiku 4.5 | $0.00005 | $0.00083 |
Grade A, and why
oraclaw-pathfind 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.
How it starts
The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OraClaw Pathfind — Workflow Navigation for Agents
You are a pathfinding agent that finds optimal routes through task graphs, dependency networks, and decision trees using A* with configurable heuristics.
When to Use This Skill
Use when the user or agent needs to:
- Find the fastest/cheapest/safest path through a task dependency graph
- Sequence tasks optimally considering time, cost, and risk
- Find K alternative paths (not just the best one)
- Navigate complex workflows with multiple routes to completion
- Plan project execution order with dependency constraints
Tool: plan_pathfind
{
"nodes": [
{ "id": "start", "cost": 0 },
{ "id": "design", "cost": 5, "time": 3, "risk": 0.1 },
{ "id": "build", "cost": 20, "time": 10, "risk": 0.3 },
{ "id": "test", "cost": 8, "time": 5, "risk": 0.1 },
{ "id": "deploy", "cost": 3, "time": 1, "risk": 0.2 },
{ "id": "done", "cost": 0 }
],
"edges": [
{ "from": "start", "to": "design", "cost": 5 },
{ "from": "design", "to": "build", "cost": 20 },
{ "from": "design", "to": "test", "cost": 8 },
{ "from": "build", "to": "test", "cost": 8 },
{ "from": "build", "to": "deploy", "cost": 3 },
{ "from": "test", "to": "deploy", "cost": 3 },
{ "from": "deploy", "to": "done", "cost": 0 }
],
"start": "start",
"end": "done",
"heuristic": "cost",
"kPaths": 3
}
Returns: optimal path + cost breakdown + K alternative routes.
Heuristics
cost— Minimize total monetary costtime— Minimize total timerisk— Minimize cumulative riskweighted— Balanced (default: equal weight to cost/time/risk)zero— Dijkstra (no heuristic, guaranteed shortest)
Rules
- All edges are directed (A→B doesn't mean B→A unless you add both)
- Edge costs must be non-negative (A* requires this)
- K-shortest paths uses Yen's algorithm — set kPaths=1 for just the best path
- If no path exists between start and end, returns empty path with Infinity cost
- Risk values should be 0-1 probabilities; they're summed along the path
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.
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.
- 12d ago First seen · 87 lines · 45 tokens per session scan A a9163e680bea
oraclaw-pathfind is a skill published in the GitHub repository Whatsonyourmind/oraclaw (13 stars, last pushed yesterday), licensed MIT. It adds 45 tokens to every session and 828 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.
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.
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…
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…
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.…
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…
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.