synskill 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.
Files changed (3) hide show
  1. package/README.md +69 -0
  2. package/bin/synskill.js +2259 -0
  3. package/package.json +33 -0
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "synskill",
3
+ "version": "0.1.4",
4
+ "private": false,
5
+ "description": "CLI installer for private agent skills.",
6
+ "license": "UNLICENSED",
7
+ "files": [
8
+ "bin",
9
+ "README.md"
10
+ ],
11
+ "scripts": {
12
+ "build": "node scripts/bundle-cli.js",
13
+ "synskill": "node src/synskill.js",
14
+ "test": "node --test tests/*.test.js",
15
+ "prepack": "node scripts/manage-pack-readme.js prepack",
16
+ "postpack": "node scripts/manage-pack-readme.js postpack",
17
+ "prepublishOnly": "npm run build && npm test"
18
+ },
19
+ "bin": {
20
+ "synskill": "bin/synskill.js"
21
+ },
22
+ "engines": {
23
+ "node": ">=18"
24
+ },
25
+ "devDependencies": {
26
+ "@clack/prompts": "^0.11.0",
27
+ "esbuild": "^0.20.2",
28
+ "picocolors": "^1.1.1"
29
+ },
30
+ "dependencies": {
31
+ "markdown-it": "^14.1.1"
32
+ }
33
+ }