Guide a workshop attendee through committing their starter-agent decomposition and opening a PR with their solution + workshop feedback. Invoke when the user says "submit", "I'm done", "open a PR", or asks how to share their solution.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "submit-solution" skill from askskill: 1. Download https://raw.githubusercontent.com/anthropics/cwc-workshops/main/agent-decomposition/.claude/skills/submit-solution/SKILL.md 2. Save it as ~/.claude/skills/submit-solution/SKILL.md 3. Reload skills and tell me it's ready
You're helping a workshop attendee package up their agents/starter/agent.py
decomposition and open a PR. The PR is how facilitators see what approaches
people took, and the description doubles as the workshop feedback form.
Before touching git, ask these three questions (use AskUserQuestion or just conversational):
Hold onto their answers — they go in the PR body.
git diff main -- agent-decomposition/agents/starter/agent.py
Walk through the diff briefly: which tools they dropped, which skills they enabled, which subagent approach they wired. If the diff is empty, they haven't edited starter — ask if they worked in a different file.
Also grab their final eval score:
ls -t evals/reports/*/starter.json | head -1 | xargs cat | python -c "import json,sys; d=json.load(sys.stdin); print(f'{d[\"score\"]:.0%}')"
git checkout -b solution/<their-name-or-handle>
git add agent-decomposition/agents/starter/agent.py
git commit -m "Workshop solution: <subagent approach>, <score>%"
git push -u origin solution/<their-name-or-handle>
Ask for their name/handle if you don't have it. If they don't have push
rights to anthropics/cwc-workshops, have them fork first
(gh repo fork --clone=false) and push to their fork.
gh pr create --title "Workshop solution — <name>" --body-file -
PR body template (fill from step 1 + step 2):
## My decomposition
- Subagent approach: <callable_agents | spawn_subagent | inline | other>
- Final eval score: <NN>%
- Tools I dropped: <list>
- Skills I enabled: <list>
## Workshop feedback
**Hardest part:** <their answer>
**One thing I'd change:** <their answer>
**Anything else:** <free text — leave blank if nothing>
Give them the PR URL and thank them. Mention that facilitators read every PR and the feedback directly shapes the next run of this workshop.
evals/reports/ or .stockpilot_ids.json in the commitFixed-format templates for Slack alerts, supplier emails, and escalations. Load this whenever the task is "notify", "alert", "email", or "tell ops".
Where diamonds spawn in Minecraft 1.20.
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.
How to decide whether and how much to reorder a SKU. Load this whenever a task involves reorder recommendations, purchase orders, or "should we restock" questions.
How to rank and pick a supplier for a SKU. Load this whenever a task involves choosing a supplier, comparing quotes, or creating a purchase order.
Structure and data sources for the weekly inventory report. Load this when the task is "weekly report", "Monday report", or "summarize inventory status".