agentsmesh 0.38.0 → 0.40.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 +61 -0
- package/README.md +33 -19
- package/dist/canonical.js +1479 -2155
- package/dist/canonical.js.map +1 -1
- package/dist/cli.js +282 -280
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +1584 -2358
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1709 -2508
- package/dist/index.js.map +1 -1
- package/dist/{init-z8Dlr5Cm.d.ts → init-B1qdo3Dl.d.ts} +1 -1
- package/dist/lessons.d.ts +2 -2
- package/dist/lessons.js +170 -275
- package/dist/lessons.js.map +1 -1
- package/dist/{target-descriptor-DtgeHKPG.d.ts → target-descriptor-CvTJyDxd.d.ts} +9 -0
- package/dist/targets.d.ts +2 -2
- package/dist/targets.js +1446 -2027
- package/dist/targets.js.map +1 -1
- package/package.json +4 -3
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-CvTJyDxd.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -37,7 +37,7 @@ declare function generate(ctx: GenerateContext): Promise<GenerateResult[]>;
|
|
|
37
37
|
* property. Consumers can branch on `err instanceof AgentsMeshError && err.code === 'AM_...'`
|
|
38
38
|
* without relying on error message strings.
|
|
39
39
|
*/
|
|
40
|
-
type AgentsMeshErrorCode = 'AM_CONFIG_NOT_FOUND' | 'AM_CONFIG_INVALID' | 'AM_TARGET_NOT_FOUND' | '
|
|
40
|
+
type AgentsMeshErrorCode = 'AM_CONFIG_NOT_FOUND' | 'AM_CONFIG_INVALID' | 'AM_TARGET_NOT_FOUND' | 'AM_IMPORT_FAILED' | 'AM_GENERATION_FAILED' | 'AM_REMOTE_FETCH_FAILED' | 'AM_LOCK_ACQUISITION_FAILED' | 'AM_FILESYSTEM';
|
|
41
41
|
declare class AgentsMeshError extends Error {
|
|
42
42
|
readonly code: AgentsMeshErrorCode;
|
|
43
43
|
constructor(code: AgentsMeshErrorCode, message: string, options?: {
|