Skills Agentes

Help

Analiza lo que se ha hecho y la consulta del usuario para sugerir el próximo paso; útil cuando dices 'qué hago ahora' o 'estoy atascado'.

Reemplaza a: /project-stage-detect para un análisis completo de brechas

Solicitareadglobgrep
Estrellas
24.4k

en todo el repo

Actividad
37

0–100, la ruta de este skill

Actualizado
hace 4 meses

último commit aquí

Commits
0

últimos 90 días

Contexto
2.1k tok

45 tok en reposo

Paquete
1 archivo

8 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add Donchitos/Claude-Code-Game-Studios --skill help --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Detecta la fase actual del proyecto de desarrollo del juego leyendo el catálogo de flujo de trabajo y los artefactos
  • Revisa production/session-state/active.md para identificar en qué se trabajó últimamente o en qué está atascado el usuario
  • Identifica el próximo paso requerido, pasos opcionales disponibles y los próximos pasos requeridos que vienen después
  • Lista habilidades instaladas que no forman parte del catálogo de fases como bloque adicional
  • Avisa si el proyecto está cerca de un gate de fase y sugiere ejecutar /gate-check

Úsalo cuando

  • El usuario pregunta qué hacer a continuación o qué hacer ahora
  • El usuario dice que está atascado o no sabe qué hacer
  • Se quiere una orientación rápida y ligera sin una auditoría completa

No lo uses cuando

  • Se necesita un análisis de brechas completo, en cuyo caso usar /project-stage-detect

Qué lo activa

Di cualquiera de estas frases y el agente debería cargar este skill.

  • ¿Qué debo hacer ahora?
  • Estoy atascado, no sé qué hacer
  • Acabo de terminar design-review, ¿qué sigue?
  • No tengo idea de en qué fase estoy del proyecto

SKILL.md

En inglés

Studio Help — What Do I Do Next?

This skill is read-only — it reports findings but writes no files.

This skill figures out exactly where you are in the game development pipeline and tells you what comes next. It is lightweight — not a full audit. For a full gap analysis, use /project-stage-detect.


Step 1: Read the Catalog

Read .claude/docs/workflow-catalog.yaml. This is the authoritative list of all phases, their steps (in order), whether each step is required or optional, and the artifact globs that indicate completion.


Step 1b: Find Skills Not in the Catalog

