agentsmesh 0.15.0 → 0.17.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 +42 -0
- package/README.md +24 -24
- package/dist/canonical.d.ts +2 -2
- package/dist/canonical.js +6808 -4402
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +205 -195
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +7133 -4716
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +7145 -4728
- package/dist/index.js.map +1 -1
- package/dist/{schema-o4oXUVBP.d.ts → schema-CDrgr5fq.d.ts} +13 -0
- package/dist/{target-descriptor--Nw5i4v3.d.ts → target-descriptor-CYgyhcco.d.ts} +1 -1
- package/dist/targets.d.ts +3 -3
- package/dist/targets.js +10029 -7793
- package/dist/targets.js.map +1 -1
- package/package.json +1 -1
- package/schemas/agentsmesh.json +21 -0
- package/schemas/pack.json +6 -0
|
@@ -149,13 +149,17 @@ 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
|
+
aider: "aider";
|
|
153
|
+
"amazon-q": "amazon-q";
|
|
152
154
|
amp: "amp";
|
|
153
155
|
antigravity: "antigravity";
|
|
156
|
+
"augment-code": "augment-code";
|
|
154
157
|
"claude-code": "claude-code";
|
|
155
158
|
cline: "cline";
|
|
156
159
|
"codex-cli": "codex-cli";
|
|
157
160
|
continue: "continue";
|
|
158
161
|
copilot: "copilot";
|
|
162
|
+
crush: "crush";
|
|
159
163
|
cursor: "cursor";
|
|
160
164
|
"gemini-cli": "gemini-cli";
|
|
161
165
|
goose: "goose";
|
|
@@ -163,7 +167,9 @@ declare const configSchema: z.ZodObject<{
|
|
|
163
167
|
"kilo-code": "kilo-code";
|
|
164
168
|
kiro: "kiro";
|
|
165
169
|
opencode: "opencode";
|
|
170
|
+
"qwen-code": "qwen-code";
|
|
166
171
|
"roo-code": "roo-code";
|
|
172
|
+
trae: "trae";
|
|
167
173
|
warp: "warp";
|
|
168
174
|
windsurf: "windsurf";
|
|
169
175
|
zed: "zed";
|
|
@@ -183,13 +189,17 @@ declare const configSchema: z.ZodObject<{
|
|
|
183
189
|
source: z.ZodString;
|
|
184
190
|
version: z.ZodOptional<z.ZodString>;
|
|
185
191
|
target: z.ZodOptional<z.ZodEnum<{
|
|
192
|
+
aider: "aider";
|
|
193
|
+
"amazon-q": "amazon-q";
|
|
186
194
|
amp: "amp";
|
|
187
195
|
antigravity: "antigravity";
|
|
196
|
+
"augment-code": "augment-code";
|
|
188
197
|
"claude-code": "claude-code";
|
|
189
198
|
cline: "cline";
|
|
190
199
|
"codex-cli": "codex-cli";
|
|
191
200
|
continue: "continue";
|
|
192
201
|
copilot: "copilot";
|
|
202
|
+
crush: "crush";
|
|
193
203
|
cursor: "cursor";
|
|
194
204
|
"gemini-cli": "gemini-cli";
|
|
195
205
|
goose: "goose";
|
|
@@ -197,7 +207,9 @@ declare const configSchema: z.ZodObject<{
|
|
|
197
207
|
"kilo-code": "kilo-code";
|
|
198
208
|
kiro: "kiro";
|
|
199
209
|
opencode: "opencode";
|
|
210
|
+
"qwen-code": "qwen-code";
|
|
200
211
|
"roo-code": "roo-code";
|
|
212
|
+
trae: "trae";
|
|
201
213
|
warp: "warp";
|
|
202
214
|
windsurf: "windsurf";
|
|
203
215
|
zed: "zed";
|
|
@@ -259,6 +271,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
259
271
|
id: z.ZodString;
|
|
260
272
|
source: z.ZodString;
|
|
261
273
|
version: z.ZodOptional<z.ZodString>;
|
|
274
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
262
275
|
}, z.core.$strict>>>;
|
|
263
276
|
pluginTargets: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
264
277
|
}, z.core.$strip>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as CanonicalFiles, c as CanonicalRule, V as ValidatedConfig } from './schema-
|
|
1
|
+
import { b as CanonicalFiles, c as CanonicalRule, V as ValidatedConfig } from './schema-CDrgr5fq.js';
|
|
2
2
|
|
|
3
3
|
/** Result of generating files for a target */
|
|
4
4
|
interface GenerateResult {
|
package/dist/targets.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { e as TargetDescriptor, h as TargetLayoutScope, C as ContentNormalizer, d as ImportResult } from './target-descriptor
|
|
2
|
-
export { E as ExtraRuleOutputContext, a as ExtraRuleOutputResolver, F as FeatureLinter, b as GeneratedOutputMerger, c as GlobalTargetSupport, I as ImportPathBuilder, R as RuleLinter, S as ScopeExtrasFn, T as TargetCapabilities, f as TargetGenerators, g as TargetLayout, i as TargetLintHooks, j as TargetManagedOutputs, k as TargetOutputFamily, l as TargetPathResolvers } from './target-descriptor
|
|
3
|
-
import './schema-
|
|
1
|
+
import { e as TargetDescriptor, h as TargetLayoutScope, C as ContentNormalizer, d as ImportResult } from './target-descriptor-CYgyhcco.js';
|
|
2
|
+
export { E as ExtraRuleOutputContext, a as ExtraRuleOutputResolver, F as FeatureLinter, b as GeneratedOutputMerger, c as GlobalTargetSupport, I as ImportPathBuilder, R as RuleLinter, S as ScopeExtrasFn, T as TargetCapabilities, f as TargetGenerators, g as TargetLayout, i as TargetLintHooks, j as TargetManagedOutputs, k as TargetOutputFamily, l as TargetPathResolvers } from './target-descriptor-CYgyhcco.js';
|
|
3
|
+
import './schema-CDrgr5fq.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
/** Register a full target descriptor (for plugins). */
|