SKILL.make: Makefile Styled Skill File (github.com)
20 points by teaonly 2 hours ago
stingraycharles 37 minutes ago
I don’t get it.
“ 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?
teaonly 27 minutes ago
What I did here was to rewrite SKILL.md in Makefile style, using a DAG structure and omitting the text describing the process. So this should be considered a pseudo-Makefile; writing a SKILL using the Makefile approach is a very natural method.
SwellJoe 19 minutes ago
You're just repeating the readme, not answering the question.
teaonly 4 minutes ago
forestcall 40 minutes ago
This is interesting. Do you have a robust skill built with this I could checkout? I have been working on a planning skill that has sub-agent that do stuff like research with Tavily and Exa an it uses Claude CLI and Codex CLI to write separate plans and compare and uses a plan template with a micro task layout with multiple phases, test, etc.
teaonly 2 hours ago
The core idea of this project is to use Makefiles to style SKILL documentation, leveraging Makefiles' built-in DAG functionality and a defined syntax. The advantages are as follows:
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.
nimchimpsky 27 minutes ago
[dead]