agentsmesh 0.5.0 → 0.6.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.
@@ -1,4 +1,4 @@
1
- import { C as CanonicalFiles, a as CanonicalRule } from './canonical-types-gdrUi3bD.js';
1
+ import { b as CanonicalFiles, c as CanonicalRule } from './canonical-types-CZwrJoBX.js';
2
2
  import { z } from 'zod';
3
3
 
4
4
  /** Result of generating files for a target */
@@ -111,15 +111,36 @@ declare const configSchema: z.ZodObject<{
111
111
  }, z.core.$strip>>;
112
112
  conversions: z.ZodOptional<z.ZodObject<{
113
113
  commands_to_skills: z.ZodOptional<z.ZodObject<{
114
- 'codex-cli': z.ZodOptional<z.ZodBoolean>;
115
- }, z.core.$strict>>;
114
+ 'codex-cli': z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodObject<{
115
+ project: z.ZodOptional<z.ZodBoolean>;
116
+ global: z.ZodOptional<z.ZodBoolean>;
117
+ }, z.core.$strict>]>>;
118
+ }, z.core.$loose>>;
116
119
  agents_to_skills: z.ZodOptional<z.ZodObject<{
117
- 'gemini-cli': z.ZodOptional<z.ZodBoolean>;
118
- cline: z.ZodOptional<z.ZodBoolean>;
119
- 'codex-cli': z.ZodOptional<z.ZodBoolean>;
120
- windsurf: z.ZodOptional<z.ZodBoolean>;
121
- }, z.core.$strict>>;
120
+ 'gemini-cli': z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodObject<{
121
+ project: z.ZodOptional<z.ZodBoolean>;
122
+ global: z.ZodOptional<z.ZodBoolean>;
123
+ }, z.core.$strict>]>>;
124
+ cline: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodObject<{
125
+ project: z.ZodOptional<z.ZodBoolean>;
126
+ global: z.ZodOptional<z.ZodBoolean>;
127
+ }, z.core.$strict>]>>;
128
+ 'codex-cli': z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodObject<{
129
+ project: z.ZodOptional<z.ZodBoolean>;
130
+ global: z.ZodOptional<z.ZodBoolean>;
131
+ }, z.core.$strict>]>>;
132
+ windsurf: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodObject<{
133
+ project: z.ZodOptional<z.ZodBoolean>;
134
+ global: z.ZodOptional<z.ZodBoolean>;
135
+ }, z.core.$strict>]>>;
136
+ }, z.core.$loose>>;
122
137
  }, z.core.$strict>>;
138
+ plugins: z.ZodDefault<z.ZodArray<z.ZodObject<{
139
+ id: z.ZodString;
140
+ source: z.ZodString;
141
+ version: z.ZodOptional<z.ZodString>;
142
+ }, z.core.$strict>>>;
143
+ pluginTargets: z.ZodDefault<z.ZodArray<z.ZodString>>;
123
144
  }, z.core.$strip>;
124
145
  type ValidatedConfig = z.infer<typeof configSchema>;
125
146
 
@@ -340,4 +361,4 @@ interface TargetDescriptor {
340
361
  }[]>;
341
362
  }
342
363
 
343
- export type { GenerateResult as G, ImportResult as I, TargetLayoutScope as T, ValidatedConfig as V, TargetDescriptor as a };
364
+ export type { FeatureLinter as F, GenerateResult as G, ImportPathBuilder as I, LintDiagnostic as L, RuleLinter as R, ScopeExtrasFn as S, TargetCapabilities as T, ValidatedConfig as V, GlobalTargetSupport as a, ImportResult as b, TargetDescriptor as c, TargetGenerators as d, TargetLayout as e, TargetLayoutScope as f, TargetLintHooks as g, TargetManagedOutputs as h, TargetOutputFamily as i, TargetPathResolvers as j };
package/dist/targets.d.ts CHANGED
@@ -1,5 +1,6 @@
1
- import { a as TargetDescriptor } from './target-descriptor-D64xD0C2.js';
2
- import './canonical-types-gdrUi3bD.js';
1
+ import { c as TargetDescriptor } from './target-descriptor-DjHhww11.js';
2
+ export { F as FeatureLinter, a as GlobalTargetSupport, I as ImportPathBuilder, R as RuleLinter, S as ScopeExtrasFn, T as TargetCapabilities, d as TargetGenerators, e as TargetLayout, f as TargetLayoutScope, g as TargetLintHooks, h as TargetManagedOutputs, i as TargetOutputFamily, j as TargetPathResolvers } from './target-descriptor-DjHhww11.js';
3
+ import './canonical-types-CZwrJoBX.js';
3
4
  import 'zod';
4
5
 
5
6
  /** Register a full target descriptor (for plugins). */
@@ -14,4 +15,4 @@ declare function getAllDescriptors(): TargetDescriptor[];
14
15
 
15
16
  declare function getTargetCatalog(): readonly TargetDescriptor[];
16
17
 
17
- export { getAllDescriptors, getDescriptor, getTargetCatalog, registerTargetDescriptor };
18
+ export { TargetDescriptor, getAllDescriptors, getDescriptor, getTargetCatalog, registerTargetDescriptor };