@light-merlin-dark/skill-sync 0.1.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/CHANGELOG.md +13 -0
- package/LICENSE +21 -0
- package/README.md +295 -0
- package/SKILL.md +78 -0
- package/dist/index.js +1713 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@light-merlin-dark/skill-sync",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Sync local repo-backed agent skills across Codex, Claude Code, Cursor, Gemini, Hermes, and other harnesses.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"skill-sync": "dist/index.js",
|
|
9
|
+
"skillsync": "dist/index.js",
|
|
10
|
+
"ss": "dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "bun build ./src/index.ts --target=node --outfile ./dist/index.js && chmod +x dist/index.js",
|
|
14
|
+
"dev": "bun run src/index.ts",
|
|
15
|
+
"lint": "tsc --noEmit -p tsconfig.json",
|
|
16
|
+
"test": "bun test tests/unit tests/integration",
|
|
17
|
+
"test:unit": "bun test tests/unit",
|
|
18
|
+
"test:integration": "bun test tests/integration",
|
|
19
|
+
"prepublishOnly": "npm run lint && npm run test && npm run build"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md",
|
|
24
|
+
"LICENSE",
|
|
25
|
+
"CHANGELOG.md",
|
|
26
|
+
"SKILL.md"
|
|
27
|
+
],
|
|
28
|
+
"keywords": [
|
|
29
|
+
"agent-skills",
|
|
30
|
+
"skills",
|
|
31
|
+
"cli",
|
|
32
|
+
"codex",
|
|
33
|
+
"claude-code",
|
|
34
|
+
"cursor",
|
|
35
|
+
"gemini",
|
|
36
|
+
"hermes",
|
|
37
|
+
"copilot",
|
|
38
|
+
"sync",
|
|
39
|
+
"symlink",
|
|
40
|
+
"developer-tools"
|
|
41
|
+
],
|
|
42
|
+
"author": "Merlin",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "git+https://github.com/light-merlin-dark/skill-sync.git"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://github.com/light-merlin-dark/skill-sync#readme",
|
|
49
|
+
"bugs": {
|
|
50
|
+
"url": "https://github.com/light-merlin-dark/skill-sync/issues"
|
|
51
|
+
},
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"access": "public",
|
|
54
|
+
"registry": "https://registry.npmjs.org/"
|
|
55
|
+
},
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=20.0.0"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"cac": "^6.7.14"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@types/node": "^24.5.2",
|
|
64
|
+
"typescript": "^5.9.2"
|
|
65
|
+
}
|
|
66
|
+
}
|