forecasting Skill
How to produce a demand forecast for a SKU, and when to delegate that to a subagent vs. compute it yourself. Load this for any task involving "forecast", "how much will we sell", "next month", promos, or seasonal SKUs. Published by anthropics in cwc-workshops.
What is forecasting Skill?
How to produce a demand forecast for a SKU, and when to delegate that to a subagent vs. compute it yourself. Load this for any task involving "forecast", "how much will we sell", "next month", promos, or seasonal SKUs. Published by anthropics in cwc-workshops. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Developers using cwc-workshops
Technical details
- Install or run with Copy skill directory
When to use forecasting Skill
- Use it for developers using cwc-workshops.
Built with
Editorial notes
Source
- Creator: anthropics
- Repository: anthropics/cwc-workshops
- Skill file: agent-decomposition/.claude/skills/forecasting/SKILL.md
What it does
How to produce a demand forecast for a SKU, and when to delegate that to a subagent vs. compute it yourself. Load this for any task involving "forecast", "how much will we sell", "next month", promos, or seasonal SKUs.
Skill instructions
<!-- Copyright 2026 Anthropic PBC -- <!-- SPDX-License-Identifier: Apache-2.0 -- Demand Forecasting Forecasting has two paths. Pick the right one — using a subagent when you don't need one wastes turns; skipping it when you do gives you a bad number. Path A — compute it yourself (code execution) Use this when all of the following hold: - horizon ≤ 14 days - the product's isseasonal flag is 0 - the product's promonextmonth flag is 0 - the task doesn't mention a promo, holiday, or trend change Then the forecast is just a rolling mean. This skill ships a script for it: bash python .claude/skills/forecasting/rollingmean.py SKU-0057 14 That's it — one Bash call, ~200 tokens, no subagent. Read the script if you want to adapt it (it's ~20 lines). Batch variant for sweeps: if you need days-of-cover for many SKUs at once (e.g., the daily low-stock check), don't loop tool calls — run the batch script: bash python .claude/skills/forecasting/batchdaysofcover.py 20 Returns the 20 most urgent SKUs aExplore related resources
Frequently asked questions
What is forecasting?
forecasting is a open-source AI agent skill with Copy skill directory. How to produce a demand forecast for a SKU, and when to delegate that to a subagent vs. compute it yourself.
Who is forecasting best for?
forecasting is best for reusing agent instructions, scripts, and references.
How do I install forecasting?
Install or run forecasting using Copy skill directory. Check forecasting for the latest setup command.
Is forecasting actively maintained?
forecasting may need a closer maintenance check before production use.
Auto-fetched from GitHub.