agentsmesh 0.40.0 → 0.41.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 +75 -0
- package/README.md +1 -1
- package/dist/canonical.js +299 -238
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +271 -332
- package/dist/engine.d.ts +7 -8
- package/dist/engine.js +771 -276
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1733 -521
- package/dist/index.js.map +1 -1
- package/dist/{init-B1qdo3Dl.d.ts → init-DruMEhnc.d.ts} +97 -42
- package/dist/lessons.d.ts +7 -4
- package/dist/lessons.js +2091 -613
- package/dist/lessons.js.map +1 -1
- package/dist/{target-descriptor-CvTJyDxd.d.ts → target-descriptor-CMV6vxVE.d.ts} +7 -0
- package/dist/targets.d.ts +2 -2
- package/dist/targets.js +265 -219
- package/dist/targets.js.map +1 -1
- package/package.json +3 -2
package/dist/engine.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
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-
|
|
2
|
+
import { G as GenerateResult, h as TargetLayoutScope, L as LintDiagnostic, d as ImportResult } from './target-descriptor-CMV6vxVE.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -125,17 +125,16 @@ interface ComputeDiffResult {
|
|
|
125
125
|
*/
|
|
126
126
|
declare function formatDiffSummary(summary: DiffSummary): string;
|
|
127
127
|
|
|
128
|
-
/**
|
|
129
|
-
* Pure lock-vs-current drift detection used by `agentsmesh check` and the
|
|
130
|
-
* public Programmatic API. The CLI command formats and exits; this helper
|
|
131
|
-
* returns a structured report.
|
|
132
|
-
*/
|
|
133
|
-
|
|
134
128
|
interface LockSyncReport {
|
|
135
129
|
/** True when canonical state and checked generated outputs are all in sync. */
|
|
136
130
|
readonly inSync: boolean;
|
|
137
|
-
/** True when a `.lock` file was found at the canonical directory. */
|
|
131
|
+
/** True when a readable `.lock` file was found at the canonical directory. */
|
|
138
132
|
readonly hasLock: boolean;
|
|
133
|
+
/**
|
|
134
|
+
* True when the `.lock` file has git conflict markers, so it cannot be read
|
|
135
|
+
* (`hasLock` is false). `agentsmesh merge` rebuilds it.
|
|
136
|
+
*/
|
|
137
|
+
readonly lockConflict: boolean;
|
|
139
138
|
/** True when canonical files or extends differ from the lock. */
|
|
140
139
|
readonly canonicalDrift: boolean;
|
|
141
140
|
/** True when a generated output is modified, removed, or stale. */
|