@tickpick/skills 0.1.2 → 0.1.4
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/cli.mjs +3 -0
- package/package.json +2 -5
package/cli.mjs
CHANGED
|
@@ -88,6 +88,9 @@ async function cmdAdd(slug, registryUrl, global) {
|
|
|
88
88
|
|
|
89
89
|
installSkill(slug, content, global);
|
|
90
90
|
|
|
91
|
+
// Record install event (fire-and-forget)
|
|
92
|
+
fetch(`${registryUrl}/${slug}/install`, { method: "POST" }).catch(() => {});
|
|
93
|
+
|
|
91
94
|
// Update manifest
|
|
92
95
|
const manifest = readManifest(global);
|
|
93
96
|
manifest.registry = registryUrl;
|
package/package.json
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tickpick/skills",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Install Claude Code skills shared by the TickPick PM team",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"bin":
|
|
7
|
-
"skills": "./cli.mjs",
|
|
8
|
-
"@tickpick/skills": "./cli.mjs"
|
|
9
|
-
},
|
|
6
|
+
"bin": "./cli.mjs",
|
|
10
7
|
"files": [
|
|
11
8
|
"cli.mjs"
|
|
12
9
|
],
|