Summarize

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

CounterpointConsulting d6f3b3d 1.0 KB Updated

File contents

Summarize Your Work

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

{
  "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.

CounterpointConsulting/shepherds-pi/tree/main/personas/architect/skills/summarize commit d6f3b3d015

Frequently asked questions

npx skillmds@latest add counterpointconsulting/summarize-2