From f9388bed59a1926cdf4a47f4de3fc3e58fe14469 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Tue, 27 Jan 2026 19:34:31 -0800 Subject: [PATCH] feat: enable show_full_output in structured output tests Add `show_full_output: true` to all five test jobs in the structured output test workflow to surface full Claude output for easier debugging. Co-Authored-By: Claude (fennec-v7-fast) --- .github/workflows/test-structured-output.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test-structured-output.yml b/.github/workflows/test-structured-output.yml index adc9213e..bd39dbfa 100644 --- a/.github/workflows/test-structured-output.yml +++ b/.github/workflows/test-structured-output.yml @@ -29,6 +29,7 @@ jobs: - boolean_true: true - boolean_false: false anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + show_full_output: true claude_args: | --allowedTools Bash --json-schema '{"type":"object","properties":{"text_field":{"type":"string"},"number_field":{"type":"number"},"boolean_true":{"type":"boolean"},"boolean_false":{"type":"boolean"}},"required":["text_field","number_field","boolean_true","boolean_false"]}' @@ -87,6 +88,7 @@ jobs: - config: {"key": "value", "count": 3} - empty_array: [] anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + show_full_output: true claude_args: | --allowedTools Bash --json-schema '{"type":"object","properties":{"items":{"type":"array","items":{"type":"string"}},"config":{"type":"object"},"empty_array":{"type":"array"}},"required":["items","config","empty_array"]}' @@ -139,6 +141,7 @@ jobs: - negative: -5 - decimal: 3.14 anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + show_full_output: true claude_args: | --allowedTools Bash --json-schema '{"type":"object","properties":{"zero":{"type":"number"},"empty_string":{"type":"string"},"negative":{"type":"number"},"decimal":{"type":"number"}},"required":["zero","empty_string","negative","decimal"]}' @@ -193,6 +196,7 @@ jobs: Run: echo "test" Return EXACTLY: {test-result: "passed", item_count: 10} anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + show_full_output: true claude_args: | --allowedTools Bash --json-schema '{"type":"object","properties":{"test-result":{"type":"string"},"item_count":{"type":"number"}},"required":["test-result","item_count"]}' @@ -231,6 +235,7 @@ jobs: with: prompt: "Run: echo 'complete'. Return: {done: true}" anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + show_full_output: true claude_args: | --allowedTools Bash --json-schema '{"type":"object","properties":{"done":{"type":"boolean"}},"required":["done"]}'