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.
- package/CHANGELOG.md +65 -6
- package/README.md +167 -78
- package/dist/{canonical-types-gdrUi3bD.d.ts → canonical-types-CZwrJoBX.d.ts} +1 -1
- package/dist/canonical.d.ts +3 -2
- package/dist/canonical.js +59 -70
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +453 -17020
- package/dist/engine.d.ts +186 -5
- package/dist/engine.js +1673 -882
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.js +12312 -0
- package/dist/index.js.map +1 -0
- package/dist/{target-descriptor-D64xD0C2.d.ts → target-descriptor-DjHhww11.d.ts} +30 -9
- package/dist/targets.d.ts +4 -3
- package/dist/targets.js +572 -775
- package/dist/targets.js.map +1 -1
- package/package.json +17 -3
- package/schemas/agentsmesh.json +122 -8
- package/dist/cli.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
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
|
-
|
|
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
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
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,
|
|
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 {
|
|
2
|
-
|
|
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 };
|