agentsmesh 0.20.0 → 0.22.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.
- package/CHANGELOG.md +70 -0
- package/README.md +14 -1
- package/dist/canonical.js +81 -13
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +206 -162
- package/dist/engine.js +181 -15
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +651 -232
- package/dist/index.js.map +1 -1
- package/dist/lessons.d.ts +155 -0
- package/dist/lessons.js +305 -0
- package/dist/lessons.js.map +1 -0
- package/dist/targets.js +22 -2
- package/dist/targets.js.map +1 -1
- package/package.json +12 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentsmesh",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "One canonical source for AI coding agent rules, commands, skills, MCP, hooks, and permissions — synced across
|
|
3
|
+
"version": "0.22.0",
|
|
4
|
+
"description": "One canonical source for AI coding agent rules, commands, skills, MCP, hooks, and permissions — synced across every major AI coding tool.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -26,6 +26,11 @@
|
|
|
26
26
|
"types": "./dist/targets.d.ts",
|
|
27
27
|
"import": "./dist/targets.js",
|
|
28
28
|
"default": "./dist/targets.js"
|
|
29
|
+
},
|
|
30
|
+
"./lessons": {
|
|
31
|
+
"types": "./dist/lessons.d.ts",
|
|
32
|
+
"import": "./dist/lessons.js",
|
|
33
|
+
"default": "./dist/lessons.js"
|
|
29
34
|
}
|
|
30
35
|
},
|
|
31
36
|
"bin": {
|
|
@@ -89,14 +94,15 @@
|
|
|
89
94
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
90
95
|
"@changesets/cli": "^2.27.12",
|
|
91
96
|
"@eslint/js": "^10.0.1",
|
|
92
|
-
"knip": "^5.66.0",
|
|
93
97
|
"@types/node": "^25.6.0",
|
|
98
|
+
"@types/picomatch": "^4.0.3",
|
|
94
99
|
"@typescript-eslint/eslint-plugin": "^8.58.1",
|
|
95
100
|
"@typescript-eslint/parser": "^8.58.1",
|
|
96
101
|
"@vitest/coverage-v8": "^4.1.4",
|
|
97
102
|
"eslint": "^10.2.0",
|
|
98
103
|
"eslint-plugin-import": "^2.32.0",
|
|
99
104
|
"husky": "^9.1.7",
|
|
105
|
+
"knip": "^5.66.0",
|
|
100
106
|
"lint-staged": "^16.4.0",
|
|
101
107
|
"prettier": "^3.8.2",
|
|
102
108
|
"publint": "^0.3.18",
|
|
@@ -109,6 +115,7 @@
|
|
|
109
115
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
110
116
|
"chokidar": "^5.0.0",
|
|
111
117
|
"diff": "8.0.4",
|
|
118
|
+
"picomatch": "^4.0.4",
|
|
112
119
|
"smol-toml": "^1.6.1",
|
|
113
120
|
"tar": "7.5.13",
|
|
114
121
|
"yaml": "^2.8.3",
|
|
@@ -139,6 +146,8 @@
|
|
|
139
146
|
"schemas:generate": "tsx scripts/generate-schemas.ts",
|
|
140
147
|
"matrix:generate": "tsx scripts/render-support-matrix.ts",
|
|
141
148
|
"matrix:verify": "tsx scripts/render-support-matrix.ts --verify",
|
|
149
|
+
"distill": "tsx scripts/distill-lessons.ts",
|
|
150
|
+
"distill:apply": "tsx scripts/distill-lessons.ts --apply",
|
|
142
151
|
"changeset": "changeset",
|
|
143
152
|
"version": "changeset version",
|
|
144
153
|
"release": "pnpm build && changeset publish",
|