From 35ecc0f374079c3f110e3fc1c752f2df9e6471d8 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 01:19:07 +0000 Subject: [PATCH] Fix TOML parsing errors in edge-cases.toml and improve.toml - Escaped null byte representation in `commands/testing/edge-cases.toml` (`\0` -> `\\0`) to fix "Unknown escape character" error. - Completed truncated section and closed multi-line string in `commands/prompts/improve.toml` to fix "Unterminated multi-line string" error. --- commands/prompts/improve.toml | 7 ++++++- commands/testing/edge-cases.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/commands/prompts/improve.toml b/commands/prompts/improve.toml index b50d86a..aa04324 100644 --- a/commands/prompts/improve.toml +++ b/commands/prompts/improve.toml @@ -48,4 +48,9 @@ Analyze and improve the following prompt: - Are examples provided? - Is the level of detail clear? -** \ No newline at end of file +**Improvements:** +- Define specific output format (JSON, Markdown, Code, etc.) +- Provide concrete examples of desired output +- Specify required level of detail + +""" \ No newline at end of file diff --git a/commands/testing/edge-cases.toml b/commands/testing/edge-cases.toml index f03a3c0..e88222d 100644 --- a/commands/testing/edge-cases.toml +++ b/commands/testing/edge-cases.toml @@ -27,7 +27,7 @@ Please identify comprehensive edge cases for the following code or feature: - Very long strings (1MB+) - Strings with special characters - Unicode characters and emojis -- Null bytes (\0) +- Null bytes (\\0) - Strings with only whitespace - Leading/trailing whitespace