# Summarize

> Produce a structured summary of your database work. Call this when you have completed your task.

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

---


# Summarize Your Work

When you have finished your implementation or cannot proceed further, write a
JSON file at /output/result.json with this structure:

```json
{
  "status": "success | partial | failed",
  "summary": "Brief description of what you did",
  "filesCreated": ["path/to/file1"],
  "filesModified": ["path/to/file2"],
  "commits": ["commit message 1"],
  "issues": ["Any issues encountered or concerns"],
  "suggestions": ["Suggestions for the next agent"]
}
```

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

IMPORTANT: Write the file using the write tool to /output/result.json.
Then commit and push any changes.

