From b383d0fdf14ec03b75f416d3023748def915b9b1 Mon Sep 17 00:00:00 2001 From: Hugo Nijhuis Date: Wed, 31 Dec 2025 17:46:33 +0100 Subject: [PATCH] Fix tea comment docs: replace heredoc with quoted strings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Heredoc syntax causes tea comment to be backgrounded and fail silently. Updated Comments section to: - Use quoted strings with literal newlines for multiline comments - Add warning about avoiding heredoc syntax Closes #10 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- skills/gitea/SKILL.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/skills/gitea/SKILL.md b/skills/gitea/SKILL.md index 66c71b0..6d64166 100644 --- a/skills/gitea/SKILL.md +++ b/skills/gitea/SKILL.md @@ -119,15 +119,15 @@ tea clone / # Clone repository tea comment "" tea comment 3 "LGTM, ready to merge" -# Multiline comments (use heredoc) -tea comment 3 "$(cat <<'EOF' -## Review Summary +# Multiline comments (use quoted strings with literal newlines) +tea comment 3 "## Review Summary + - Code looks good -- Tests pass -EOF -)" +- Tests pass" ``` +> **Warning**: Do not use heredoc syntax `$(cat <<'EOF'...EOF)` with `tea comment` - it causes the command to be backgrounded and fail silently. + ### Notifications ```bash