agentsmesh 0.9.0 → 0.10.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 +23 -0
- package/README.md +25 -23
- package/dist/canonical.d.ts +2 -2
- package/dist/canonical.js +1095 -406
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +125 -120
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +1209 -517
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1221 -529
- package/dist/index.js.map +1 -1
- package/dist/{schema-BeGiBqbB.d.ts → schema-qelg8gw8.d.ts} +2 -0
- package/dist/{target-descriptor-CkH4Z43u.d.ts → target-descriptor-Dhdg8s2o.d.ts} +1 -1
- package/dist/targets.d.ts +3 -3
- package/dist/targets.js +1060 -388
- package/dist/targets.js.map +1 -1
- package/package.json +2 -2
- package/schemas/agentsmesh.json +3 -0
- package/schemas/pack.json +1 -0
|
@@ -158,6 +158,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
158
158
|
cursor: "cursor";
|
|
159
159
|
"gemini-cli": "gemini-cli";
|
|
160
160
|
junie: "junie";
|
|
161
|
+
"kilo-code": "kilo-code";
|
|
161
162
|
kiro: "kiro";
|
|
162
163
|
"roo-code": "roo-code";
|
|
163
164
|
windsurf: "windsurf";
|
|
@@ -186,6 +187,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
186
187
|
cursor: "cursor";
|
|
187
188
|
"gemini-cli": "gemini-cli";
|
|
188
189
|
junie: "junie";
|
|
190
|
+
"kilo-code": "kilo-code";
|
|
189
191
|
kiro: "kiro";
|
|
190
192
|
"roo-code": "roo-code";
|
|
191
193
|
windsurf: "windsurf";
|
|
@@ -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-qelg8gw8.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-Dhdg8s2o.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-Dhdg8s2o.js';
|
|
3
|
+
import './schema-qelg8gw8.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
/** Register a full target descriptor (for plugins). */
|