agentsmesh 0.3.0 → 0.3.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 +11 -0
- package/README.md +5 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## Next version
|
|
4
4
|
|
|
5
|
+
## 0.3.1 - 2026-04-12
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Refresh direct and transitive dependencies to patched releases, including guarded `pnpm` overrides for vulnerable `vite`, `picomatch`, and `brace-expansion` ranges pulled in through the toolchain.
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Remove the brittle `npm install -g npm@latest` step from the npm trusted-publishing workflow and run the publish job on Node 24 so release automation uses a bundled npm that already satisfies trusted-publishing requirements.
|
|
14
|
+
- Harden `watch` command unit-test wait budgets after the Vitest upgrade so the full suite stays stable under slower CI and coverage runs.
|
|
15
|
+
|
|
5
16
|
## 0.3.0 - 2026-04-12
|
|
6
17
|
|
|
7
18
|
### Added
|
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
1
3
|
# AgentsMesh
|
|
2
4
|
|
|
3
5
|
[](https://github.com/sampleXbro/agentsmesh/actions/workflows/ci.yml)
|
|
@@ -10,8 +12,11 @@
|
|
|
10
12
|
[](https://samplexbro.github.io/agentsmesh)
|
|
11
13
|
[](https://github.com/sampleXbro/agentsmesh/pulls)
|
|
12
14
|
|
|
15
|
+
|
|
13
16
|
AgentsMesh maintains a single canonical configuration in `.agentsmesh/` and syncs it bidirectionally to Claude Code, Cursor, Copilot, Continue, Junie, Kiro, Gemini CLI, Cline, Codex CLI, Windsurf, Antigravity, and Roo Code. Rules, commands, agents, skills, MCP servers, hooks, ignore patterns, and permissions -- all from one source of truth.
|
|
14
17
|
|
|
18
|
+
</div>
|
|
19
|
+
|
|
15
20
|
> **Full documentation: [samplexbro.github.io/agentsmesh](https://samplexbro.github.io/agentsmesh)**
|
|
16
21
|
|
|
17
22
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentsmesh",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.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/cli.js",
|
|
@@ -67,25 +67,25 @@
|
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@changesets/cli": "^2.27.12",
|
|
69
69
|
"@eslint/js": "^10.0.1",
|
|
70
|
-
"@types/node": "^25.
|
|
71
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
72
|
-
"@typescript-eslint/parser": "^8.
|
|
73
|
-
"@vitest/coverage-v8": "^4.
|
|
74
|
-
"eslint": "^10.0
|
|
70
|
+
"@types/node": "^25.6.0",
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^8.58.1",
|
|
72
|
+
"@typescript-eslint/parser": "^8.58.1",
|
|
73
|
+
"@vitest/coverage-v8": "^4.1.4",
|
|
74
|
+
"eslint": "^10.2.0",
|
|
75
75
|
"eslint-plugin-import": "^2.32.0",
|
|
76
76
|
"husky": "^9.1.7",
|
|
77
|
-
"lint-staged": "^16.
|
|
78
|
-
"prettier": "^3.8.
|
|
77
|
+
"lint-staged": "^16.4.0",
|
|
78
|
+
"prettier": "^3.8.2",
|
|
79
79
|
"tsup": "^8.5.1",
|
|
80
80
|
"typescript": "^5.9.3",
|
|
81
|
-
"vitest": "^4.
|
|
81
|
+
"vitest": "^4.1.4"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
84
|
"chokidar": "^5.0.0",
|
|
85
|
-
"diff": "
|
|
86
|
-
"smol-toml": "^1.6.
|
|
87
|
-
"tar": "
|
|
88
|
-
"yaml": "^2.8.
|
|
85
|
+
"diff": "8.0.4",
|
|
86
|
+
"smol-toml": "^1.6.1",
|
|
87
|
+
"tar": "7.5.13",
|
|
88
|
+
"yaml": "^2.8.3",
|
|
89
89
|
"zod": "^4.3.6"
|
|
90
90
|
},
|
|
91
91
|
"scripts": {
|