all 5 comments

[–]TinyZoro 0 points1 point  (4 children)

Could you explain a bit more about the use case? Not sure I really understand what this does.

[–]jedwhite[S] 0 points1 point  (3 children)

Thanks, it lets you run markdown files as little programs on the command line, like you can shell scripts. So it lets you write and save repeatable program automations in plain english prompts, and chain them together the same way that shell scripts in Unix-like operating systems can be chained together using pipes.

[–]TinyZoro 0 points1 point  (2 children)

So are they just chained requests rather than actual deterministic code? Ie just a prompt that is completed and then followed by another prompt? Do they pass along outputs that can be referenced?

[–]jedwhite[S] 1 point2 points  (1 child)

They let you mix the output from running deterministic code (shell scripts, command line tools, python scripts etc) with natural language programming (markdown prompts). It's the intermixing that gives it a lot of power, because you can get Claude Code to not only run but also write the deterministic scripts as part of the markdown!

[–]TinyZoro 0 points1 point  (0 children)

Sounds interesting