logoalt Hacker News

iririririrlast Sunday at 3:34 PM1 replyview on HN

   echo "$OUT" | claude-mem-save

so, does agents are ultra aware their output is used in a bash line or did bash now have some magic quote super power?

I'd bet this only really work 2% of the time in real world.


Replies

bkotryslast Sunday at 6:25 PM

At the shell level, the agent does not need to know about Bash. The contents of "$OUT" are passed to echo as one argument, then sent to claude-mem-save over stdin. Bash does not re-evaluate them as shell code. printf '%s\n' "$OUT" would be more robust than echo. Whether claude-mem-save can use arbitrary output is a separate question.

show 1 reply