agentsmesh 0.10.0 → 0.11.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 +24 -0
- package/README.md +22 -22
- package/dist/canonical.d.ts +2 -2
- package/dist/canonical.js +1635 -709
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +119 -118
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +1777 -851
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1789 -863
- package/dist/index.js.map +1 -1
- package/dist/{schema-qelg8gw8.d.ts → schema-BTitJKiN.d.ts} +4 -0
- package/dist/{target-descriptor-Dhdg8s2o.d.ts → target-descriptor-D-Y6BzCL.d.ts} +1 -1
- package/dist/targets.d.ts +3 -3
- package/dist/targets.js +1649 -723
- package/dist/targets.js.map +1 -1
- package/package.json +1 -1
- package/schemas/agentsmesh.json +6 -0
- package/schemas/pack.json +2 -0
|
@@ -157,9 +157,11 @@ declare const configSchema: z.ZodObject<{
|
|
|
157
157
|
copilot: "copilot";
|
|
158
158
|
cursor: "cursor";
|
|
159
159
|
"gemini-cli": "gemini-cli";
|
|
160
|
+
goose: "goose";
|
|
160
161
|
junie: "junie";
|
|
161
162
|
"kilo-code": "kilo-code";
|
|
162
163
|
kiro: "kiro";
|
|
164
|
+
opencode: "opencode";
|
|
163
165
|
"roo-code": "roo-code";
|
|
164
166
|
windsurf: "windsurf";
|
|
165
167
|
}>>>;
|
|
@@ -186,9 +188,11 @@ declare const configSchema: z.ZodObject<{
|
|
|
186
188
|
copilot: "copilot";
|
|
187
189
|
cursor: "cursor";
|
|
188
190
|
"gemini-cli": "gemini-cli";
|
|
191
|
+
goose: "goose";
|
|
189
192
|
junie: "junie";
|
|
190
193
|
"kilo-code": "kilo-code";
|
|
191
194
|
kiro: "kiro";
|
|
195
|
+
opencode: "opencode";
|
|
192
196
|
"roo-code": "roo-code";
|
|
193
197
|
windsurf: "windsurf";
|
|
194
198
|
}>>;
|
|
@@ -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-BTitJKiN.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-D-Y6BzCL.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-D-Y6BzCL.js';
|
|
3
|
+
import './schema-BTitJKiN.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
/** Register a full target descriptor (for plugins). */
|