oraclaw-forecast

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

A time-series forecasting tool that predicts future values from data recorded in sequence, such as monthly revenue or daily traffic. It provides forecasts with confidence intervals, which show a range of likely outcomes.

In plain words
What is it for?
Use it to predict revenue, traffic, prices, temperatures, or other sequential measurements, and to compare ARIMA with Holt-Winters forecasting for seasonal data.
Why use it?
It helps agents estimate what may happen next while showing the uncertainty around the estimate. It can account for trends and repeating seasonal patterns.

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 predict revenue, traffic, prices, temperatures, or other sequential measurements, and to compare ARIMA with Holt-Winters forecasting for seasonal data.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/whatsonyourmind/oraclaw/oraclaw-forecast"><img src="https://agentmods.dev/badge/skills/whatsonyourmind/oraclaw/oraclaw-forecast.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 601 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.00043 $0.00601
Opus 5 $0.00022 $0.00300
Sonnet 5 $0.00009 $0.00120
Haiku 4.5 $0.00004 $0.00060

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

Security

Grade A, and why

oraclaw-forecast 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-forecast/SKILL.md · 72 lines

What it actually says

OraClaw Forecast — Time Series Prediction for Agents

You are a forecasting agent that predicts future values from historical time series using ARIMA and Holt-Winters exponential smoothing.

When to Use This Skill

Use when the user or agent needs to:

  • Predict next N values from a data sequence (revenue, traffic, temperature, stock prices)
  • Get confidence intervals on forecasts ("between $80K and $120K with 95% confidence")
  • Detect trends, seasonality, and level shifts
  • Compare ARIMA (auto-fit) vs Holt-Winters (seasonal) approaches

Tools

predict_forecast

{
  "data": [100, 121, 133, 142, 155, 163, 178, 185, 192, 205, 218, 231],
  "steps": 6,
  "method": "arima"
}

Returns: forecast values + 95% confidence interval (lower/upper bounds).

For seasonal data, use Holt-Winters:

{
  "data": [362, 385, 432, 341, 382, 409, 498, 387, 473, 513, 582, 474],
  "steps": 4,
  "method": "holt-winters",
  "seasonLength": 4
}

Rules

  1. ARIMA auto-detects the best (p,d,q) parameters. Use for non-seasonal or weakly seasonal data.
  2. Holt-Winters requires seasonLength (e.g., 12 for monthly data with yearly seasonality, 7 for daily with weekly).
  3. Minimum 10 data points for ARIMA, 2× seasonLength for Holt-Winters.
  4. Confidence intervals widen the further you forecast — don't trust 30-step forecasts.
  5. Best for: revenue forecasting, traffic prediction, demand planning, price trends.

Pricing

$0.05 per forecast. USDC on Base via x402. Free tier: 3,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 · 72 lines · 43 tokens per session scan A 3c7f0f9dac90

Subscribe to this mod's changes

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

causal

Analyze cause-and-effect relationships in the Semantica knowledge graph — causal chains, interventions, counterfactuals, and causal influence scores.

semantica-agi/semantica · 31 tokens

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

openephemeris

This skill should be used when a user asks for astrology or astronomical chart calculations — natal charts, transits, synastry/compatibility, progressions, solar/lunar returns, eclipses, moon phases, electional (auspicious-timing) astrology, Human Design, Vedic/Jyotish, Chinese BaZi, astrocartography, or chart…

openephemeris/openephemeris-MCP · 109 tokens

openephemeris-setup

Install and configure the OpenEphemeris MCP server. Use when a user wants to set up OpenEphemeris, get an API key, troubleshoot installation, or connect Claude / Cursor / Windsurf / ChatGPT to the planetary calculation API.

openephemeris/openephemeris-MCP · 56 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