feat: Add fenced multi-line message format (<<< ... >>>)#26
Closed
khaliqgant wants to merge 2 commits into
Closed
Conversation
Implements unambiguous multi-line message parsing using fence markers. The new syntax allows agents to send messages with blank lines, code blocks, and complex formatting without truncation: ->relay:Target <<< Multi-line content here. Can include blank lines. >>> - Added fenced inline parsing state machine in parser.ts - Added 13 comprehensive tests for fenced format - Updated CLAUDE.md documentation with new format - All 492 tests pass Fixes the fundamental issue where multi-line messages with complete line breaks would get cut off after the first line.
Updates documentation across all agent-facing files: - AGENTS.md: Added fenced format section and examples - docs/AGENTS.md: Added fenced format to quick reference - .claude/skills/using-agent-relay/SKILL.md: Added to quick reference and examples - src/wrapper/tmux-wrapper.ts: Added MULTI-LINE hint to welcome message Agents now receive clear instructions about using <<< ... >>> for multi-line messages with blank lines or code blocks.
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements unambiguous multi-line message parsing using fence markers.
The new syntax allows agents to send messages with blank lines, code
blocks, and complex formatting without truncation:
->relay:Target <<<
Multi-line content here.
Can include blank lines.
Fixes the fundamental issue where multi-line messages with complete
line breaks would get cut off after the first line.