Makefile 🔗
@@ -1,4 +1,4 @@
-SKILL_DIR ?= $(HOME)/.config/agents/skills
+SKILL_DIR ?= $(HOME)/.agents/skills
SKILLS := $(patsubst skills/%/,%,$(wildcard skills/*/))
UNINSTALL_TARGETS := $(addprefix uninstall-,$(SKILLS))
Amolith created
Makefile | 2 +-
README.md | 24 ++++++++++++------------
2 files changed, 13 insertions(+), 13 deletions(-)
@@ -1,4 +1,4 @@
-SKILL_DIR ?= $(HOME)/.config/agents/skills
+SKILL_DIR ?= $(HOME)/.agents/skills
SKILLS := $(patsubst skills/%/,%,$(wildcard skills/*/))
UNINSTALL_TARGETS := $(addprefix uninstall-,$(SKILLS))
@@ -173,7 +173,7 @@ cd agent-skills
### With Make
-Skills install to `~/.config/agents/skills/` by default. Override by
+Skills install to `~/.agents/skills/` by default. Override by
setting `SKILL_DIR`. Tab completion works so you don't have to remember
skill names or copy/paste.
@@ -187,8 +187,8 @@ make all
# Install specific skills to Claude Code
SKILL_DIR=$HOME/.claude/skills make authoring-skills formatting-commits
-# Remove a specific skill from Amp
-make uninstall-authoring-skills SKILL_DIR=$HOME/.config/agents/skills
+# Remove a specific skill from the default dir
+make uninstall-authoring-skills
# Remove all skills from Codex
make uninstall SKILL_DIR=$HOME/.codex/skills
@@ -198,23 +198,23 @@ make uninstall SKILL_DIR=$HOME/.codex/skills
```sh
# Install all skills
-for s in skills/*/; do ln -s "$PWD/$s" ~/.config/agents/skills/; done
+for s in skills/*/; do ln -s "$PWD/$s" ~/.agents/skills/; done
# Install specific skills
-ln -s "$PWD/skills/authoring-skills" ~/.config/agents/skills/
+ln -s "$PWD/skills/authoring-skills" ~/.agents/skills/
# Remove a skill
-rm ~/.config/agents/skills/formatting-commits
+rm ~/.agents/skills/formatting-commits
```
### Agent skill directories
-| Agent | Dir |
-| --------------------------------------- | -------------------------- |
-| [Crush], [Octofriend], [Shelley], [Amp] | `~/.config/agents/skills/` |
-| [Pi] | `~/.pi/agent/skills/` |
-| Anthropic's Claude Code | `~/.claude/skills/` |
-| OpenAI's Codex | `~/.codex/skills/` |
+| Agent | Dir |
+| --------------------------------------- | --------------------- |
+| [Crush], [Octofriend], [Shelley], [Amp] | `~/.agents/skills/` |
+| [Pi] | `~/.pi/agent/skills/` |
+| Anthropic's Claude Code | `~/.claude/skills/` |
+| OpenAI's Codex | `~/.codex/skills/` |
## Updating