From 77b2cef22f1ecfa06df8eccb9664eb86d103a089 Mon Sep 17 00:00:00 2001 From: Josh Palmer Date: Mon, 2 Feb 2026 16:24:45 +0100 Subject: [PATCH] Enable coding-agent bundled skill - allow coding-agent in bundled skill allowlist for prod + example config - unblocks coding-agent skill visibility on hosts Tests: not run (config only) --- nix/examples/clawdinator-host.nix | 2 +- nix/hosts/clawdinator-1-common.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/examples/clawdinator-host.nix b/nix/examples/clawdinator-host.nix index ae0ebb2..e216989 100644 --- a/nix/examples/clawdinator-host.nix +++ b/nix/examples/clawdinator-host.nix @@ -45,7 +45,7 @@ identity.name = "CLAWDINATOR-1"; } ]; - skills.allowBundled = [ "github" "clawdhub" ]; + skills.allowBundled = [ "github" "clawdhub" "coding-agent" ]; channels = { discord = { enabled = true; diff --git a/nix/hosts/clawdinator-1-common.nix b/nix/hosts/clawdinator-1-common.nix index 9770221..95faca1 100644 --- a/nix/hosts/clawdinator-1-common.nix +++ b/nix/hosts/clawdinator-1-common.nix @@ -132,7 +132,7 @@ in slots.memory = "none"; entries.discord.enabled = true; }; - skills.allowBundled = [ "github" "clawdhub" ]; + skills.allowBundled = [ "github" "clawdhub" "coding-agent" ]; cron = { enabled = true; store = "/var/lib/clawd/cron-jobs.json";