acek-skills 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/bin/cli.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,8 +65,8 @@ Running `install` with no arguments walks you through three prompts:
|
|
|
65
65
|
◉ sf-testing
|
|
66
66
|
|
|
67
67
|
? Select the target IDE(s) / tool(s)
|
|
68
|
-
◉ Claude Code — project (./.claude/skills
|
|
69
|
-
◯ Claude Code — global (~/.claude/skills
|
|
68
|
+
◉ Claude Code — project (./.claude/skills)
|
|
69
|
+
◯ Claude Code — global (~/.claude/skills)
|
|
70
70
|
◯ Cursor (./.cursor/rules)
|
|
71
71
|
◯ Windsurf (./.windsurf/rules)
|
|
72
72
|
◯ GitHub Copilot (./.github/instructions)
|
|
@@ -122,8 +122,8 @@ The CLI prints a reminder after install if any placeholder was left unresolved.
|
|
|
122
122
|
|
|
123
123
|
| Target | Destination | Trigger behavior |
|
|
124
124
|
|---|---|---|
|
|
125
|
-
| **Claude Code** (project) | `./.claude/skills
|
|
126
|
-
| **Claude Code** (global) | `~/.claude/skills
|
|
125
|
+
| **Claude Code** (project) | `./.claude/skills/<skill>/SKILL.md` | Auto-triggered — Claude reads the `description` frontmatter and invokes the skill only when the task matches |
|
|
126
|
+
| **Claude Code** (global) | `~/.claude/skills/<skill>/SKILL.md` | Same as above, applies across every project on your machine |
|
|
127
127
|
| **Cursor** | `./.cursor/rules/<skill>.mdc` | Project rule (`alwaysApply: false`) — Cursor decides relevance from the `description` field |
|
|
128
128
|
| **Windsurf** | `./.windsurf/rules/<skill>.md` | Cascade rule (`trigger: model_decision`) — same idea, Windsurf's own matching |
|
|
129
129
|
| **GitHub Copilot** | `./.github/instructions/<skill>.instructions.md` | Custom instructions (`applyTo: "**"`) — applied repo-wide, no per-task trigger |
|
package/bin/cli.js
CHANGED
|
@@ -13,14 +13,14 @@ const SKILLS_SRC = path.join(__dirname, '../skills');
|
|
|
13
13
|
// Where each target/tool expects its instruction files, and how to format them.
|
|
14
14
|
const TARGETS = {
|
|
15
15
|
'claude-project': {
|
|
16
|
-
label: 'Claude Code — project (./.claude/skills
|
|
17
|
-
dir: (cwd) => path.join(cwd, '.claude/skills
|
|
16
|
+
label: 'Claude Code — project (./.claude/skills)',
|
|
17
|
+
dir: (cwd) => path.join(cwd, '.claude/skills'),
|
|
18
18
|
format: 'claude',
|
|
19
19
|
selected: true,
|
|
20
20
|
},
|
|
21
21
|
'claude-global': {
|
|
22
|
-
label: 'Claude Code — global (~/.claude/skills
|
|
23
|
-
dir: () => path.join(os.homedir(), '.claude/skills
|
|
22
|
+
label: 'Claude Code — global (~/.claude/skills)',
|
|
23
|
+
dir: () => path.join(os.homedir(), '.claude/skills'),
|
|
24
24
|
format: 'claude',
|
|
25
25
|
selected: false,
|
|
26
26
|
},
|
package/package.json
CHANGED