# Playtest Report > Genera una plantilla estructurada de reporte de playtest o analiza notas existentes para convertirlas en un formato estandarizado. Fuente: https://skillsagentes.com/skills/donchitos/claude-code-game-studios/playtest-report Markdown: https://skillsagentes.com/skills/donchitos/claude-code-game-studios/playtest-report.md Repositorio: https://github.com/Donchitos/Claude-Code-Game-Studios Autor: Donchitos Licencia: MIT Actualizado: hace 3 meses Coste de contexto: 44 tok instalada, 1.3k tok al activarse, 1.3k tok con todos los archivos del bundle Bundle: 1 archivo, 5 KB Permisos que pide: read, glob, grep, write, task, askuserquestion ## Instalación Un skill son archivos markdown: los mismos archivos valen para cualquier agente y lo único que cambia es el directorio de destino, es decir la bandera `--agent`. Añade `-g` para instalarlo en todos los proyectos de la máquina. ```bash # Claude Code npx -y skills add Donchitos/Claude-Code-Game-Studios --skill playtest-report --agent claude-code # Cursor npx -y skills add Donchitos/Claude-Code-Game-Studios --skill playtest-report --agent cursor # Codex npx -y skills add Donchitos/Claude-Code-Game-Studios --skill playtest-report --agent codex # Gemini CLI npx -y skills add Donchitos/Claude-Code-Game-Studios --skill playtest-report --agent gemini # Windsurf npx -y skills add Donchitos/Claude-Code-Game-Studios --skill playtest-report --agent windsurf # Cline npx -y skills add Donchitos/Claude-Code-Game-Studios --skill playtest-report --agent cline ``` ## Qué hace - Genera una plantilla en blanco de reporte de playtest o analiza notas crudas para llenarla con hallazgos estructurados - Cruza observaciones con documentos de diseño y marca conflictos con la intención del GDD - Clasifica hallazgos en cambios de diseño, ajustes de balance, bugs y items de pulido - Enruta cada categoría al comando correspondiente (/propagate-design-change, /balance-check, /bug-report) - Puede invocar a creative-director en modo full para una revisión de experiencia del jugador antes de guardar ## Cuándo usarla - Cuando quieras estandarizar la recolección de feedback de una sesión de playtest - Cuando tengas notas crudas de un playtest y necesites convertirlas en un formato estructurado ## Qué la activa - "Genera una plantilla nueva de reporte de playtest" - "Analiza estas notas de playtest en production/qa/notes.txt" - "Crea el reporte de playtest en modo lean para esta sesión" ## Antes de instalar - Requiere el patrón de gates en .claude/docs/director-gates.md y, en modo full, el agente creative-director junto con design/gdd/game-concept.md. - writes to your files ## Archivos - SKILL.md — 5 KB ## SKILL.md Reproducido tal cual desde Donchitos/Claude-Code-Game-Studios bajo MIT. Esta sección es el documento original y está en inglés. ## Phase 1: Parse Arguments Resolve the review mode (once, store for all gate spawns this run): 1. If `--review [full|lean|solo]` was passed → use that 2. Else read `production/review-mode.txt` → use that value 3. Else → default to `lean` See `.claude/docs/director-gates.md` for the full check pattern. Determine the mode: - `new` → generate a blank playtest report template - `analyze [path]` → read raw notes and fill in the template with structured findings --- ## Phase 2A: New Template Mode Generate this template and output it to the user: ```markdown # Playtest Report ## Session Info - **Date**: [Date] - **Build**: [Version/Commit] - **Duration**: [Time played] - **Tester**: [Name/ID] - **Platform**: [PC/Console/Mobile] - **Input Method**: [KB+M / Gamepad / Touch] - **Session Type**: [First time / Returning / Targeted test] ## Test Focus [What specific features or flows were being tested] ## First Impressions (First 5 minutes) - **Understood the goal?** [Yes/No/Partially] - **Understood the controls?** [Yes/No/Partially] - **Emotional response**: [Engaged/Confused/Bored/Frustrated/Excited] - **Notes**: [Observations] ## Gameplay Flow ### What worked well - [Observation 1] ### Pain points - [Issue 1 -- Severity: High/Medium/Low] ### Confusion points - [Where the player was confused and why] ### Moments of delight - [What surprised or pleased the player] ## Bugs Encountered | # | Description | Severity | Reproducible | |---|-------------|----------|-------------| ## Feature-Specific Feedback ### [Feature 1] - **Understood purpose?** [Yes/No] - **Found engaging?** [Yes/No] - **Suggestions**: [Tester suggestions] ## Quantitative Data (if available) - **Deaths**: [Count and locations] - **Time per area**: [Breakdown] - **Items used**: [What and when] - **Features discovered vs missed**: [List] ## Overall Assessment - **Would play again?** [Yes/No/Maybe] - **Difficulty**: [Too Easy / Just Right / Too Hard] - **Pacing**: [Too Slow / Good / Too Fast] - **Session length preference**: [Shorter / Good / Longer] ## Top 3 Priorities from this session 1. [Most important finding] 2. [Second priority] 3. [Third priority] ``` --- ## Phase 2B: Analyze Mode Read the raw notes at the provided path. Cross-reference with existing design documents. Fill in the template above with structured findings. Flag any playtest observations that conflict with design intent. --- ## Phase 3: Action Routing Categorize all findings into four buckets: - **Design changes needed** — fun issues, player confusion, broken mechanics, observations that conflict with the GDD's intended experience - **Balance adjustments** — numbers feel wrong, difficulty too spiked or too flat - **Bug reports** — clear implementation defects that are reproducible - **Polish items** — not blocking progress, but friction or feel issues for later Present the categorized list, then route: - **Design changes:** "Run `/propagate-design-change [path]` on the affected design document to find downstream impacts before making changes." - **Balance adjustments:** "Run `/balance-check [system]` to verify the full balance picture before tuning values." - **Bugs:** "Use `/bug-report` to formally track these." - **Polish items:** "Add to the polish backlog in `production/` when the team reaches that phase." --- ## Phase 3b: Creative Director Player Experience Review **Review mode check** — apply before spawning CD-PLAYTEST: - `solo` → skip. Note: "CD-PLAYTEST skipped — Solo mode." Proceed to Phase 4 (save the report). - `lean` → skip (not a PHASE-GATE). Note: "CD-PLAYTEST skipped — Lean mode." Proceed to Phase 4 (save the report). - `full` → spawn as normal. After categorising findings, spawn `creative-director` via Task using gate **CD-PLAYTEST** (`.claude/docs/director-gates.md`). Pass: the structured report content, game pillars and core fantasy (from `design/gdd/game-concept.md`), the specific hypothesis being tested. Present the creative director's assessment before saving the report. If CONCERNS or REJECT, add a `## Creative Director Assessment` section to the report capturing the verdict and feedback. If APPROVE, note the approval in the report. --- ## Phase 4: Save Report Ask: "May I write this playtest report to `production/qa/playtests/playtest-[date]-[tester].md`?" If yes, write the file, creating the directory if needed. --- ## Phase 5: Next Steps Verdict: **COMPLETE** — playtest report generated. - Act on the highest-priority finding category first. - After addressing design changes: re-run `/design-review` on the updated GDD. - After fixing bugs: re-run `/bug-triage` to update priorities. ## Dónde encaja - Categoría: [Testing y QA](https://skillsagentes.com/categorias/testing-qa.md) — Flujos de testing unitario, de integración y end-to-end. - Creador: [Donchitos](https://skillsagentes.com/creators/donchitos.md) — 73 skills en el directorio - [Todas las skills](https://skillsagentes.com/skills.md) - [Ranking de instalaciones](https://skillsagentes.com/ranking.md) ## Otras skills del mismo repositorio - [Team Qa](https://skillsagentes.com/skills/donchitos/claude-code-game-studios/team-qa.md): Orquesta al equipo de QA (qa-lead y qa-tester) para producir un paquete completo de QA: plan de pruebas, smoke check, casos de prueba, ejecución manual y reporte de sign-off. - [Consistency Check](https://skillsagentes.com/skills/donchitos/claude-code-game-studios/consistency-check.md): Compara todos los GDDs contra el registro de entidades para detectar inconsistencias entre documentos: mismo stat, ítem o fórmula con valores distintos, usando un enfoque grep-first. - [Create Architecture](https://skillsagentes.com/skills/donchitos/claude-code-game-studios/create-architecture.md): Redacción guiada, sección por sección, del documento de arquitectura maestro del juego, consciente de la versión del motor y de sus posibles brechas de conocimiento. - [Day One Patch](https://skillsagentes.com/skills/donchitos/claude-code-game-studios/day-one-patch.md): Prepara un patch day-one para el lanzamiento de un juego: define alcance, prioriza, implementa y valida con un QA gate ligero, como un mini-sprint con plan de rollback. - [Hotfix](https://skillsagentes.com/skills/donchitos/claude-code-game-studios/hotfix.md): Flujo de arreglo urgente que se salta el proceso normal de sprint pero deja rastro de auditoría completo: crea rama hotfix, registra aprobaciones y asegura el backport correcto. --- Skills Agentes · [Índice de páginas en markdown](https://skillsagentes.com/sitemap.md) · [Inicio](https://skillsagentes.com/index.md)