agentsmesh 0.2.1 → 0.2.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/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/dist/cli.js +206 -55
- package/dist/cli.js.map +1 -1
- package/package.json +22 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentsmesh",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "One canonical source for AI coding agent rules, commands, skills, MCP, hooks, and permissions — synced across Claude Code, Cursor, Copilot, Continue, Junie, Gemini CLI, Cline, Codex CLI, and Windsurf.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cli.js",
|
|
@@ -17,29 +17,12 @@
|
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "https://github.com/sampleXbro/agentsmesh.git"
|
|
20
|
+
"url": "git+https://github.com/sampleXbro/agentsmesh.git"
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/sampleXbro/agentsmesh#readme",
|
|
23
23
|
"bugs": {
|
|
24
24
|
"url": "https://github.com/sampleXbro/agentsmesh/issues"
|
|
25
25
|
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"agentsmesh": "node ./dist/cli.js",
|
|
28
|
-
"build": "tsup",
|
|
29
|
-
"pretest": "pnpm build",
|
|
30
|
-
"test": "vitest run",
|
|
31
|
-
"test:watch": "vitest",
|
|
32
|
-
"test:coverage": "vitest run --coverage",
|
|
33
|
-
"test:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts",
|
|
34
|
-
"lint": "eslint src/",
|
|
35
|
-
"format": "prettier --write src/",
|
|
36
|
-
"format:check": "prettier --check src/",
|
|
37
|
-
"prepare": "husky",
|
|
38
|
-
"typecheck": "tsc --noEmit",
|
|
39
|
-
"changeset": "changeset",
|
|
40
|
-
"version": "changeset version",
|
|
41
|
-
"release": "pnpm build && changeset publish"
|
|
42
|
-
},
|
|
43
26
|
"keywords": [
|
|
44
27
|
"ai-rules",
|
|
45
28
|
"ai-agents",
|
|
@@ -69,6 +52,10 @@
|
|
|
69
52
|
"cli"
|
|
70
53
|
],
|
|
71
54
|
"license": "MIT",
|
|
55
|
+
"publishConfig": {
|
|
56
|
+
"access": "public",
|
|
57
|
+
"provenance": true
|
|
58
|
+
},
|
|
72
59
|
"files": [
|
|
73
60
|
"dist",
|
|
74
61
|
"README.md",
|
|
@@ -99,9 +86,20 @@
|
|
|
99
86
|
"yaml": "^2.8.2",
|
|
100
87
|
"zod": "^4.3.6"
|
|
101
88
|
},
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
|
|
105
|
-
|
|
89
|
+
"scripts": {
|
|
90
|
+
"agentsmesh": "node ./dist/cli.js",
|
|
91
|
+
"build": "tsup",
|
|
92
|
+
"pretest": "pnpm build",
|
|
93
|
+
"test": "vitest run",
|
|
94
|
+
"test:watch": "vitest",
|
|
95
|
+
"test:coverage": "vitest run --coverage",
|
|
96
|
+
"test:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts",
|
|
97
|
+
"lint": "eslint src/",
|
|
98
|
+
"format": "prettier --write src/",
|
|
99
|
+
"format:check": "prettier --check src/",
|
|
100
|
+
"typecheck": "tsc --noEmit",
|
|
101
|
+
"changeset": "changeset",
|
|
102
|
+
"version": "changeset version",
|
|
103
|
+
"release": "pnpm build && changeset publish"
|
|
106
104
|
}
|
|
107
|
-
}
|
|
105
|
+
}
|