init: centralized agent skills for Claude Code + Codex

- skills/ shared by both tools (open Agent Skills standard)
- portable cross-skill refs (root-relative, no ~/.claude hardcode)
- bin/link.sh bootstrap for non-Nix machines
- nix/home.nix + flake.nix for home-manager

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014SK5Lo7LQfwLRVdCv1A8uF
This commit is contained in:
naps62
2026-07-24 17:57:56 +00:00
commit f83a247de3
109 changed files with 48638 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
{
description = "naps62 agent skills shared across Claude Code + Codex, all machines";
outputs = { self, ... }: {
# import in your home-manager config's `imports = [ ... ]`
homeModules.default = import ./nix/home.nix { agent-skills = self; };
};
}