spec_coding_goal_confirmed
Confirm feature goal completion and transition to requirements gathering phase in spec-driven development workflow.
Instructions
Confirm the completion of the feature goal, set the feature_name, and proceed to the requirements collection phase
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| feature_name | Yes | Feature name generated based on the goal (e.g., user-auth) | |
| goal_summary | Yes | Brief description of the feature goal | |
| session_id | Yes | Session identifier |
Input Schema (JSON Schema)
{ "properties": { "feature_name": { "description": "Feature name generated based on the goal (e.g., user-auth)", "type": "string" }, "goal_summary": { "description": "Brief description of the feature goal", "type": "string" }, "session_id": { "description": "Session identifier", "type": "string" } }, "required": [ "session_id", "feature_name", "goal_summary" ], "type": "object" }