From 78ab95922ff51e2d30238a7963c4bc5635af29b0 Mon Sep 17 00:00:00 2001 From: alexion Date: Sat, 25 Jul 2026 17:38:58 -0400 Subject: [PATCH] feat(agent-skills): add the grill skill Install the grill skill globally from the skills flake, alongside wiki and consume. It interviews the operator relentlessly about a plan or design, resolving every branch to an explicit decision before any implementation. --- modules/agents/skills.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/agents/skills.nix b/modules/agents/skills.nix index 108e080..d3514a0 100644 --- a/modules/agents/skills.nix +++ b/modules/agents/skills.nix @@ -11,9 +11,11 @@ let # The skills installed globally, as derivations from the skills flake. # wiki reads the personal Obsidian vault, and consume mines a source into it. + # grill interviews the operator relentlessly to resolve a plan before building. skills = with inputs.skills.packages.${pkgs.stdenv.hostPlatform.system}; [ wiki consume + grill ]; in {