@xemahq/kernel-contracts 0.7.0 → 0.8.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/dist/agent-composition/index.d.ts +3 -3
- package/dist/agent-composition/index.d.ts.map +1 -1
- package/dist/agent-composition/index.js +3 -3
- package/dist/agent-composition/index.js.map +1 -1
- package/dist/agent-composition/lib/agent-limits-schema.d.ts +4 -0
- package/dist/agent-composition/lib/agent-limits-schema.d.ts.map +1 -0
- package/dist/agent-composition/lib/agent-limits-schema.js +13 -0
- package/dist/agent-composition/lib/agent-limits-schema.js.map +1 -0
- package/dist/agent-composition/lib/agent-workspace-config.d.ts +37 -0
- package/dist/agent-composition/lib/agent-workspace-config.d.ts.map +1 -0
- package/dist/agent-composition/lib/agent-workspace-config.js +9 -0
- package/dist/agent-composition/lib/agent-workspace-config.js.map +1 -0
- package/dist/agent-composition/lib/agent.d.ts +65 -0
- package/dist/agent-composition/lib/agent.d.ts.map +1 -0
- package/dist/agent-composition/lib/agent.js +18 -0
- package/dist/agent-composition/lib/agent.js.map +1 -0
- package/dist/agent-workspace/awp-spec.json +1 -1
- package/dist/biome/lib/biome-manifest.d.ts +887 -27
- package/dist/biome/lib/biome-manifest.d.ts.map +1 -1
- package/dist/biome/lib/biome-manifest.js +516 -20
- package/dist/biome/lib/biome-manifest.js.map +1 -1
- package/dist/resource/index.d.ts +7 -0
- package/dist/resource/index.d.ts.map +1 -0
- package/dist/resource/index.js +23 -0
- package/dist/resource/index.js.map +1 -0
- package/dist/resource/lib/plan.d.ts +31 -0
- package/dist/resource/lib/plan.d.ts.map +1 -0
- package/dist/resource/lib/plan.js +32 -0
- package/dist/resource/lib/plan.js.map +1 -0
- package/dist/resource/lib/resource-declaration.d.ts +15 -0
- package/dist/resource/lib/resource-declaration.d.ts.map +1 -0
- package/dist/resource/lib/resource-declaration.js +32 -0
- package/dist/resource/lib/resource-declaration.js.map +1 -0
- package/dist/resource/lib/resource-kind.d.ts +20 -0
- package/dist/resource/lib/resource-kind.d.ts.map +1 -0
- package/dist/resource/lib/resource-kind.js +24 -0
- package/dist/resource/lib/resource-kind.js.map +1 -0
- package/dist/resource/lib/resource-managed-by.d.ts +9 -0
- package/dist/resource/lib/resource-managed-by.d.ts.map +1 -0
- package/dist/resource/lib/resource-managed-by.js +13 -0
- package/dist/resource/lib/resource-managed-by.js.map +1 -0
- package/dist/resource/lib/stack.d.ts +22 -0
- package/dist/resource/lib/stack.d.ts.map +1 -0
- package/dist/resource/lib/stack.js +23 -0
- package/dist/resource/lib/stack.js.map +1 -0
- package/dist/resource/lib/xema-manifest.d.ts +11 -0
- package/dist/resource/lib/xema-manifest.d.ts.map +1 -0
- package/dist/resource/lib/xema-manifest.js +47 -0
- package/dist/resource/lib/xema-manifest.js.map +1 -0
- package/package.json +1 -1
- package/src/agent-composition/index.ts +3 -3
- package/src/agent-composition/lib/{composition-limits-schema.ts → agent-limits-schema.ts} +1 -1
- package/src/agent-composition/lib/{composition.ts → agent.ts} +1 -1
- package/src/biome/lib/biome-manifest.ts +1158 -66
- package/src/invocation/lib/invoke-request.ts +1 -1
- package/src/invocation/lib/invoke-response.ts +1 -1
- package/src/resource/index.ts +22 -0
- package/src/resource/lib/plan.ts +83 -0
- package/src/resource/lib/resource-declaration.ts +67 -0
- package/src/resource/lib/resource-kind.ts +37 -0
- package/src/resource/lib/resource-managed-by.ts +29 -0
- package/src/resource/lib/stack.ts +61 -0
- package/src/resource/lib/xema-manifest.ts +86 -0
- /package/src/agent-composition/lib/{composition-workspace.ts → agent-workspace-config.ts} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * from './lib/capability-layer';
|
|
2
|
-
export * from './lib/
|
|
3
|
-
export * from './lib/
|
|
4
|
-
export * from './lib/
|
|
2
|
+
export * from './lib/agent';
|
|
3
|
+
export * from './lib/agent-limits-schema';
|
|
4
|
+
export * from './lib/agent-workspace-config';
|
|
5
5
|
export * from './lib/intrinsic-floor';
|
|
6
6
|
export * from './lib/invocation-overlay';
|
|
7
7
|
export * from './lib/model-resolution-matrix';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/agent-composition/index.ts"],"names":[],"mappings":"AAWA,cAAc,wBAAwB,CAAC;AACvC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/agent-composition/index.ts"],"names":[],"mappings":"AAWA,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC"}
|
|
@@ -15,9 +15,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./lib/capability-layer"), exports);
|
|
18
|
-
__exportStar(require("./lib/
|
|
19
|
-
__exportStar(require("./lib/
|
|
20
|
-
__exportStar(require("./lib/
|
|
18
|
+
__exportStar(require("./lib/agent"), exports);
|
|
19
|
+
__exportStar(require("./lib/agent-limits-schema"), exports);
|
|
20
|
+
__exportStar(require("./lib/agent-workspace-config"), exports);
|
|
21
21
|
__exportStar(require("./lib/intrinsic-floor"), exports);
|
|
22
22
|
__exportStar(require("./lib/invocation-overlay"), exports);
|
|
23
23
|
__exportStar(require("./lib/model-resolution-matrix"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/agent-composition/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAWA,yDAAuC;AACvC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/agent-composition/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAWA,yDAAuC;AACvC,8CAA4B;AAC5B,4DAA0C;AAC1C,+DAA6C;AAC7C,wDAAsC;AACtC,2DAAyC;AACzC,gEAA8C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-limits-schema.d.ts","sourceRoot":"","sources":["../../../src/agent-composition/lib/agent-limits-schema.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAS3C,eAAO,MAAM,iBAAiB,EAAE,CAAC,CAAC,OAAO,CAAC,WAAW,CAO1C,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AgentLimitsSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
exports.AgentLimitsSchema = zod_1.z
|
|
6
|
+
.object({
|
|
7
|
+
maxDepth: zod_1.z.number().int().positive(),
|
|
8
|
+
maxFanout: zod_1.z.number().int().positive(),
|
|
9
|
+
maxSpawns: zod_1.z.number().int().positive(),
|
|
10
|
+
tokenBudget: zod_1.z.number().int().positive().optional(),
|
|
11
|
+
})
|
|
12
|
+
.strict();
|
|
13
|
+
//# sourceMappingURL=agent-limits-schema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-limits-schema.js","sourceRoot":"","sources":["../../../src/agent-composition/lib/agent-limits-schema.ts"],"names":[],"mappings":";;;AAmBA,6BAAwB;AAWX,QAAA,iBAAiB,GAA2B,OAAC;KACvD,MAAM,CAAC;IACN,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACrC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACtC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACtC,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACpD,CAAC;KACD,MAAM,EAAE,CAAC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { WorkingFileBinding, WorkspaceEnvVar, WorkspacePersistenceSpec } from '../../agent-workspace';
|
|
2
|
+
import type { AgentRunRole, CompiledManifestCredential, CompiledManifestPermissions, OutputSurfaceKind } from '../../workflow';
|
|
3
|
+
export type { WorkingFileBinding, WorkspaceEnvVar, WorkspacePersistenceSpec, } from '../../agent-workspace';
|
|
4
|
+
export declare enum AgentOutputSurfaceMode {
|
|
5
|
+
Single = "single",
|
|
6
|
+
Multi = "multi"
|
|
7
|
+
}
|
|
8
|
+
export interface AgentOutputSurface {
|
|
9
|
+
readonly kind: OutputSurfaceKind;
|
|
10
|
+
readonly port?: number;
|
|
11
|
+
readonly healthPath?: string;
|
|
12
|
+
readonly autoOpen?: boolean;
|
|
13
|
+
readonly mode?: AgentOutputSurfaceMode;
|
|
14
|
+
readonly root?: string;
|
|
15
|
+
readonly defaultDocument?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface AgentRunConfig {
|
|
18
|
+
readonly stage: string;
|
|
19
|
+
readonly role: AgentRunRole;
|
|
20
|
+
readonly deliverableSpecRef?: string;
|
|
21
|
+
}
|
|
22
|
+
export interface AgentMountLayout {
|
|
23
|
+
readonly mounts: Readonly<Record<string, unknown>>;
|
|
24
|
+
readonly agentRunConfig: AgentRunConfig;
|
|
25
|
+
readonly seedFiles: readonly Readonly<Record<string, unknown>>[];
|
|
26
|
+
readonly inputs: Readonly<Record<string, unknown>>;
|
|
27
|
+
}
|
|
28
|
+
export interface AgentWorkspaceConfig {
|
|
29
|
+
readonly persistence?: WorkspacePersistenceSpec;
|
|
30
|
+
readonly env?: readonly WorkspaceEnvVar[];
|
|
31
|
+
readonly outputSurface?: AgentOutputSurface;
|
|
32
|
+
readonly mountLayout?: AgentMountLayout;
|
|
33
|
+
readonly workingFiles?: readonly WorkingFileBinding[];
|
|
34
|
+
readonly credentials?: readonly CompiledManifestCredential[];
|
|
35
|
+
readonly permissions?: CompiledManifestPermissions;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=agent-workspace-config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-workspace-config.d.ts","sourceRoot":"","sources":["../../../src/agent-composition/lib/agent-workspace-config.ts"],"names":[],"mappings":"AAqBA,OAAO,KAAK,EACV,kBAAkB,EAClB,eAAe,EACf,wBAAwB,EACzB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EACV,YAAY,EACZ,0BAA0B,EAC1B,2BAA2B,EAC3B,iBAAiB,EAClB,MAAM,gBAAgB,CAAC;AAExB,YAAY,EACV,kBAAkB,EAClB,eAAe,EACf,wBAAwB,GACzB,MAAM,uBAAuB,CAAC;AAQ/B,oBAAY,sBAAsB;IAChC,MAAM,WAAW;IACjB,KAAK,UAAU;CAChB;AAsBD,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,IAAI,EAAE,iBAAiB,CAAC;IACjC,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAE7B,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAE5B,QAAQ,CAAC,IAAI,CAAC,EAAE,sBAAsB,CAAC;IAMvC,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IAMvB,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,CAAC;CACnC;AAcD,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,IAAI,EAAE,YAAY,CAAC;IAC5B,QAAQ,CAAC,kBAAkB,CAAC,EAAE,MAAM,CAAC;CACtC;AA6BD,MAAM,WAAW,gBAAgB;IAO/B,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;IAEnD,QAAQ,CAAC,cAAc,EAAE,cAAc,CAAC;IAOxC,QAAQ,CAAC,SAAS,EAAE,SAAS,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC;IAOjE,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;CACpD;AAQD,MAAM,WAAW,oBAAoB;IAKnC,QAAQ,CAAC,WAAW,CAAC,EAAE,wBAAwB,CAAC;IAOhD,QAAQ,CAAC,GAAG,CAAC,EAAE,SAAS,eAAe,EAAE,CAAC;IAK1C,QAAQ,CAAC,aAAa,CAAC,EAAE,kBAAkB,CAAC;IAQ5C,QAAQ,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC;IAgBxC,QAAQ,CAAC,YAAY,CAAC,EAAE,SAAS,kBAAkB,EAAE,CAAC;IAWtD,QAAQ,CAAC,WAAW,CAAC,EAAE,SAAS,0BAA0B,EAAE,CAAC;IAW7D,QAAQ,CAAC,WAAW,CAAC,EAAE,2BAA2B,CAAC;CACpD"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AgentOutputSurfaceMode = void 0;
|
|
4
|
+
var AgentOutputSurfaceMode;
|
|
5
|
+
(function (AgentOutputSurfaceMode) {
|
|
6
|
+
AgentOutputSurfaceMode["Single"] = "single";
|
|
7
|
+
AgentOutputSurfaceMode["Multi"] = "multi";
|
|
8
|
+
})(AgentOutputSurfaceMode || (exports.AgentOutputSurfaceMode = AgentOutputSurfaceMode = {}));
|
|
9
|
+
//# sourceMappingURL=agent-workspace-config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-workspace-config.js","sourceRoot":"","sources":["../../../src/agent-composition/lib/agent-workspace-config.ts"],"names":[],"mappings":";;;AA6CA,IAAY,sBAGX;AAHD,WAAY,sBAAsB;IAChC,2CAAiB,CAAA;IACjB,yCAAe,CAAA;AACjB,CAAC,EAHW,sBAAsB,sCAAtB,sBAAsB,QAGjC"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import type { ToolSelectionEntry } from '../../mcp-tool';
|
|
2
|
+
import type { NodeOverlayFragment } from '../../workflow';
|
|
3
|
+
import type { SkillRef } from '../../skill';
|
|
4
|
+
import type { BiomeAvailabilityScoped } from '../../biome-availability';
|
|
5
|
+
import type { CapabilityLayer } from './capability-layer';
|
|
6
|
+
import type { AgentWorkspaceConfig } from './agent-workspace-config';
|
|
7
|
+
export interface AgentKernelRef {
|
|
8
|
+
readonly slug: string;
|
|
9
|
+
readonly version?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare enum AgentSpace {
|
|
12
|
+
System = "system",
|
|
13
|
+
Biome = "biome",
|
|
14
|
+
Org = "org",
|
|
15
|
+
Project = "project",
|
|
16
|
+
User = "user"
|
|
17
|
+
}
|
|
18
|
+
export declare enum AgentLifecycle {
|
|
19
|
+
Draft = "draft",
|
|
20
|
+
Published = "published",
|
|
21
|
+
Archived = "archived"
|
|
22
|
+
}
|
|
23
|
+
export interface AgentLimits {
|
|
24
|
+
readonly maxDepth: number;
|
|
25
|
+
readonly maxFanout: number;
|
|
26
|
+
readonly maxSpawns: number;
|
|
27
|
+
readonly tokenBudget?: number | undefined;
|
|
28
|
+
}
|
|
29
|
+
export interface AgentNode extends NodeOverlayFragment, BiomeAvailabilityScoped {
|
|
30
|
+
readonly kernel: AgentKernelRef;
|
|
31
|
+
readonly alias?: string;
|
|
32
|
+
readonly skills: readonly SkillRef[];
|
|
33
|
+
readonly tools: readonly ToolSelectionEntry[];
|
|
34
|
+
readonly children: readonly AgentNode[];
|
|
35
|
+
readonly limits?: AgentLimits;
|
|
36
|
+
}
|
|
37
|
+
export interface Agent {
|
|
38
|
+
readonly slug: string;
|
|
39
|
+
readonly version: string;
|
|
40
|
+
readonly displayName: string;
|
|
41
|
+
readonly description?: string;
|
|
42
|
+
readonly scope: AgentSpace;
|
|
43
|
+
readonly lifecycle: AgentLifecycle;
|
|
44
|
+
readonly root: AgentNode;
|
|
45
|
+
readonly capability?: CapabilityLayer;
|
|
46
|
+
readonly workspace?: AgentWorkspaceConfig;
|
|
47
|
+
}
|
|
48
|
+
export interface ResolvedAgentNode extends NodeOverlayFragment, BiomeAvailabilityScoped {
|
|
49
|
+
readonly kernel: Required<AgentKernelRef>;
|
|
50
|
+
readonly alias?: string;
|
|
51
|
+
readonly skills: readonly SkillRef[];
|
|
52
|
+
readonly tools: readonly ToolSelectionEntry[];
|
|
53
|
+
readonly children: readonly ResolvedAgentNode[];
|
|
54
|
+
readonly limits?: AgentLimits;
|
|
55
|
+
}
|
|
56
|
+
export interface ResolvedAgent {
|
|
57
|
+
readonly slug: string;
|
|
58
|
+
readonly version: string;
|
|
59
|
+
readonly displayName: string;
|
|
60
|
+
readonly scope: AgentSpace;
|
|
61
|
+
readonly root: ResolvedAgentNode;
|
|
62
|
+
readonly capability: CapabilityLayer;
|
|
63
|
+
readonly workspace?: AgentWorkspaceConfig;
|
|
64
|
+
}
|
|
65
|
+
//# sourceMappingURL=agent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../../../src/agent-composition/lib/agent.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AgentLifecycle = exports.AgentSpace = void 0;
|
|
4
|
+
var AgentSpace;
|
|
5
|
+
(function (AgentSpace) {
|
|
6
|
+
AgentSpace["System"] = "system";
|
|
7
|
+
AgentSpace["Biome"] = "biome";
|
|
8
|
+
AgentSpace["Org"] = "org";
|
|
9
|
+
AgentSpace["Project"] = "project";
|
|
10
|
+
AgentSpace["User"] = "user";
|
|
11
|
+
})(AgentSpace || (exports.AgentSpace = AgentSpace = {}));
|
|
12
|
+
var AgentLifecycle;
|
|
13
|
+
(function (AgentLifecycle) {
|
|
14
|
+
AgentLifecycle["Draft"] = "draft";
|
|
15
|
+
AgentLifecycle["Published"] = "published";
|
|
16
|
+
AgentLifecycle["Archived"] = "archived";
|
|
17
|
+
})(AgentLifecycle || (exports.AgentLifecycle = AgentLifecycle = {}));
|
|
18
|
+
//# sourceMappingURL=agent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent.js","sourceRoot":"","sources":["../../../src/agent-composition/lib/agent.ts"],"names":[],"mappings":";;;AAoCA,IAAY,UAMX;AAND,WAAY,UAAU;IACpB,+BAAiB,CAAA;IACjB,6BAAe,CAAA;IACf,yBAAW,CAAA;IACX,iCAAmB,CAAA;IACnB,2BAAa,CAAA;AACf,CAAC,EANW,UAAU,0BAAV,UAAU,QAMrB;AAQD,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,iCAAe,CAAA;IACf,yCAAuB,CAAA;IACvB,uCAAqB,CAAA;AACvB,CAAC,EAJW,cAAc,8BAAd,cAAc,QAIzB"}
|