agentsmesh 0.18.0 → 0.18.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 +24 -0
- package/dist/canonical.js +103 -129
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +130 -130
- package/dist/engine.js +103 -129
- package/dist/engine.js.map +1 -1
- package/dist/index.js +103 -129
- package/dist/index.js.map +1 -1
- package/dist/targets.js +103 -129
- package/dist/targets.js.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentsmesh",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.1",
|
|
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, Windsurf, Antigravity, and Roo Code.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -123,6 +123,7 @@
|
|
|
123
123
|
"test": "vitest run",
|
|
124
124
|
"test:contract": "vitest run tests/contract",
|
|
125
125
|
"flake:check": "tsx scripts/flake-check.ts",
|
|
126
|
+
"flake:watch": "tsx scripts/flake-check-watch.ts",
|
|
126
127
|
"test:watch": "vitest",
|
|
127
128
|
"test:coverage": "COVERAGE=1 vitest run --coverage",
|
|
128
129
|
"test:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts",
|
|
@@ -139,6 +140,6 @@
|
|
|
139
140
|
"publint": "publint",
|
|
140
141
|
"attw": "attw --pack . --profile esm-only",
|
|
141
142
|
"consumer-smoke": "./scripts/consumer-smoke.sh",
|
|
142
|
-
"install-global": "rm -f agentsmesh-*.tgz &&
|
|
143
|
+
"install-global": "rm -f agentsmesh-*.tgz && npm run build && npm pack && (npm uninstall -g agentsmesh 2>/dev/null || true) && npm install -g $(pwd)/agentsmesh-*.tgz"
|
|
143
144
|
}
|
|
144
145
|
}
|