ES version is available. Content is displayed in original English for accuracy.
Advertisement
Advertisement
⚡ Community Insights
Discussion Sentiment
100% Positive
Analyzed from 531 words in the discussion.
Trending Topics
#skill#makefile#more#dag#llm#uses#makefiles#https#next#step

Discussion (16 Comments)Read Original on HackerNews
Have you tried it in Polish? [0]
0. https://arxiv.org/html/2501.02266v1
“ Dependency Resolution: The harness resolves the DAG (Directed Acyclic Graph) automatically. No more relying on an LLM to "guess" the next logical step.Uses the Target: Dependency + Recipe model to ensure Agents follow a strict execution order without skipping steps.”
How does it do that? Does it just generate a Makefile? If so, why not just put the actual Makefile as a resource in the skill package and provide execution commands? That way the Makefile doesn’t need to be read at all.
If not, and you rely on an LLM interpreting the execution order, wouldn’t that statement just be false?
https://github.com/Teaonly/SKILL.make/blob/06872841537273376...
I made my own project, with one of the goals being discounting tokens, but found that the real goal was just ensuring quality and making things more programmatic.
https://ktext.dev
Basically ends up being agents.md in a schema driven yaml file. Thinking about extending it to also generate or replace skill.md.
I think the proliferation of markdown is cool, and lowers the barrier for entry, but it’s also very unpredictable and loose. I think over time we will drive these to be more like config files instead of free text.
Even when it's a big project, breaking it down doesn't change the output quality.
Have to say that since we switched to our own model in a rented GPU, we stopped worrying about tokens and just use the hell out of our AI as much as we want :)
/s just in case
1. It reduces the token consumption of the original MD format;
2. SKILLs are easier to read and more suitable for AI use because the inherent DAG is a Plane Mode;
3. Makefiles are ideal for auditing (git tracing, call statistics), providing a solid fundation for future self-evolving enginering.