agentsmesh 0.41.0 → 0.42.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 +36 -0
- package/README.md +2 -2
- package/dist/canonical.js +369 -194
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +267 -258
- package/dist/engine.d.ts +6 -1
- package/dist/engine.js +505 -262
- package/dist/engine.js.map +1 -1
- package/dist/index.js +625 -320
- package/dist/index.js.map +1 -1
- package/dist/lessons.d.ts +5 -0
- package/dist/lessons.js +170 -107
- package/dist/lessons.js.map +1 -1
- package/dist/targets.js +437 -252
- package/dist/targets.js.map +1 -1
- package/package.json +1 -1
package/dist/engine.d.ts
CHANGED
|
@@ -137,7 +137,7 @@ interface LockSyncReport {
|
|
|
137
137
|
readonly lockConflict: boolean;
|
|
138
138
|
/** True when canonical files or extends differ from the lock. */
|
|
139
139
|
readonly canonicalDrift: boolean;
|
|
140
|
-
/** True when a generated output is modified, removed, or stale. */
|
|
140
|
+
/** True when a generated output is modified, removed, or stale, or a target is stale. */
|
|
141
141
|
readonly outputDrift: boolean;
|
|
142
142
|
/** Canonical files whose checksum differs from the lock. */
|
|
143
143
|
readonly modified: readonly string[];
|
|
@@ -158,6 +158,11 @@ interface LockSyncReport {
|
|
|
158
158
|
readonly outputsRemoved: readonly string[];
|
|
159
159
|
/** Managed generated outputs present on disk but absent from the lock. */
|
|
160
160
|
readonly outputsStale: readonly string[];
|
|
161
|
+
/**
|
|
162
|
+
* Enabled targets a `generate --targets` run left out after canonical
|
|
163
|
+
* sources changed, so their outputs were not regenerated from them.
|
|
164
|
+
*/
|
|
165
|
+
readonly staleTargets: readonly string[];
|
|
161
166
|
/**
|
|
162
167
|
* Files inside a managed directory the lock does not claim — the tool's own
|
|
163
168
|
* output or something hand-authored. Informational: deliberately excluded
|