一键导入
demos
Run the bundled data analyst demo workflows from R2-backed DeepWork demo bundles
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run the bundled data analyst demo workflows from R2-backed DeepWork demo bundles
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | demos |
| description | Run the bundled data analyst demo workflows from R2-backed DeepWork demo bundles |
/demos — Data Analyst Demo RunnerUse this skill when the user asks for /demos, run demo, oil demo, healthcare demo, or asks to try the data analyst agent on canned demo data.
The data analyst agent intentionally does not vendor demo datasets. Demo data is pulled on demand from the legacy DeepWork Frontend R2-backed demo bundle route:
https://unsupervised-preview.unsupervised-52b.workers.dev/demo-bundle/<demo-id>-full-data
oil — WTI summer forecast for a fictional oil producer using FRED, NOAA, and GDELT data. Produces a Slidev-style presentation/report.healthcare — alias for medicaid-spending, Medicaid spending growth drivers using CMS NHE and CMS-64 FMR data. Produces a DocBaker/HTML-style report.medicaid-spending — canonical healthcare demo id.Resolve the requested demo id:
oil -> oilhealthcare, medicaid, medicaid-spending -> medicaid-spendingPrepare the demo bundle in the current project root by running the helper script from this skill directory:
bash scripts/fetch-demo.sh <demo-id> --target .
If the current directory is not an empty/scratch project, ask before using --force, or offer a scratch target such as /tmp/deepwork-demos/<demo-id>.
Read .deepwork/demo-initial-prompt.txt after the helper completes.
Execute the demo for real using the self-contained analyst DeepWork jobs. The prompt normally begins with /deepwork analysis/ad_hoc_research_report ...; use the DeepWork tools/extension rather than inventing a manual workflow.
Continue until the report artifact is created. Summarize:
List supported demos:
bash scripts/fetch-demo.sh --list
Fetch oil into the current project:
bash scripts/fetch-demo.sh oil --target .
Fetch healthcare into a scratch directory:
mkdir -p /tmp/deepwork-demos/healthcare
bash scripts/fetch-demo.sh healthcare --target /tmp/deepwork-demos/healthcare
Override the bundle host for branch previews or local testing:
DEMO_BUNDLE_HOST=https://example.test bash scripts/fetch-demo.sh oil --target .
deepwork-frontend checkout. The demo bundle must come from the R2-backed /demo-bundle route unless the user explicitly points to a local fixture.DEMO_BUNDLE_HOST.