agentsmesh 0.38.0 → 0.40.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 +61 -0
- package/README.md +33 -19
- package/dist/canonical.js +1479 -2155
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +282 -280
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +1584 -2358
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1709 -2508
- package/dist/index.js.map +1 -1
- package/dist/{init-z8Dlr5Cm.d.ts → init-B1qdo3Dl.d.ts} +1 -1
- package/dist/lessons.d.ts +2 -2
- package/dist/lessons.js +170 -275
- package/dist/lessons.js.map +1 -1
- package/dist/{target-descriptor-DtgeHKPG.d.ts → target-descriptor-CvTJyDxd.d.ts} +9 -0
- package/dist/targets.d.ts +2 -2
- package/dist/targets.js +1446 -2027
- package/dist/targets.js.map +1 -1
- package/package.json +4 -3
|
@@ -464,6 +464,15 @@ interface TargetDescriptor {
|
|
|
464
464
|
* scaffolded together. Explicit `--target codex-cli` still works.
|
|
465
465
|
*/
|
|
466
466
|
readonly excludeFromStarterInit?: boolean;
|
|
467
|
+
/**
|
|
468
|
+
* When true, this target is part of the minimal set `agentsmesh init` enables
|
|
469
|
+
* when it finds no evidence of any tool — neither config in the project nor
|
|
470
|
+
* an install on the machine. Keep this list very small: it is the footprint a
|
|
471
|
+
* brand-new project gets by default, and `--all-targets` remains one flag
|
|
472
|
+
* away. A target opts in on its own descriptor so the set stays descriptor-
|
|
473
|
+
* driven rather than a hardcoded list in the CLI.
|
|
474
|
+
*/
|
|
475
|
+
readonly minimalInitDefault?: boolean;
|
|
467
476
|
/**
|
|
468
477
|
* Built-in default values for `commands_to_skills` / `agents_to_skills`
|
|
469
478
|
* conversion projections. A `true` value enables conversion by default; an
|
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-CvTJyDxd.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-CvTJyDxd.js';
|
|
3
3
|
import './schema-BbywZEB9.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|