After reading the catalog, Glob .claude/skills/*/SKILL.md to get the full list of installed skills. For each file, extract the name: field from its frontmatter.

Compare against the command: values in the catalog. Any skill whose name does not appear as a catalog command is an uncataloged skill — still usable but not part of the phase-gated workflow.

Collect these for the output in Step 7 — show them as a footer block:

### Also installed (not in workflow)
- `/skill-name` — [description from SKILL.md frontmatter]
- `/skill-name` — [description]

Only show this block if at least one uncataloged skill exists. Limit to the 10 most relevant based on the user's current phase (QA skills in production, team skills in production/polish, etc.).


Step 2: Determine Current Phase

Check in this order:

  1. Read production/stage.txt — if it exists and has content, this is the authoritative phase name. Map it to a catalog phase key:

    • "Concept" → concept
    • "Systems Design" → systems-design
    • "Technical Setup" → technical-setup
    • "Pre-Production" → pre-production
    • "Production" → production
    • "Polish" → polish
    • "Release" → release
  2. If stage.txt is missing, infer phase from artifacts (most-advanced match wins):

    • src/ has 10+ source files → production
    • production/stories/*.md exists → pre-production
    • docs/architecture/adr-*.md exists → technical-setup
    • design/gdd/systems-index.md exists → systems-design
    • design/gdd/game-concept.md exists → concept
    • Nothing → concept (fresh project)

Step 3: Read Session Context

Read production/session-state/active.md if it exists. Extract:

  • What was most recently worked on
  • Any in-progress tasks or open questions
  • Current epic/feature/task from STATUS block (if present)

This tells you what the user just finished or is stuck on — use it to personalize the output.


Step 4: Check Step Completion for the Current Phase

For each step in the current phase (from the catalog):

Artifact-based checks

If the step has artifact.glob:

  • Use Glob to check if files matching the pattern exist
  • If min_count is specified, verify at least that many files match
  • If artifact.pattern is specified, use Grep to verify the pattern exists in the matched file
  • Complete = artifact condition is met
  • Incomplete = artifact is missing or pattern not found

If the step has artifact.note (no glob):

  • Mark as MANUAL — cannot auto-detect, will ask user

If the step has no artifact field:

  • Mark as UNKNOWN — completion not trackable (e.g. repeatable implementation work)

Special case: production phase — read sprint-status.yaml

When the current phase is production, check for production/sprint-status.yaml before doing any glob-based story checks. If it exists, read it directly:

  • Stories with status: in-progress → surface as "currently active"
  • Stories with status: ready-for-dev → surface as "next up"
  • Stories with status: done → count as complete
  • Stories with status: blocked → surface as blocker with the blocker field

This gives precise per-story status without markdown scanning. Skip the glob artifact check for the implement and story-done steps — the YAML is authoritative.

Special case: repeatable: true (non-production)

For repeatable steps outside production (e.g. "System GDDs"), the artifact check tells you whether any work has been done, not whether it's finished. Label these differently — show what's been detected, then note it may be ongoing.


Step 5: Find Position and Identify Next Steps

From the completion data, determine:

  1. Last confirmed complete step — the furthest completed required step
  2. Current blocker — the first incomplete required step (this is what the user must do next)
  3. Optional opportunities — incomplete optional steps that can be done before or alongside the blocker
  4. Upcoming required steps — required steps after the current blocker (show as "coming up" so user can plan ahead)

If the user provided an argument (e.g. "just finished design-review"), use that to advance past the step they named even if the artifact check is ambiguous.


Step 6: Check for In-Progress Work

If active.md shows an active task or epic:

  • Surface it prominently at the top: "It looks like you were working on [X]"
  • Suggest continuing it or confirm if it's done

Step 7: Present Output

Keep it short and direct. This is a quick orientation, not a report.

## Where You Are: [Phase Label]

**In progress:** [from active.md, if any]

### ✓ Done
- [completed step name]
- [completed step name]

### → Next up (REQUIRED)
**[Step name]** — [description]
Command: `[/command]`

### ~ Also available (OPTIONAL)
- **[Step name]** — [description] → `/command`
- **[Step name]** — [description] → `/command`

### Coming up after that
- [Next required step name] (`/command`)
- [Next required step name] (`/command`)

---
Approaching **[next phase]** gate → run `/gate-check` when ready.

Formatting rules:

  • for confirmed complete
  • for the current required next step (only one — the first blocker)
  • ~ for optional steps available now
  • Show commands inline as backtick code
  • If a step has no command (e.g. "Implement Stories"), explain what to do instead of showing a slash command
  • For MANUAL steps, ask the user: "I can't tell if [step] is done — has it been completed?"

Verdict: COMPLETE — next steps identified.


Step 8: Gate Warning (if close)

After the current phase's steps, check if the user is likely approaching a gate:

  • If all required steps in the current phase are complete (or nearly complete), add: "You're close to the [Current] → [Next] gate. Run /gate-check when ready."
  • If multiple required steps remain, skip the gate warning — it's not relevant yet.

Step 9: Escalation Paths

After the recommendations, if the user seems stuck or confused, add:

---
Need more detail?
- `/project-stage-detect` — full gap analysis with all missing artifacts listed
- `/gate-check` — formal readiness check for your next phase
- `/start` — re-orient from scratch

Only show this if the user's input suggested confusion (e.g. "I don't know", "stuck", "lost", "not sure"). Don't show it for simple "what's next?" queries.


Collaborative Protocol

  • Never auto-run the next skill. Recommend it, let the user invoke it.
  • Ask about MANUAL steps rather than assuming complete or incomplete.
  • Match the user's tone — if they sound stressed ("I'm totally lost"), be reassuring and give one action, not a list of six.
  • One primary recommendation — the user should leave knowing exactly one thing to do next. Optional steps and "coming up" are secondary context.

Reproducido de Donchitos/Claude-Code-Game-Studios bajo licencia MIT. Leer esta página en markdown.

Archivos

1 archivo en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

Antes de instalar

Requiere .claude/docs/workflow-catalog.yaml y opcionalmente production/stage.txt y production/session-state/active.md.

Detalles

Creador
Donchitos
Categoría
Productividad
Licencia
MIT
Recursos incluidos
Solo SKILL.md
Código fuente
Ver SKILL.md

Etiquetas

Más de Donchitos/Claude-Code-Game-Studios

Este repo incluye 73 skills. Si instalas uno, normalmente ya tienes los demás.

Adopt

24.4k

Onboarding brownfield: audita el cumplimiento de formato de los artefactos existentes, clasifica los vacíos por impacto y genera un plan de migración numerado.

Costo de contexto al activarse
4.5k tok
Tamaño del paquete
1 archivo
Última actualización
hace 3 meses
herramientas desarrollo

Crea un Registro de Decisión de Arquitectura (ADR) que documenta una decisión técnica importante, su contexto, alternativas consideradas y consecuencias.

Costo de contexto al activarse
4.8k tok
Tamaño del paquete
1 archivo
Última actualización
hace 3 meses
documentos

Valida que la arquitectura del proyecto cubra por completo los GDD: cruza requisitos con ADR, detecta conflictos entre decisiones y compatibilidad de motor, y da un veredicto PASS/CONCERNS/FAIL.

Costo de contexto al activarse
6.7k tok
Tamaño del paquete
1 archivo
Última actualización
hace 3 meses
herramientas desarrollo

Autoría guiada, sección por sección, del Art Bible. Crea la especificación de identidad visual que condiciona toda la producción de assets. Se ejecuta tras aprobar /brainstorm y antes de /map-systems o de redactar cualquier GDD.

Costo de contexto al activarse
3.7k tok
Tamaño del paquete
1 archivo
Última actualización
hace 3 meses
documentos

Audita los assets del juego según convenciones de nombres, presupuestos de tamaño, formatos estándar y requisitos de pipeline. Identifica assets huérfanos, referencias faltantes e infracciones de estándares.

Costo de contexto al activarse
697 tok
Tamaño del paquete
1 archivo
Última actualización
hace 3 meses
testing qa

Genera especificaciones visuales por asset y prompts de generación IA a partir de GDDs, docs de nivel o perfiles de personaje. Produce archivos de spec y actualiza el manifiesto maestro.

Costo de contexto al activarse
4.1k tok
Tamaño del paquete
1 archivo
Última actualización
hace 3 meses
documentos

Skills relacionados

Ideación guiada de conceptos de juego, desde cero hasta un documento estructurado, usando técnicas de estudios profesionales y marcos de psicología del jugador.

Costo de contexto al activarse
5k tok
Tamaño del paquete
1 archivo
Última actualización
hace 3 meses
productividad

Audita los recuentos de contenido especificados en el GDD frente al contenido implementado, identificando qué está planeado y qué está construido.

Costo de contexto al activarse
1.8k tok
Tamaño del paquete
1 archivo
Última actualización
hace 3 meses
productividad

Traduce GDDs y arquitectura aprobados en épicas, una por módulo arquitectónico; define alcance, ADRs, riesgo de motor y requisitos sin trazar. No divide en historias — ejecuta /create-stories [epic-slug] después.

Costo de contexto al activarse
2.3k tok
Tamaño del paquete
1 archivo
Última actualización
hace 3 meses
productividad