agentsmesh 0.16.0 → 0.18.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.
@@ -149,21 +149,33 @@ 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";
164
+ "deepagents-cli": "deepagents-cli";
165
+ "factory-droid": "factory-droid";
160
166
  "gemini-cli": "gemini-cli";
161
167
  goose: "goose";
168
+ jules: "jules";
162
169
  junie: "junie";
163
170
  "kilo-code": "kilo-code";
164
171
  kiro: "kiro";
165
172
  opencode: "opencode";
173
+ "pi-agent": "pi-agent";
174
+ "qwen-code": "qwen-code";
175
+ "replit-agent": "replit-agent";
166
176
  "roo-code": "roo-code";
177
+ rovodev: "rovodev";
178
+ trae: "trae";
167
179
  warp: "warp";
168
180
  windsurf: "windsurf";
169
181
  zed: "zed";
@@ -183,21 +195,33 @@ declare const configSchema: z.ZodObject<{
183
195
  source: z.ZodString;
184
196
  version: z.ZodOptional<z.ZodString>;
185
197
  target: z.ZodOptional<z.ZodEnum<{
198
+ aider: "aider";
199
+ "amazon-q": "amazon-q";
186
200
  amp: "amp";
187
201
  antigravity: "antigravity";
202
+ "augment-code": "augment-code";
188
203
  "claude-code": "claude-code";
189
204
  cline: "cline";
190
205
  "codex-cli": "codex-cli";
191
206
  continue: "continue";
192
207
  copilot: "copilot";
208
+ crush: "crush";
193
209
  cursor: "cursor";
210
+ "deepagents-cli": "deepagents-cli";
211
+ "factory-droid": "factory-droid";
194
212
  "gemini-cli": "gemini-cli";
195
213
  goose: "goose";
214
+ jules: "jules";
196
215
  junie: "junie";
197
216
  "kilo-code": "kilo-code";
198
217
  kiro: "kiro";
199
218
  opencode: "opencode";
219
+ "pi-agent": "pi-agent";
220
+ "qwen-code": "qwen-code";
221
+ "replit-agent": "replit-agent";
200
222
  "roo-code": "roo-code";
223
+ rovodev: "rovodev";
224
+ trae: "trae";
201
225
  warp: "warp";
202
226
  windsurf: "windsurf";
203
227
  zed: "zed";
@@ -1,4 +1,4 @@
1
- import { b as CanonicalFiles, c as CanonicalRule, V as ValidatedConfig } from './schema-CD2qcmDL.js';
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-CvB1qzPn.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-CvB1qzPn.js';
3
- import './schema-CD2qcmDL.js';
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). */