agentsmesh 0.17.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 +104 -0
- package/README.md +61 -45
- package/dist/canonical.d.ts +2 -2
- package/dist/canonical.js +2767 -879
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +146 -140
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +2909 -1091
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2921 -1103
- package/dist/index.js.map +1 -1
- package/dist/{schema-CDrgr5fq.d.ts → schema-B4PYQrZH.d.ts} +12 -0
- package/dist/{target-descriptor-CYgyhcco.d.ts → target-descriptor-XZEis_Js.d.ts} +19 -1
- package/dist/targets.d.ts +3 -3
- package/dist/targets.js +2769 -881
- package/dist/targets.js.map +1 -1
- package/package.json +3 -2
- package/schemas/agentsmesh.json +18 -0
- package/schemas/pack.json +6 -0
|
@@ -161,14 +161,20 @@ declare const configSchema: z.ZodObject<{
|
|
|
161
161
|
copilot: "copilot";
|
|
162
162
|
crush: "crush";
|
|
163
163
|
cursor: "cursor";
|
|
164
|
+
"deepagents-cli": "deepagents-cli";
|
|
165
|
+
"factory-droid": "factory-droid";
|
|
164
166
|
"gemini-cli": "gemini-cli";
|
|
165
167
|
goose: "goose";
|
|
168
|
+
jules: "jules";
|
|
166
169
|
junie: "junie";
|
|
167
170
|
"kilo-code": "kilo-code";
|
|
168
171
|
kiro: "kiro";
|
|
169
172
|
opencode: "opencode";
|
|
173
|
+
"pi-agent": "pi-agent";
|
|
170
174
|
"qwen-code": "qwen-code";
|
|
175
|
+
"replit-agent": "replit-agent";
|
|
171
176
|
"roo-code": "roo-code";
|
|
177
|
+
rovodev: "rovodev";
|
|
172
178
|
trae: "trae";
|
|
173
179
|
warp: "warp";
|
|
174
180
|
windsurf: "windsurf";
|
|
@@ -201,14 +207,20 @@ declare const configSchema: z.ZodObject<{
|
|
|
201
207
|
copilot: "copilot";
|
|
202
208
|
crush: "crush";
|
|
203
209
|
cursor: "cursor";
|
|
210
|
+
"deepagents-cli": "deepagents-cli";
|
|
211
|
+
"factory-droid": "factory-droid";
|
|
204
212
|
"gemini-cli": "gemini-cli";
|
|
205
213
|
goose: "goose";
|
|
214
|
+
jules: "jules";
|
|
206
215
|
junie: "junie";
|
|
207
216
|
"kilo-code": "kilo-code";
|
|
208
217
|
kiro: "kiro";
|
|
209
218
|
opencode: "opencode";
|
|
219
|
+
"pi-agent": "pi-agent";
|
|
210
220
|
"qwen-code": "qwen-code";
|
|
221
|
+
"replit-agent": "replit-agent";
|
|
211
222
|
"roo-code": "roo-code";
|
|
223
|
+
rovodev: "rovodev";
|
|
212
224
|
trae: "trae";
|
|
213
225
|
warp: "warp";
|
|
214
226
|
windsurf: "windsurf";
|
|
@@ -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-B4PYQrZH.js';
|
|
2
2
|
|
|
3
3
|
/** Result of generating files for a target */
|
|
4
4
|
interface GenerateResult {
|
|
@@ -268,6 +268,22 @@ interface TargetLintHooks {
|
|
|
268
268
|
readonly ignore?: FeatureLinter;
|
|
269
269
|
readonly settings?: FeatureLinter;
|
|
270
270
|
}
|
|
271
|
+
/** High-level category for grouping/filtering in docs and UI. */
|
|
272
|
+
type TargetCategory = 'cli' | 'ide' | 'agent-platform';
|
|
273
|
+
/**
|
|
274
|
+
* User-facing metadata for a target. Drives display names, docs, and links in
|
|
275
|
+
* README/website, replacing hardcoded enumerations.
|
|
276
|
+
*/
|
|
277
|
+
interface TargetMetadata {
|
|
278
|
+
/** Human-readable display name, e.g. "Claude Code". */
|
|
279
|
+
readonly displayName: string;
|
|
280
|
+
/** High-level category for filtering. */
|
|
281
|
+
readonly category: TargetCategory;
|
|
282
|
+
/** Official tool homepage or canonical documentation URL. */
|
|
283
|
+
readonly officialUrl: string;
|
|
284
|
+
/** One-line description used in tool lists and tables. */
|
|
285
|
+
readonly shortDescription: string;
|
|
286
|
+
}
|
|
271
287
|
/**
|
|
272
288
|
* Full self-describing target descriptor.
|
|
273
289
|
* Bundles everything needed to generate, import, lint, and detect a target.
|
|
@@ -275,6 +291,8 @@ interface TargetLintHooks {
|
|
|
275
291
|
interface TargetDescriptor {
|
|
276
292
|
/** Unique target identifier, e.g. 'claude-code' */
|
|
277
293
|
readonly id: string;
|
|
294
|
+
/** User-facing metadata (display name, category, URL, description) */
|
|
295
|
+
readonly metadata: TargetMetadata;
|
|
278
296
|
/** Feature generators (rules, commands, agents, etc.) */
|
|
279
297
|
readonly generators: TargetGenerators;
|
|
280
298
|
/** Feature support levels */
|
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-XZEis_Js.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-XZEis_Js.js';
|
|
3
|
+
import './schema-B4PYQrZH.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
/** Register a full target descriptor (for plugins). */
|