agentsmesh 0.21.0 → 0.23.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 +244 -0
- package/README.md +71 -9
- package/dist/canonical.d.ts +2 -2
- package/dist/canonical.js +339 -46
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +276 -223
- package/dist/engine.d.ts +5 -2
- package/dist/engine.js +1350 -87
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2993 -439
- package/dist/index.js.map +1 -1
- package/dist/init-YKxF2zpQ.d.ts +494 -0
- package/dist/lessons.d.ts +106 -0
- package/dist/lessons.js +2764 -0
- package/dist/lessons.js.map +1 -0
- package/dist/{schema-CLmR2JOb.d.ts → schema-CzaoYJlG.d.ts} +9 -1
- package/dist/{target-descriptor-CkLWz3Xk.d.ts → target-descriptor-D6vLDI1w.d.ts} +62 -2
- package/dist/targets.d.ts +3 -3
- package/dist/targets.js +293 -32
- package/dist/targets.js.map +1 -1
- package/package.json +9 -2
- package/schemas/installs.json +12 -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-CzaoYJlG.js';
|
|
2
|
+
import { G as GenerateResult, h as TargetLayoutScope, L as LintDiagnostic, d as ImportResult } from './target-descriptor-D6vLDI1w.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -84,8 +84,11 @@ declare class RemoteFetchError extends AgentsMeshError {
|
|
|
84
84
|
declare class LockAcquisitionError extends AgentsMeshError {
|
|
85
85
|
readonly lockPath: string;
|
|
86
86
|
readonly holder: string;
|
|
87
|
+
/** Human-readable lock name surfaced in the message, e.g. "lessons lock". */
|
|
88
|
+
readonly label: string;
|
|
87
89
|
constructor(lockPath: string, holder: string, options?: {
|
|
88
90
|
cause?: unknown;
|
|
91
|
+
label?: string;
|
|
89
92
|
});
|
|
90
93
|
}
|
|
91
94
|
declare class FileSystemError extends AgentsMeshError {
|