@gallopsystems/agent-skills 1.0.0 → 1.0.2
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 +7 -7
- package/package.json +2 -2
- package/scripts/link-skills.mjs +2 -2
package/README.md
CHANGED
|
@@ -6,27 +6,27 @@ A collection of Claude Code skills.
|
|
|
6
6
|
|
|
7
7
|
First, add the marketplace:
|
|
8
8
|
```
|
|
9
|
-
/plugin marketplace add gallop-systems/
|
|
9
|
+
/plugin marketplace add gallop-systems/agent-skills
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
Then install the skills you want:
|
|
13
13
|
```
|
|
14
|
-
/plugin install kysely-postgres@gallop-systems-
|
|
15
|
-
/plugin install nuxt-nitro-api@gallop-systems-
|
|
16
|
-
/plugin install nitro-testing@gallop-systems-
|
|
17
|
-
/plugin install linear@gallop-systems-
|
|
14
|
+
/plugin install kysely-postgres@gallop-systems-agent-skills
|
|
15
|
+
/plugin install nuxt-nitro-api@gallop-systems-agent-skills
|
|
16
|
+
/plugin install nitro-testing@gallop-systems-agent-skills
|
|
17
|
+
/plugin install linear@gallop-systems-agent-skills
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
## Updating
|
|
21
21
|
|
|
22
22
|
Update a specific skill to the latest version:
|
|
23
23
|
```
|
|
24
|
-
/plugin update kysely-postgres@gallop-systems-
|
|
24
|
+
/plugin update kysely-postgres@gallop-systems-agent-skills
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
**Auto-updates:** Third-party marketplaces don't auto-update by default. To enable:
|
|
28
28
|
1. Run `/plugin` and select **Marketplaces**
|
|
29
|
-
2. Choose `gallop-systems-
|
|
29
|
+
2. Choose `gallop-systems-agent-skills`
|
|
30
30
|
3. Select **Enable auto-update**
|
|
31
31
|
|
|
32
32
|
## Install as an npm dependency (per-repo)
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gallopsystems/agent-skills",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Gallop Systems Claude Code skills, symlinked into .claude/skills on install.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/gallop-systems/
|
|
8
|
+
"url": "git+https://github.com/gallop-systems/agent-skills.git"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"plugins",
|
package/scripts/link-skills.mjs
CHANGED
|
@@ -19,8 +19,8 @@ const PKG_DIR_REAL = realOrSelf(PKG_DIR)
|
|
|
19
19
|
const UNLINK = process.argv.includes('--unlink')
|
|
20
20
|
const SKIP_DIRS = new Set(['node_modules', '.git', '.claude'])
|
|
21
21
|
|
|
22
|
-
const log = (msg) => console.log(`[
|
|
23
|
-
const warn = (msg) => console.warn(`[
|
|
22
|
+
const log = (msg) => console.log(`[agent-skills] ${msg}`)
|
|
23
|
+
const warn = (msg) => console.warn(`[agent-skills] ${msg}`)
|
|
24
24
|
|
|
25
25
|
function realOrSelf(p) {
|
|
26
26
|
try {
|