원클릭으로
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.