agentsmesh 0.32.0 → 0.33.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 +315 -0
- package/README.md +29 -28
- package/dist/canonical.d.ts +2 -2
- package/dist/canonical.js +16467 -9745
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +283 -229
- package/dist/engine.d.ts +8 -2
- package/dist/engine.js +12360 -5565
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +12420 -5609
- package/dist/index.js.map +1 -1
- package/dist/{init-CrZhoNTj.d.ts → init-rvKjGLTB.d.ts} +1 -1
- package/dist/lessons.d.ts +10 -2
- package/dist/lessons.js +265 -106
- package/dist/lessons.js.map +1 -1
- package/dist/{schema-CH_JJep8.d.ts → schema-BbywZEB9.d.ts} +6 -0
- package/dist/{target-descriptor-CaLUz7SR.d.ts → target-descriptor-DeS4XOtV.d.ts} +15 -2
- package/dist/targets.d.ts +3 -3
- package/dist/targets.js +16536 -9713
- package/dist/targets.js.map +1 -1
- package/package.json +2 -2
- package/schemas/agentsmesh.json +9 -0
- package/schemas/installs.json +3 -0
- package/schemas/pack.json +3 -0
package/dist/engine.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { V as ValidatedConfig, b as CanonicalFiles } from './schema-
|
|
2
|
-
import { G as GenerateResult, h as TargetLayoutScope, L as LintDiagnostic, d as ImportResult } from './target-descriptor-
|
|
1
|
+
import { V as ValidatedConfig, b as CanonicalFiles } from './schema-BbywZEB9.js';
|
|
2
|
+
import { G as GenerateResult, h as TargetLayoutScope, L as LintDiagnostic, d as ImportResult } from './target-descriptor-DeS4XOtV.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -159,6 +159,12 @@ interface LockSyncReport {
|
|
|
159
159
|
readonly outputsRemoved: readonly string[];
|
|
160
160
|
/** Managed generated outputs present on disk but absent from the lock. */
|
|
161
161
|
readonly outputsStale: readonly string[];
|
|
162
|
+
/**
|
|
163
|
+
* Files inside a managed directory the lock does not claim — the tool's own
|
|
164
|
+
* output or something hand-authored. Informational: deliberately excluded
|
|
165
|
+
* from `outputDrift` and `inSync`, because `generate` cannot remove them.
|
|
166
|
+
*/
|
|
167
|
+
readonly outputsUntracked: readonly string[];
|
|
162
168
|
/**
|
|
163
169
|
* True when output drift was actually verified — requires `rootBase` and a
|
|
164
170
|
* lock with an `outputs` map. False for old-format locks or when no
|