Agent skill · Data & Analytics

forecasting-reverso

Zero-shot univariate time series forecasting using the Reverso foundation model (NumPy/Numba CPU-only inference). Activate when users provide time series data and request forecasts, predictions, or extrapolations. Supports Reverso Small (550K params). Triggers on "forecast", "predict", "time series", "Reverso", or when tabular data with a temporal dimension needs future-value estimation.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill forecasting-reverso --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/ai-ml/forecasting-reverso/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Reverso Time Series Forecasting Produce zero-shot univariate time series forecasts using the Reverso foundation model family (arXiv:2602.17634), implemented in NumPy/Numba for CPU-only container execution. ## Setup (run once per conversation) ```bash uv pip install numba --system --break-system-packages cp /mnt/skills/user/forecasting-reverso/scripts/reverso.py /home/claude/reverso.py cp /mnt/skills/user/forecasting-reverso/scripts/load_checkpoint.py /home/claude/load_checkpoint.py ``` ## Obtaining Weights Two paths depending on network access: ### Path A: Direct download (HuggingFace allow-listed) ```python import urllib.request, os os.makedirs("/tmp/reverso", exist_ok=True) url = "https://huggingface.co/shinfxh/reverso/resolve/main/checkpoints/reverso_small/checkpoint.pth" urllib.request.urlretrieve(url, "/tmp/reverso/checkpoint.pth") ``` ### Path B: User upload (HuggingFace not accessible) If the download fails with a network error, tell the user: > I can't reach HuggingFace from this environment. Please download the checkpoint from > https://huggingface.co/shinfxh/reverso/blob/main/checkpoints/reverso_small/checkpoint.pth > and upload it here. Then load from `/mnt/user-data/u

What's inside
Steps it walks through
  1. Setup (run once per conversation)
  2. Obtaining Weights
  3. Path A: Direct download (HuggingFace allow-listed)
  4. Path B: User upload (HuggingFace not accessible)
  5. Loading weights
  6. Model Configuration
  7. Forecasting
  8. Key parameters
  9. Input Handling
  10. Visualization
  11. Performance
  12. Container Environment Limits
  13. Limitations
Ships with 1 file
  • metadata.json
Commands it runs
uv pip install numba --system --break-system-packages
cp /mnt/skills/user/forecasting-reverso/scripts/reverso.py /home/claude/reverso.py
cp /mnt/skills/user/forecasting-reverso/scripts/load_checkpoint.py /home/claude/load_checkpoint.py
More from claude-skill-registry
All skills →
About this skill
What does the forecasting-reverso skill do?

Zero-shot univariate time series forecasting using the Reverso foundation model (NumPy/Numba CPU-only inference). Activate when users provide time series data and request forecasts, predictions, or extrapolations. Supports Reverso Small (550K params). Triggers on "forecast", "predict", "time series", "Reverso", or when tabular data with a temporal dimension needs future-value estimation.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill forecasting-reverso --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going