diff --git a/README.md b/README.md index cd615e5..46ed58d 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ Skills are portable: only `name`+`description` frontmatter is required by both t ### Non-Nix machine (e.g. dev VM) ```sh -git clone https://git.naps.pt/naps62-yolo/agent-skills.git ~/git.naps.pt/naps62-yolo/agent-skills -~/git.naps.pt/naps62-yolo/agent-skills/bin/link.sh +git clone https://git.naps.pt/yolo/agent-skills.git ~/git.naps.pt/yolo/agent-skills +~/git.naps.pt/yolo/agent-skills/bin/link.sh ``` Symlinks each skill into `~/.claude/skills/` and `~/.agents/skills/`, commands into `~/.claude/commands/`. Idempotent; any pre-existing real dir is moved to `~/.agent-skills-backup/` (outside the discovery path, so it isn't picked up as a duplicate skill). Re-run after adding a skill. @@ -29,7 +29,7 @@ Symlinks each skill into `~/.claude/skills/` and `~/.agents/skills/`, commands i ```nix # flake inputs -inputs.agent-skills.url = "git+https://git.naps.pt/naps62-yolo/agent-skills.git"; +inputs.agent-skills.url = "git+https://git.naps.pt/yolo/agent-skills.git"; # home config imports imports = [ inputs.agent-skills.homeModules.default ]; diff --git a/nix/home.nix b/nix/home.nix index a34123d..9e4cf94 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -1,7 +1,7 @@ # Home-manager module: link centralized agent skills into Claude Code + Codex. # Usage: add this flake as an input, then import this module in your home config. # -# inputs.agent-skills.url = "git+https://git.naps.pt/naps62-yolo/agent-skills.git"; +# inputs.agent-skills.url = "git+https://git.naps.pt/yolo/agent-skills.git"; # # in home.nix imports: inputs.agent-skills.homeModules.default # # recursive=true links each FILE individually, so machine-local skills can still