agentsmesh 0.23.0 → 0.25.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 +54 -0
- package/README.md +14 -13
- package/dist/canonical.js +1988 -1083
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +236 -189
- package/dist/engine.d.ts +1 -1
- package/dist/engine.js +1968 -1061
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2043 -1123
- package/dist/index.js.map +1 -1
- package/dist/{init-YKxF2zpQ.d.ts → init-B0aI-g8W.d.ts} +1 -1
- package/dist/lessons.d.ts +2 -2
- package/dist/lessons.js +73 -60
- package/dist/lessons.js.map +1 -1
- package/dist/{target-descriptor-D6vLDI1w.d.ts → target-descriptor-ItDY3NR0.d.ts} +5 -0
- package/dist/targets.d.ts +2 -2
- package/dist/targets.js +1889 -984
- package/dist/targets.js.map +1 -1
- package/package.json +1 -1
|
@@ -171,6 +171,11 @@ interface ImportFeatureSpec {
|
|
|
171
171
|
readonly markAsRoot?: boolean;
|
|
172
172
|
/** For `flatFile` and `mcpJson`: canonical destination filename. */
|
|
173
173
|
readonly canonicalFilename?: string;
|
|
174
|
+
/**
|
|
175
|
+
* For `mcpJson` mode: the top-level JSON key holding the server map in the
|
|
176
|
+
* source file. Defaults to `mcpServers`. VS Code / Copilot use `servers`.
|
|
177
|
+
*/
|
|
178
|
+
readonly mcpServersKey?: string;
|
|
174
179
|
}
|
|
175
180
|
interface TargetImporterDescriptor {
|
|
176
181
|
readonly rules?: ImportFeatureSpec | readonly ImportFeatureSpec[];
|
package/dist/targets.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
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-
|
|
1
|
+
import { e as TargetDescriptor, h as TargetLayoutScope, C as ContentNormalizer, d as ImportResult } from './target-descriptor-ItDY3NR0.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-ItDY3NR0.js';
|
|
3
3
|
import './schema-CzaoYJlG.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|