From 8fc816bcd9d69da0d6d83d88cbc323df4eae3ba2 Mon Sep 17 00:00:00 2001 From: alexion Date: Sat, 1 Aug 2026 18:17:23 -0400 Subject: [PATCH] feat(agents): enable subagents skill --- flake.lock | 8 ++++---- modules/agents/skills.nix | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index 8a0decf..a7c9725 100644 --- a/flake.lock +++ b/flake.lock @@ -562,11 +562,11 @@ ] }, "locked": { - "lastModified": 1785600727, - "narHash": "sha256-7Bbj3C+1jyf+YXvUiovCa5t/aCk7BodNf4kV4aZ1Hpw=", + "lastModified": 1785622772, + "narHash": "sha256-0mOr+Jxerr4SU1ksLoSkztYlZ9P/nMB6RlgWygoCHWc=", "ref": "refs/heads/main", - "rev": "346413cd7de5e7d03baea09eb935409cfe6eeaa9", - "revCount": 49, + "rev": "40b16b87963b085817bfb82c26eef7d0408fa8a5", + "revCount": 52, "type": "git", "url": "https://git.alexion.dev/alexion/skills" }, diff --git a/modules/agents/skills.nix b/modules/agents/skills.nix index 9dde7eb..af34eff 100644 --- a/modules/agents/skills.nix +++ b/modules/agents/skills.nix @@ -12,7 +12,7 @@ let # The skills installed globally, as derivations from the skills flake. # grill interviews the operator relentlessly to resolve a plan before building. # design-skill drafts and audits Agent Skills for structural predictability. - # wayfinder, research, prototype, and slice guide work from exploration through implementation tickets. + # wayfinder, research, prototype, slice, and subagents guide work from exploration through implementation tickets and delegation. # implement, test-driven-development, and review guide execution and validation once tickets are ready. skills = with inputs.skills.packages.${pkgs.stdenv.hostPlatform.system}; [ grill @@ -21,6 +21,7 @@ let research prototype slice + subagents implement test-driven-development review