agentsmesh 0.33.0 → 0.34.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 +20 -0
- package/README.md +72 -121
- package/dist/canonical.js +491 -274
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +254 -253
- package/dist/engine.d.ts +1 -1
- package/dist/engine.js +569 -242
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +772 -401
- package/dist/index.js.map +1 -1
- package/dist/{init-rvKjGLTB.d.ts → init-ChDbKSJ0.d.ts} +8 -8
- package/dist/lessons.d.ts +2 -2
- package/dist/lessons.js +1121 -973
- package/dist/lessons.js.map +1 -1
- package/dist/{target-descriptor-DeS4XOtV.d.ts → target-descriptor-DtgeHKPG.d.ts} +7 -0
- package/dist/targets.d.ts +2 -2
- package/dist/targets.js +331 -110
- package/dist/targets.js.map +1 -1
- package/package.json +27 -22
|
@@ -239,6 +239,13 @@ interface TargetManagedOutputs {
|
|
|
239
239
|
* that do write it. A path belongs to exactly one of the two lists.
|
|
240
240
|
*/
|
|
241
241
|
coOwnedFiles?: readonly string[];
|
|
242
|
+
/**
|
|
243
|
+
* Alternate instruction locations the primary root replaces (a pre-migration
|
|
244
|
+
* `.claude/CLAUDE.md`, a nested `.kimi-code/AGENTS.md`). Evicted whenever a
|
|
245
|
+
* run emits the primary root instruction, even without lock provenance, so
|
|
246
|
+
* the tool never loads the same rules twice. Left alone otherwise.
|
|
247
|
+
*/
|
|
248
|
+
supersededFiles?: readonly string[];
|
|
242
249
|
}
|
|
243
250
|
interface TargetLayout {
|
|
244
251
|
/** Primary root instruction artifact for this scope, if any. */
|
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-DtgeHKPG.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-DtgeHKPG.js';
|
|
3
3
|
import './schema-BbywZEB9.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|