From a067cecee1fdb700b7971c6b6eb0438d31442248 Mon Sep 17 00:00:00 2001 From: naps62 Date: Fri, 24 Jul 2026 18:00:57 +0000 Subject: [PATCH] docs: real repo URL + backup-location note; link.sh backs up outside skills dir --- README.md | 8 ++++---- nix/home.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 54fe160..cd615e5 100644 --- a/README.md +++ b/README.md @@ -19,17 +19,17 @@ 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/agent-skills.git ~/git.naps.pt/naps62/agent-skills -~/git.naps.pt/naps62/agent-skills/bin/link.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 ``` -Symlinks each skill into `~/.claude/skills/` and `~/.agents/skills/`, commands into `~/.claude/commands/`. Idempotent; backs up any pre-existing real dir to `*.bak`. Re-run after adding a skill. +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. ### NixOS machine (home-manager) ```nix # flake inputs -inputs.agent-skills.url = "git+https://git.naps.pt/naps62/agent-skills.git"; +inputs.agent-skills.url = "git+https://git.naps.pt/naps62-yolo/agent-skills.git"; # home config imports imports = [ inputs.agent-skills.homeModules.default ]; diff --git a/nix/home.nix b/nix/home.nix index cc41812..a34123d 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/agent-skills.git"; +# inputs.agent-skills.url = "git+https://git.naps.pt/naps62-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