# Summarize

> Produce a structured test result summary. Call this when you have completed testing.

- Skill: `counterpointconsulting/summarize-4` (Agent Skill)
- Install (CLI): `npx skillmds@latest add counterpointconsulting/summarize-4`
- Raw SKILL.md: https://api.skillmd.com/api/skills/counterpointconsulting/summarize-4/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: CounterpointConsulting (https://skillmd.com/u/counterpointconsulting)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/counterpointconsulting/summarize-4

---


# Summarize Your Test Results

Write a JSON file at /output/result.json:

```json
{
  "status": "passed | failed | blocked",
  "summary": "Brief overall test result",
  "testsRun": 5,
  "testsPassed": 4,
  "testsFailed": 1,
  "findings": [
    {
      "severity": "bug | regression | ux_issue | suggestion",
      "description": "What was found",
      "stepsToReproduce": ["step 1", "step 2"],
      "suggestion": "How to fix it"
    }
  ],
  "approved": true
}
```

IMPORTANT: Write the file using the write tool to /output/result.json.

