# subagent-response-format - Author: sagerstack - Repository: sagerstack/agentic-sdlc - Version: 20260203094738 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/sagerstack/agentic-sdlc - Web: https://mule.run/skillshub/@@sagerstack/agentic-sdlc~subagent-response-format:20260203094738 --- # Response SKILL for Subagents # When to Use When the subagent is asked to execute an instruction. After completion, the subagent should provide a final summarized response in a specific json format, as instructed in the **Response Format** below. # Response Format Provide exactly this json structure and fields in your response. DO NOT add your own fields to the response ```json { "task-no": "{parent-task-id}-{sub-task-id}", # for e.g. 5-2 # default= NA "status":"success" | "failure", "response": "{ provide a summary of the work done | provide a summary of the test results | provide an assessment of the quality of the deliverable }", "context":"{provide all the context needed to the primary agent for the next steps}" } ```