# Summarize

> Produce a structured summary of your architectural analysis and implementation plan. Call this when you have completed your analysis.

- Skill: `counterpointconsulting/summarize-2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add counterpointconsulting/summarize-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/counterpointconsulting/summarize-2/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-2

---


# Summarize Your Work

When you have finished your analysis, write a JSON file at /output/result.json
with this structure:

```json
{
  "status": "success",
  "summary": "Brief description of the architecture and plan",
  "plan": [
    {
      "id": "step-1",
      "description": "What this step should accomplish",
      "persona": "which persona to assign",
      "dependsOn": [],
      "branch": "feature-branch-name"
    }
  ],
  "contracts": {
    "schema": "Description of database schema changes",
    "api": "Description of API endpoints and data types",
    "components": "Description of UI components needed"
  },
  "suggestions": ["Any additional suggestions for the coordinator"]
}
```

For "partial" status, explain what remains to be analyzed in the issues field.
For "failed" status, explain what went wrong.

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

