From bb076869309ab33137f194a43a75d409cc767119 Mon Sep 17 00:00:00 2001 From: Ben Rogerson Date: Sun, 10 May 2026 00:27:55 +0930 Subject: [PATCH 1/2] fix: add outputs declaration to standup-writer agent The standup-writer agent produces formatted standup text but didn't declare its outputs. This made the final result appear as unstructured stdout to API consumers. Added the outputs field to properly document the final-step result, aligning with other template agents like spec-creator. --- packages/templates/standup/agents/standup-writer.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/templates/standup/agents/standup-writer.ts b/packages/templates/standup/agents/standup-writer.ts index be7f4fc..56e25f7 100644 --- a/packages/templates/standup/agents/standup-writer.ts +++ b/packages/templates/standup/agents/standup-writer.ts @@ -8,6 +8,7 @@ export default defineAgent<{ git_summary: string; today_focus: string }>( tools: [], permissions: "read-only", timeoutSeconds: 60, + outputs: { standup: "Formatted standup text with Yesterday / Today / Blockers sections" }, prompt: ` You are drafting a daily standup for an engineer. From a123a8c48da2889a468e0a093e9327ef69e90c4c Mon Sep 17 00:00:00 2001 From: Ben Rogerson Date: Sun, 10 May 2026 00:27:55 +0930 Subject: [PATCH 2/2] chore: add changeset --- .changeset/standup-template-missing-output-on-final-step.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/standup-template-missing-output-on-final-step.md diff --git a/.changeset/standup-template-missing-output-on-final-step.md b/.changeset/standup-template-missing-output-on-final-step.md new file mode 100644 index 0000000..c050584 --- /dev/null +++ b/.changeset/standup-template-missing-output-on-final-step.md @@ -0,0 +1,5 @@ +--- +"@generata/core": patch +--- + +fix: add outputs declaration to standup-writer agent