| name | feature-summary |
| description | Create a structured summary of current branch feature work from git diff, commit history, and optional planning files. |
| disable-model-invocation | true |
Feature Summary
Context To Load
- Run
git diff main...HEAD.
- Run
git log main..HEAD --oneline.
- Read
FEATURE_PLAN.md or workflow.yml if present.
Output File
By default, create {git-root}/feature_summary.md with these sections. If the calling workflow specifies an explicit output path, use that path but keep the same section structure:
- Executive Summary (2-4 sentences)
- Scope of Changes
- Behavioral Details
- Security and Privacy
- Testing
- Open Questions
- Suggested PR Title and Description
Section Expectations
- Describe problem solved, impact, and behavior changes.
- List touched modules/files and new contracts (types, endpoints, flags).
- Document data model/migration and config/env changes.
- Call out auth/authz and sensitive-data/logging implications.
- Include test additions and known gaps.