submit-solution

Guiar a un asistente del taller para que confirme su descomposición de starter-agent y abra un PR con su solución y comentarios del taller. Invocar cuando el usuario…

npx skills add https://github.com/anthropics/cwc-workshops --skill submit-solution

Submit your StockPilot solution

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.

Step 1 — Ask about their experience first

Before touching git, ask these three questions (use AskUserQuestion or just conversational):

  1. Which subagent approach did you go with for cycle 3? (callable_agents / spawn_subagent / inline / something else)
  2. What was the hardest part of the workshop? (a specific cycle, a concept, the tooling, the timing)
  3. One thing you'd change about it?

Hold onto their answers — they go in the PR body.

Step 2 — Show them what they're submitting

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%}')"

Step 3 — Commit and push

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.

Step 4 — Open the PR with feedback in the body

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>

Step 5 — Confirm

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.

Don't

  • Don't open the PR before they've seen the diff and the body
  • Don't skip the feedback questions to "save time" — that's the point
  • Don't include evals/reports/ or .stockpilot_ids.json in the commit

Más skills de anthropic

access
anthropic
Gestiona el acceso a canales de Discord: aprueba emparejamientos, edita listas permitidas, configura políticas de DM/grupo. Úsalo cuando el usuario pida emparejar, aprobar a alguien, verificar quién está permitido…
official
session-report
anthropic
Generar un informe HTML explorable del uso de la sesión de Claude Code (tokens, caché, subagentes, habilidades, prompts costosos) a partir de las transcripciones de ~/.claude/projects.
official
build-mcp-server
anthropic
Esta habilidad debe usarse cuando el usuario solicite "construir un servidor MCP", "crear un MCP", "hacer una integración MCP", "envolver una API para Claude", "exponer herramientas a…
official
cookbook-audit
anthropic
Auditar un cuaderno de Anthropic Cookbook basado en una rúbrica. Úsalo siempre que se solicite una revisión o auditoría de un cuaderno.
official
handle-complaint
anthropic
Gestiona una queja entrante de cliente de principio a fin: extrae el contexto, redacta una respuesta y sugiere una solución operativa. Acepta un correo electrónico o ID de ticket opcional…
official
use-case-triage
anthropic
Determinar rápidamente si una actividad de procesamiento necesita una PIA, una DPIA obligatoria del GDPR, o puede continuar — detecta conflictos con la política de privacidad y dirige al…
official
board-minutes
anthropic
Redacta actas de reuniones de la junta o comité en el formato de su organización. Detecta automáticamente las próximas reuniones de la junta y comités desde su calendario, solicita la agenda y…
official
renewal-tracker
anthropic
Muestra los contratos con fechas límite de cancelación próximas y advierte antes de que se cierren las ventanas de notificación, trabajando desde un registro de renovaciones mantenido. Úsalo cuando el usuario pregunte…
official