agentsmesh 0.11.0 → 0.13.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 +44 -0
- package/README.md +41 -26
- package/dist/canonical.d.ts +2 -2
- package/dist/canonical.js +2030 -1051
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +131 -130
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +2172 -1187
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2184 -1199
- package/dist/index.js.map +1 -1
- package/dist/{schema-BTitJKiN.d.ts → schema-o4oXUVBP.d.ts} +6 -0
- package/dist/{target-descriptor-D-Y6BzCL.d.ts → target-descriptor--Nw5i4v3.d.ts} +1 -1
- package/dist/targets.d.ts +3 -3
- package/dist/targets.js +2030 -1051
- package/dist/targets.js.map +1 -1
- package/package.json +1 -1
- package/schemas/agentsmesh.json +12 -3
- package/schemas/pack.json +4 -1
|
@@ -149,6 +149,7 @@ 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
|
+
amp: "amp";
|
|
152
153
|
antigravity: "antigravity";
|
|
153
154
|
"claude-code": "claude-code";
|
|
154
155
|
cline: "cline";
|
|
@@ -163,7 +164,9 @@ declare const configSchema: z.ZodObject<{
|
|
|
163
164
|
kiro: "kiro";
|
|
164
165
|
opencode: "opencode";
|
|
165
166
|
"roo-code": "roo-code";
|
|
167
|
+
warp: "warp";
|
|
166
168
|
windsurf: "windsurf";
|
|
169
|
+
zed: "zed";
|
|
167
170
|
}>>>;
|
|
168
171
|
features: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
169
172
|
rules: "rules";
|
|
@@ -180,6 +183,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
180
183
|
source: z.ZodString;
|
|
181
184
|
version: z.ZodOptional<z.ZodString>;
|
|
182
185
|
target: z.ZodOptional<z.ZodEnum<{
|
|
186
|
+
amp: "amp";
|
|
183
187
|
antigravity: "antigravity";
|
|
184
188
|
"claude-code": "claude-code";
|
|
185
189
|
cline: "cline";
|
|
@@ -194,7 +198,9 @@ declare const configSchema: z.ZodObject<{
|
|
|
194
198
|
kiro: "kiro";
|
|
195
199
|
opencode: "opencode";
|
|
196
200
|
"roo-code": "roo-code";
|
|
201
|
+
warp: "warp";
|
|
197
202
|
windsurf: "windsurf";
|
|
203
|
+
zed: "zed";
|
|
198
204
|
}>>;
|
|
199
205
|
features: z.ZodArray<z.ZodEnum<{
|
|
200
206
|
rules: "rules";
|
|
@@ -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-o4oXUVBP.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--Nw5i4v3.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--Nw5i4v3.js';
|
|
3
|
+
import './schema-o4oXUVBP.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
/** Register a full target descriptor (for plugins). */
|