From cheese-flow
Use the Milknado MCP tools to decompose a goal into a Mikado-style change graph and produce a token-budgeted batch plan.
npx claudepluginhub paulnsorensen/cheese-flowThis skill is limited to using the following tools:
Use this skill to turn a high-level goal into a structured Mikado execution plan
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Guides code writing, review, and refactoring with Karpathy-inspired rules to avoid overcomplication, ensure simplicity, surgical changes, and verifiable success criteria.
Share bugs, ideas, or general feedback.
Use this skill to turn a high-level goal into a structured Mikado execution plan backed by the Milknado graph. The skill calls the Milknado MCP server to inspect the current graph state, decompose the goal into fine-grained changes, and persist each change as a graph node.
milknado_graph_summary to check for existing
nodes. If nodes exist, operate in resuming mode.id, path, edit_kind, description, symbols, and depends_on.milknado_plan_batches with the manifest to
confirm the solver produces a feasible batch plan.milknado_add_node for each change, linking
prerequisite relationships via parent_id.| Tool | Purpose |
|---|---|
milknado_graph_summary | Read the current graph (id, status, description per node). |
milknado_add_node | Add a new work node, optionally linked to a parent. |
milknado_plan_batches | Compute token-budgeted, precedence-respecting batches. |
{
"manifest_version": "milknado.plan.v2",
"goal": "Short goal statement",
"goal_summary": "What / why / success criteria (2–4 sentences).",
"changes": [
{
"id": "c1",
"path": "src/example.py",
"edit_kind": "modify",
"description": "Causal description referencing the goal.",
"symbols": [{"name": "ExampleClass", "file": "src/example.py"}],
"depends_on": []
}
]
}
Closed edit_kind values: add, modify, delete, rename