agentsmesh 0.7.0 → 0.9.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsmesh",
3
- "version": "0.7.0",
3
+ "version": "0.9.0",
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",
@@ -39,7 +39,7 @@
39
39
  "type": "git",
40
40
  "url": "git+https://github.com/sampleXbro/agentsmesh.git"
41
41
  },
42
- "homepage": "https://github.com/sampleXbro/agentsmesh#readme",
42
+ "homepage": "https://samplexbro.github.io/agentsmesh/",
43
43
  "bugs": {
44
44
  "url": "https://github.com/sampleXbro/agentsmesh/issues"
45
45
  },
@@ -114,8 +114,11 @@
114
114
  },
115
115
  "scripts": {
116
116
  "agentsmesh": "node ./dist/cli.js",
117
+ "prebuild": "tsx scripts/generate-target-catalog.ts",
117
118
  "build": "tsup",
118
119
  "pretest": "pnpm build",
120
+ "catalog:generate": "tsx scripts/generate-target-catalog.ts",
121
+ "catalog:verify": "tsx scripts/generate-target-catalog.ts --verify",
119
122
  "test": "vitest run",
120
123
  "test:contract": "vitest run tests/contract",
121
124
  "flake:check": "tsx scripts/flake-check.ts",
@@ -135,6 +138,6 @@
135
138
  "publint": "publint",
136
139
  "attw": "attw --pack . --profile esm-only",
137
140
  "consumer-smoke": "./scripts/consumer-smoke.sh",
138
- "install-global": "pnpm build && pnpm pack && pnpm add -g $(pwd)/agentsmesh-$(node -p 'require(\"./package.json\").version').tgz"
141
+ "install-global": "rm -f agentsmesh-*.tgz && pnpm build && pnpm pack && export PNPM_HOME=${PNPM_HOME:-$HOME/Library/pnpm} && export PATH=$PNPM_HOME:$PATH && pnpm add -g $(pwd)/agentsmesh-$(node -p 'require(\"./package.json\").version').tgz"
139
142
  }
140
143
  }
@@ -8,35 +8,35 @@
8
8
  },
9
9
  "targets": {
10
10
  "default": [
11
+ "antigravity",
11
12
  "claude-code",
12
- "cursor",
13
- "copilot",
13
+ "cline",
14
+ "codex-cli",
14
15
  "continue",
16
+ "copilot",
17
+ "cursor",
18
+ "gemini-cli",
15
19
  "junie",
16
20
  "kiro",
17
- "gemini-cli",
18
- "cline",
19
- "codex-cli",
20
- "windsurf",
21
- "antigravity",
22
- "roo-code"
21
+ "roo-code",
22
+ "windsurf"
23
23
  ],
24
24
  "type": "array",
25
25
  "items": {
26
26
  "type": "string",
27
27
  "enum": [
28
+ "antigravity",
28
29
  "claude-code",
29
- "cursor",
30
- "copilot",
30
+ "cline",
31
+ "codex-cli",
31
32
  "continue",
33
+ "copilot",
34
+ "cursor",
35
+ "gemini-cli",
32
36
  "junie",
33
37
  "kiro",
34
- "gemini-cli",
35
- "cline",
36
- "codex-cli",
37
- "windsurf",
38
- "antigravity",
39
- "roo-code"
38
+ "roo-code",
39
+ "windsurf"
40
40
  ]
41
41
  }
42
42
  },
@@ -84,18 +84,18 @@
84
84
  "target": {
85
85
  "type": "string",
86
86
  "enum": [
87
+ "antigravity",
87
88
  "claude-code",
88
- "cursor",
89
- "copilot",
89
+ "cline",
90
+ "codex-cli",
90
91
  "continue",
92
+ "copilot",
93
+ "cursor",
94
+ "gemini-cli",
91
95
  "junie",
92
96
  "kiro",
93
- "gemini-cli",
94
- "cline",
95
- "codex-cli",
96
- "windsurf",
97
- "antigravity",
98
- "roo-code"
97
+ "roo-code",
98
+ "windsurf"
99
99
  ]
100
100
  },
101
101
  "features": {
package/schemas/pack.json CHANGED
@@ -78,18 +78,18 @@
78
78
  "target": {
79
79
  "type": "string",
80
80
  "enum": [
81
+ "antigravity",
81
82
  "claude-code",
82
- "cursor",
83
- "copilot",
83
+ "cline",
84
+ "codex-cli",
84
85
  "continue",
86
+ "copilot",
87
+ "cursor",
88
+ "gemini-cli",
85
89
  "junie",
86
90
  "kiro",
87
- "gemini-cli",
88
- "cline",
89
- "codex-cli",
90
- "windsurf",
91
- "antigravity",
92
- "roo-code"
91
+ "roo-code",
92
+ "windsurf"
93
93
  ]
94
94
  },
95
95
  "path": {
@@ -149,18 +149,18 @@ interface CanonicalFiles {
149
149
  declare const configSchema: z.ZodObject<{
150
150
  version: z.ZodLiteral<1>;
151
151
  targets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
152
+ antigravity: "antigravity";
152
153
  "claude-code": "claude-code";
153
- cursor: "cursor";
154
- copilot: "copilot";
154
+ cline: "cline";
155
+ "codex-cli": "codex-cli";
155
156
  continue: "continue";
157
+ copilot: "copilot";
158
+ cursor: "cursor";
159
+ "gemini-cli": "gemini-cli";
156
160
  junie: "junie";
157
161
  kiro: "kiro";
158
- "gemini-cli": "gemini-cli";
159
- cline: "cline";
160
- "codex-cli": "codex-cli";
161
- windsurf: "windsurf";
162
- antigravity: "antigravity";
163
162
  "roo-code": "roo-code";
163
+ windsurf: "windsurf";
164
164
  }>>>;
165
165
  features: z.ZodDefault<z.ZodArray<z.ZodEnum<{
166
166
  rules: "rules";
@@ -177,18 +177,18 @@ declare const configSchema: z.ZodObject<{
177
177
  source: z.ZodString;
178
178
  version: z.ZodOptional<z.ZodString>;
179
179
  target: z.ZodOptional<z.ZodEnum<{
180
+ antigravity: "antigravity";
180
181
  "claude-code": "claude-code";
181
- cursor: "cursor";
182
- copilot: "copilot";
182
+ cline: "cline";
183
+ "codex-cli": "codex-cli";
183
184
  continue: "continue";
185
+ copilot: "copilot";
186
+ cursor: "cursor";
187
+ "gemini-cli": "gemini-cli";
184
188
  junie: "junie";
185
189
  kiro: "kiro";
186
- "gemini-cli": "gemini-cli";
187
- cline: "cline";
188
- "codex-cli": "codex-cli";
189
- windsurf: "windsurf";
190
- antigravity: "antigravity";
191
190
  "roo-code": "roo-code";
191
+ windsurf: "windsurf";
192
192
  }>>;
193
193
  features: z.ZodArray<z.ZodEnum<{
194
194
  rules: "rules";