logoalt Hacker News

beshrkayalitoday at 3:37 AM3 repliesview on HN

IMO the raw Claude CLI is great for one-off interactive sessions, but as soon as you want repeatable multi-step workflows you’re either copy-pasting prompts forever or hacking your own solution manually. That’s exactly the gap these tools fill.

My take on a solution for this is https://ossature.dev — .smd spec markdown files + ossature audit / build that gives you DAG orchestration, SHA-traced increments, and tiny focused contexts.


Replies

eloisiustoday at 4:40 AM

Isn’t a repeatable, multi-step workflow exactly what a script or Makefile does?

show 2 replies
isodevtoday at 5:13 AM

I use bash scripts. Both Claude and Vibe support all kinds of arguments if you need a prompt to “become a task”. Bash is also deterministic and easy to read and debug.

show 1 reply
je42today at 5:24 AM

Had a quick look. Stumbled upon the markdown format smd.

Was wondering if using front-matter instead of a "custom" encoding for parseble data was considered?