skill-rules 0.1.0

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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +438 -0
  3. package/dist/index.js +1125 -0
  4. package/package.json +79 -0
package/package.json ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "skill-rules",
3
+ "version": "0.1.0",
4
+ "description": "Sync AI agent skills across Claude Code, Cursor, Windsurf and more — activate per-environment rule sets with one command",
5
+ "type": "module",
6
+ "bin": {
7
+ "skill-rules": "./dist/index.js",
8
+ "sr": "./dist/index.js"
9
+ },
10
+ "engines": {
11
+ "node": ">=20"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "dependencies": {
17
+ "@inkjs/ui": "~2.0.0",
18
+ "commander": "~12.1.0",
19
+ "figures": "~6.1.0",
20
+ "ink": "~5.2.1",
21
+ "react": "~18.3.1"
22
+ },
23
+ "devDependencies": {
24
+ "@eslint/js": "~9.39.0",
25
+ "@vitest/coverage-v8": "~4.1.6",
26
+ "esbuild": "~0.28.0",
27
+ "eslint": "~9.39.0",
28
+ "eslint-plugin-react": "~7.37.5",
29
+ "globals": "~15.15.0",
30
+ "prettier": "~3.8.3",
31
+ "vitest": "~4.1.6"
32
+ },
33
+ "scripts": {
34
+ "build": "node esbuild.config.js",
35
+ "dev": "node esbuild.config.js --watch",
36
+ "start": "node dist/index.js",
37
+ "lint": "eslint src/",
38
+ "lint:fix": "eslint src/ --fix",
39
+ "format": "prettier --write .",
40
+ "format:check": "prettier --check .",
41
+ "test": "vitest run",
42
+ "test:watch": "vitest",
43
+ "test:coverage": "vitest run --coverage",
44
+ "prepare": "npm run build",
45
+ "prepublishOnly": "npm run build"
46
+ },
47
+ "keywords": [
48
+ "skills",
49
+ "ai",
50
+ "agents",
51
+ "claude",
52
+ "claude-code",
53
+ "cursor",
54
+ "windsurf",
55
+ "copilot",
56
+ "github-copilot",
57
+ "cline",
58
+ "openhands",
59
+ "rules",
60
+ "stages",
61
+ "sync",
62
+ "cli",
63
+ "developer-tools"
64
+ ],
65
+ "author": {
66
+ "name": "José Carrillo",
67
+ "email": "m@carrillo.app",
68
+ "url": "https://carrillo.app"
69
+ },
70
+ "repository": {
71
+ "type": "git",
72
+ "url": "git+https://github.com/carrilloapps/skill-rules.git"
73
+ },
74
+ "homepage": "https://github.com/carrilloapps/skill-rules#readme",
75
+ "bugs": {
76
+ "url": "https://github.com/carrilloapps/skill-rules/issues"
77
+ },
78
+ "license": "MIT"
79
+ }