feat: source Pi skills from agent catalog

This commit is contained in:
Tobias Ostner 2026-07-24 20:30:06 +07:00
parent 087cab63de
commit 7aa6e5b0b2
5 changed files with 267 additions and 14 deletions

32
pkgs/tobserver-agent.nix Normal file
View file

@ -0,0 +1,32 @@
{ script
, coreutils
, curl
, findutils
, git
, gitleaks
, gnused
, jq
, nix
, nixpkgs-fmt
, openssh
, writeShellApplication
}:
writeShellApplication {
name = "tobserver-agent";
runtimeInputs = [
coreutils
curl
findutils
git
gitleaks
gnused
jq
nix
nixpkgs-fmt
openssh
];
text = builtins.readFile script;
}