antpath 0.4.1 → 0.6.1
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/_shared/blueprint.js +7 -0
- package/dist/_shared/operations.js +10 -2
- package/dist/_shared/submission.js +19 -1
- package/dist/blueprint.d.ts +33 -0
- package/dist/blueprint.js +14 -0
- package/dist/blueprint.js.map +1 -0
- package/dist/bundle.d.ts +18 -0
- package/dist/bundle.js +55 -0
- package/dist/bundle.js.map +1 -0
- package/dist/cli.mjs +1636 -374
- package/dist/cli.mjs.sha256 +1 -1
- package/dist/client.d.ts +65 -19
- package/dist/client.js +141 -21
- package/dist/client.js.map +1 -1
- package/dist/index.d.ts +17 -9
- package/dist/index.js +13 -6
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.d.ts +44 -0
- package/dist/mcp-server.js +58 -0
- package/dist/mcp-server.js.map +1 -0
- package/dist/node-fs.d.ts +12 -0
- package/dist/node-fs.js +44 -0
- package/dist/node-fs.js.map +1 -0
- package/dist/skill.d.ts +59 -0
- package/dist/skill.js +82 -0
- package/dist/skill.js.map +1 -0
- package/package.json +4 -2
package/dist/cli.mjs.sha256
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
0d11c4f9917f04a478449a308c1a5df2384e0281cea00ad6ecc6adcc284bc6b9 cli.mjs
|
package/dist/client.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import { type FetchLike, type Output, type
|
|
1
|
+
import { HttpClient, type FetchLike, type Output, type PlatformFlatRunSubmissionInput, type PlatformFlatSubmission, type PlatformInlineSecrets, type Run, type RunEvent, type SignedOutputLink, type Skill as SkillRecord, type WhoAmI } from "./_shared/index.js";
|
|
2
|
+
import { type SkillFiles } from "./bundle.js";
|
|
3
|
+
import { McpServer } from "./mcp-server.js";
|
|
4
|
+
import { Skill } from "./skill.js";
|
|
2
5
|
export interface AntpathClientOptions {
|
|
3
6
|
/** Workspace-scoped SDK API token. */
|
|
4
7
|
readonly apiToken: string;
|
|
@@ -14,18 +17,31 @@ export interface AntpathClientOptions {
|
|
|
14
17
|
readonly fetch?: FetchLike;
|
|
15
18
|
}
|
|
16
19
|
/**
|
|
17
|
-
* Per-run submission options.
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
20
|
+
* Per-run submission options. Everything the user wants to send is
|
|
21
|
+
* spelled out at the call site:
|
|
22
|
+
*
|
|
23
|
+
* - `model` / `system` / `prompt` — the agent's brief.
|
|
24
|
+
* - `skills` — array of `Skill` instances (workspace or provider).
|
|
25
|
+
* - `mcpServers` — array of `McpServer` instances (headers split into
|
|
26
|
+
* `secrets.mcpServers` server-side; the public submission only
|
|
27
|
+
* carries `{ name, url }`).
|
|
28
|
+
* - `secrets.anthropic.apiKey` — REQUIRED. The platform never holds
|
|
29
|
+
* a long-lived Anthropic key on your behalf.
|
|
30
|
+
*
|
|
31
|
+
* `idempotencyKey` is auto-generated when omitted; pass one explicitly
|
|
32
|
+
* if you want client-driven retry safety.
|
|
21
33
|
*/
|
|
22
|
-
export interface
|
|
23
|
-
readonly
|
|
34
|
+
export interface SubmitRunOptions {
|
|
35
|
+
readonly model: string;
|
|
36
|
+
readonly system?: string;
|
|
37
|
+
readonly prompt: string | readonly string[];
|
|
38
|
+
readonly skills?: readonly Skill[];
|
|
39
|
+
readonly mcpServers?: readonly McpServer[];
|
|
40
|
+
readonly environment?: PlatformFlatSubmission["environment"];
|
|
41
|
+
readonly metadata?: PlatformFlatSubmission["metadata"];
|
|
42
|
+
readonly cleanup?: PlatformFlatRunSubmissionInput["cleanup"];
|
|
43
|
+
readonly proxyEndpoints?: PlatformFlatRunSubmissionInput["proxyEndpoints"];
|
|
24
44
|
readonly secrets: PlatformInlineSecrets;
|
|
25
|
-
readonly proxyEndpoints?: readonly PlatformProxyEndpoint[];
|
|
26
|
-
readonly cleanup?: {
|
|
27
|
-
readonly session?: "retain" | "delete";
|
|
28
|
-
};
|
|
29
45
|
readonly idempotencyKey?: string;
|
|
30
46
|
readonly signal?: AbortSignal;
|
|
31
47
|
}
|
|
@@ -55,6 +71,35 @@ export declare class RunRef {
|
|
|
55
71
|
cancel(): Promise<void>;
|
|
56
72
|
delete(): Promise<void>;
|
|
57
73
|
}
|
|
74
|
+
/**
|
|
75
|
+
* Workspace skill operations exposed under `client.skills`. These
|
|
76
|
+
* delegate to the same shared `operations.*` functions the CLI uses
|
|
77
|
+
* so SDK and CLI never drift.
|
|
78
|
+
*/
|
|
79
|
+
export declare class SkillsClient {
|
|
80
|
+
#private;
|
|
81
|
+
constructor(http: HttpClient);
|
|
82
|
+
/**
|
|
83
|
+
* Upload an inline files map as a workspace skill. The SDK validates
|
|
84
|
+
* basic safety (no path traversal, size caps, has `SKILL.md`) and
|
|
85
|
+
* deterministically zips the bundle before posting; the BFF
|
|
86
|
+
* re-canonicalises and recomputes the hash on receipt.
|
|
87
|
+
*/
|
|
88
|
+
upload(args: {
|
|
89
|
+
readonly name: string;
|
|
90
|
+
readonly files: SkillFiles;
|
|
91
|
+
}): Promise<Skill>;
|
|
92
|
+
/**
|
|
93
|
+
* Read a local directory and upload it as a workspace skill. Symlinks
|
|
94
|
+
* and non-regular files are skipped. Node-only.
|
|
95
|
+
*/
|
|
96
|
+
fromPath(rootDir: string, args: {
|
|
97
|
+
readonly name: string;
|
|
98
|
+
}): Promise<Skill>;
|
|
99
|
+
list(): Promise<readonly SkillRecord[]>;
|
|
100
|
+
get(skillId: string): Promise<SkillRecord>;
|
|
101
|
+
delete(skillId: string): Promise<void>;
|
|
102
|
+
}
|
|
58
103
|
/**
|
|
59
104
|
* Unified user-facing client for the antpath platform. The same class
|
|
60
105
|
* powers the published `antpath` SDK and (under the hood) every host-side
|
|
@@ -68,23 +113,24 @@ export declare class RunRef {
|
|
|
68
113
|
*/
|
|
69
114
|
export declare class AntpathClient {
|
|
70
115
|
#private;
|
|
116
|
+
readonly skills: SkillsClient;
|
|
71
117
|
constructor(options: AntpathClientOptions);
|
|
72
118
|
/**
|
|
73
119
|
* Submit a run and wait for it to reach a terminal state. Returns the
|
|
74
120
|
* final `Run` record. For long-running flows, prefer `submitRun` +
|
|
75
|
-
* `
|
|
121
|
+
* `RunRef.stream()` + `RunRef.wait()`.
|
|
76
122
|
*/
|
|
77
|
-
run(
|
|
123
|
+
run(options: SubmitRunOptions): Promise<Run>;
|
|
78
124
|
/**
|
|
79
125
|
* Submit a run and return a `RunRef` immediately. Use the ref to
|
|
80
126
|
* stream events, fetch outputs, cancel, or delete the run.
|
|
127
|
+
*
|
|
128
|
+
* The SDK splits `mcpServers[i].headers` into `secrets.mcpServers`
|
|
129
|
+
* before sending so credentials never enter the hashed submission or
|
|
130
|
+
* the run snapshot, even when the caller forgets to pass
|
|
131
|
+
* `secrets.mcpServers` explicitly.
|
|
81
132
|
*/
|
|
82
|
-
submitRun(
|
|
83
|
-
/**
|
|
84
|
-
* Same as `submitRun` but accepts an already-compiled `ResolvedTemplate`.
|
|
85
|
-
* Useful when consuming a `.json` template directly.
|
|
86
|
-
*/
|
|
87
|
-
submitResolvedRun(template: ResolvedTemplate, options: RunSubmitOptions): Promise<RunRef>;
|
|
133
|
+
submitRun(options: SubmitRunOptions): Promise<RunRef>;
|
|
88
134
|
getRun(runId: string): Promise<Run>;
|
|
89
135
|
listEvents(runId: string): Promise<readonly RunEvent[]>;
|
|
90
136
|
/**
|
package/dist/client.js
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import { HttpClient, operations,
|
|
1
|
+
import { HttpClient, operations, validateProxyAuth } from "./_shared/index.js";
|
|
2
|
+
import { bundleSkillFiles } from "./bundle.js";
|
|
3
|
+
import { McpServer } from "./mcp-server.js";
|
|
4
|
+
import { readDirectoryAsFiles } from "./node-fs.js";
|
|
5
|
+
import { Skill } from "./skill.js";
|
|
2
6
|
/**
|
|
3
7
|
* Lightweight reference to a submitted run. All read-back operations
|
|
4
8
|
* delegate to the same `AntpathClient` and the same operations module
|
|
@@ -33,6 +37,56 @@ export class RunRef {
|
|
|
33
37
|
return this.#client.deleteRun(this.runId);
|
|
34
38
|
}
|
|
35
39
|
}
|
|
40
|
+
/**
|
|
41
|
+
* Workspace skill operations exposed under `client.skills`. These
|
|
42
|
+
* delegate to the same shared `operations.*` functions the CLI uses
|
|
43
|
+
* so SDK and CLI never drift.
|
|
44
|
+
*/
|
|
45
|
+
export class SkillsClient {
|
|
46
|
+
#http;
|
|
47
|
+
constructor(http) {
|
|
48
|
+
this.#http = http;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Upload an inline files map as a workspace skill. The SDK validates
|
|
52
|
+
* basic safety (no path traversal, size caps, has `SKILL.md`) and
|
|
53
|
+
* deterministically zips the bundle before posting; the BFF
|
|
54
|
+
* re-canonicalises and recomputes the hash on receipt.
|
|
55
|
+
*/
|
|
56
|
+
async upload(args) {
|
|
57
|
+
if (!args || typeof args !== "object") {
|
|
58
|
+
throw new Error("client.skills.upload: args is required");
|
|
59
|
+
}
|
|
60
|
+
if (typeof args.name !== "string" || !args.name) {
|
|
61
|
+
throw new Error("client.skills.upload: name is required");
|
|
62
|
+
}
|
|
63
|
+
const bundled = bundleSkillFiles(args.files);
|
|
64
|
+
const record = await operations.createSkillBundle(this.#http, {
|
|
65
|
+
name: args.name,
|
|
66
|
+
body: bundled.zip,
|
|
67
|
+
contentType: "application/zip",
|
|
68
|
+
filename: `${args.name}.zip`
|
|
69
|
+
});
|
|
70
|
+
return new Skill({ kind: "workspace", id: record.id }, record);
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Read a local directory and upload it as a workspace skill. Symlinks
|
|
74
|
+
* and non-regular files are skipped. Node-only.
|
|
75
|
+
*/
|
|
76
|
+
async fromPath(rootDir, args) {
|
|
77
|
+
const files = await readDirectoryAsFiles(rootDir);
|
|
78
|
+
return this.upload({ name: args.name, files });
|
|
79
|
+
}
|
|
80
|
+
list() {
|
|
81
|
+
return operations.listSkills(this.#http);
|
|
82
|
+
}
|
|
83
|
+
get(skillId) {
|
|
84
|
+
return operations.getSkill(this.#http, skillId);
|
|
85
|
+
}
|
|
86
|
+
delete(skillId) {
|
|
87
|
+
return operations.deleteSkill(this.#http, skillId);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
36
90
|
/**
|
|
37
91
|
* Unified user-facing client for the antpath platform. The same class
|
|
38
92
|
* powers the published `antpath` SDK and (under the hood) every host-side
|
|
@@ -46,6 +100,7 @@ export class RunRef {
|
|
|
46
100
|
*/
|
|
47
101
|
export class AntpathClient {
|
|
48
102
|
#http;
|
|
103
|
+
skills;
|
|
49
104
|
constructor(options) {
|
|
50
105
|
if (!options.apiToken) {
|
|
51
106
|
throw new Error("AntpathClient: apiToken is required");
|
|
@@ -55,49 +110,65 @@ export class AntpathClient {
|
|
|
55
110
|
apiToken: options.apiToken,
|
|
56
111
|
...(options.fetch ? { fetch: options.fetch } : {})
|
|
57
112
|
});
|
|
113
|
+
this.skills = new SkillsClient(this.#http);
|
|
58
114
|
}
|
|
59
115
|
/**
|
|
60
116
|
* Submit a run and wait for it to reach a terminal state. Returns the
|
|
61
117
|
* final `Run` record. For long-running flows, prefer `submitRun` +
|
|
62
|
-
* `
|
|
118
|
+
* `RunRef.stream()` + `RunRef.wait()`.
|
|
63
119
|
*/
|
|
64
|
-
async run(
|
|
65
|
-
const ref = await this.submitRun(
|
|
120
|
+
async run(options) {
|
|
121
|
+
const ref = await this.submitRun(options);
|
|
66
122
|
return ref.wait(options.signal ? { signal: options.signal } : {});
|
|
67
123
|
}
|
|
68
124
|
/**
|
|
69
125
|
* Submit a run and return a `RunRef` immediately. Use the ref to
|
|
70
126
|
* stream events, fetch outputs, cancel, or delete the run.
|
|
127
|
+
*
|
|
128
|
+
* The SDK splits `mcpServers[i].headers` into `secrets.mcpServers`
|
|
129
|
+
* before sending so credentials never enter the hashed submission or
|
|
130
|
+
* the run snapshot, even when the caller forgets to pass
|
|
131
|
+
* `secrets.mcpServers` explicitly.
|
|
71
132
|
*/
|
|
72
|
-
async submitRun(
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* Same as `submitRun` but accepts an already-compiled `ResolvedTemplate`.
|
|
78
|
-
* Useful when consuming a `.json` template directly.
|
|
79
|
-
*/
|
|
80
|
-
async submitResolvedRun(template, options) {
|
|
133
|
+
async submitRun(options) {
|
|
134
|
+
if (!options || typeof options !== "object") {
|
|
135
|
+
throw new Error("AntpathClient.submitRun: options is required");
|
|
136
|
+
}
|
|
81
137
|
if (!options.secrets || !options.secrets.anthropic?.apiKey) {
|
|
82
138
|
throw new Error("AntpathClient.submitRun: secrets.anthropic.apiKey is required");
|
|
83
139
|
}
|
|
140
|
+
if (typeof options.model !== "string" || !options.model) {
|
|
141
|
+
throw new Error("AntpathClient.submitRun: model is required");
|
|
142
|
+
}
|
|
143
|
+
const prompt = normalisePrompt(options.prompt);
|
|
84
144
|
if (options.proxyEndpoints && options.proxyEndpoints.length > 0) {
|
|
85
145
|
validateProxyAuth(options.proxyEndpoints, options.secrets.proxyEndpointAuth);
|
|
86
146
|
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
// (Agent-first surface design, Concrete rule 3).
|
|
147
|
+
const skills = (options.skills ?? []).map(toSkillRef);
|
|
148
|
+
const { submissionMcpServers, mergedMcpSecrets } = mergeMcpServers(options.mcpServers ?? [], options.secrets.mcpServers ?? []);
|
|
90
149
|
const submission = {
|
|
150
|
+
model: options.model,
|
|
151
|
+
...(options.system ? { system: options.system } : {}),
|
|
152
|
+
prompt,
|
|
153
|
+
skills,
|
|
154
|
+
mcpServers: submissionMcpServers,
|
|
155
|
+
...(options.environment ? { environment: options.environment } : {}),
|
|
156
|
+
...(options.metadata ? { metadata: options.metadata } : {})
|
|
157
|
+
};
|
|
158
|
+
const secrets = {
|
|
159
|
+
...options.secrets,
|
|
160
|
+
...(mergedMcpSecrets.length > 0 ? { mcpServers: mergedMcpSecrets } : {})
|
|
161
|
+
};
|
|
162
|
+
const request = {
|
|
91
163
|
idempotencyKey: options.idempotencyKey ?? generateIdempotencyKey(),
|
|
92
|
-
|
|
93
|
-
...(options.variables ? { variables: options.variables } : {}),
|
|
164
|
+
submission,
|
|
94
165
|
...(options.cleanup ? { cleanup: options.cleanup } : {}),
|
|
95
|
-
secrets
|
|
166
|
+
secrets,
|
|
96
167
|
...(options.proxyEndpoints && options.proxyEndpoints.length > 0
|
|
97
168
|
? { proxyEndpoints: options.proxyEndpoints }
|
|
98
169
|
: {})
|
|
99
170
|
};
|
|
100
|
-
const run = await operations.
|
|
171
|
+
const run = await operations.submitRunFlat(this.#http, request);
|
|
101
172
|
return new RunRef(this, run.id);
|
|
102
173
|
}
|
|
103
174
|
getRun(runId) {
|
|
@@ -114,7 +185,7 @@ export class AntpathClient {
|
|
|
114
185
|
async *streamEvents(runId, options = {}) {
|
|
115
186
|
const intervalMs = options.intervalMs ?? 1_000;
|
|
116
187
|
const signal = options.signal;
|
|
117
|
-
|
|
188
|
+
const seenIds = new Set();
|
|
118
189
|
while (!signal?.aborted) {
|
|
119
190
|
const events = await this.listEvents(runId);
|
|
120
191
|
for (const event of events) {
|
|
@@ -199,4 +270,53 @@ function generateIdempotencyKey() {
|
|
|
199
270
|
return cryptoObj.randomUUID();
|
|
200
271
|
return `idem-${Date.now().toString(36)}-${Math.random().toString(36).slice(2)}`;
|
|
201
272
|
}
|
|
273
|
+
function normalisePrompt(input) {
|
|
274
|
+
if (typeof input === "string") {
|
|
275
|
+
if (!input) {
|
|
276
|
+
throw new Error("AntpathClient.submitRun: prompt must be a non-empty string");
|
|
277
|
+
}
|
|
278
|
+
return [input];
|
|
279
|
+
}
|
|
280
|
+
if (!Array.isArray(input) || input.length === 0) {
|
|
281
|
+
throw new Error("AntpathClient.submitRun: prompt must be a non-empty string or string array");
|
|
282
|
+
}
|
|
283
|
+
for (const segment of input) {
|
|
284
|
+
if (typeof segment !== "string" || !segment) {
|
|
285
|
+
throw new Error("AntpathClient.submitRun: prompt segments must be non-empty strings");
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
return [...input];
|
|
289
|
+
}
|
|
290
|
+
function toSkillRef(skill, index) {
|
|
291
|
+
if (!(skill instanceof Skill)) {
|
|
292
|
+
throw new Error(`AntpathClient.submitRun: skills[${index}] must be a Skill instance`);
|
|
293
|
+
}
|
|
294
|
+
return skill.ref;
|
|
295
|
+
}
|
|
296
|
+
function mergeMcpServers(inputs, explicitSecrets) {
|
|
297
|
+
const submissionMcpServers = [];
|
|
298
|
+
const secretByName = new Map();
|
|
299
|
+
for (const secret of explicitSecrets) {
|
|
300
|
+
secretByName.set(secret.name, secret);
|
|
301
|
+
}
|
|
302
|
+
for (let i = 0; i < inputs.length; i++) {
|
|
303
|
+
const entry = inputs[i];
|
|
304
|
+
if (!(entry instanceof McpServer)) {
|
|
305
|
+
throw new Error(`AntpathClient.submitRun: mcpServers[${i}] must be an McpServer instance`);
|
|
306
|
+
}
|
|
307
|
+
submissionMcpServers.push(entry.toSubmissionEntry());
|
|
308
|
+
const secret = entry.toSecretEntry();
|
|
309
|
+
if (secret) {
|
|
310
|
+
const existing = secretByName.get(secret.name);
|
|
311
|
+
if (existing && existing.url !== secret.url) {
|
|
312
|
+
throw new Error(`AntpathClient.submitRun: mcpServers[${i}].url conflicts with secrets.mcpServers["${secret.name}"]`);
|
|
313
|
+
}
|
|
314
|
+
secretByName.set(secret.name, secret);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
return {
|
|
318
|
+
submissionMcpServers,
|
|
319
|
+
mergedMcpSecrets: Array.from(secretByName.values())
|
|
320
|
+
};
|
|
321
|
+
}
|
|
202
322
|
//# sourceMappingURL=client.js.map
|
package/dist/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -2,15 +2,23 @@
|
|
|
2
2
|
* Public surface of the `antpath` SDK.
|
|
3
3
|
*
|
|
4
4
|
* ONE class (`AntpathClient`) talks to the dashboard BFF. The CLI exposes
|
|
5
|
-
* the SAME operations via subcommands.
|
|
6
|
-
*
|
|
5
|
+
* the SAME operations via subcommands. Composition primitives are
|
|
6
|
+
* `Skill`, `McpServer`, and `defineRun` — there is no `Template`
|
|
7
|
+
* wrapper. Everything else is types, errors, and event type guards
|
|
8
|
+
* re-exported from `@antpath/shared`.
|
|
7
9
|
*/
|
|
8
|
-
export { AntpathClient, RunRef } from "./client.js";
|
|
9
|
-
export type { AntpathClientOptions,
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export
|
|
13
|
-
export type {
|
|
14
|
-
export
|
|
10
|
+
export { AntpathClient, RunRef, SkillsClient } from "./client.js";
|
|
11
|
+
export type { AntpathClientOptions, StreamEventsOptions, SubmitRunOptions, WaitForRunOptions } from "./client.js";
|
|
12
|
+
export { Skill } from "./skill.js";
|
|
13
|
+
export { McpServer } from "./mcp-server.js";
|
|
14
|
+
export { defineRun } from "./blueprint.js";
|
|
15
|
+
export type { Blueprint } from "./blueprint.js";
|
|
16
|
+
export { bundleSkillFiles } from "./bundle.js";
|
|
17
|
+
export type { BundledSkill, SkillFiles } from "./bundle.js";
|
|
18
|
+
export { AntpathApiError, AntpathError, CleanupError, CredentialValidationError, ProviderError, RunStateError } from "./_shared/index.js";
|
|
19
|
+
export { MCP_SERVER_NAME_PATTERN, SKILL_BUNDLE_LIMITS, SkillBundleValidationError, buildPlatformAllowedHosts, normaliseSkillBundlePath, validateSkillBundleEntry, validateSkillBundleManifest, validateProxyAuth } from "./_shared/index.js";
|
|
20
|
+
export type { McpServerRef, ProviderSkillRef, SkillBundleEntry, SkillBundleManifest, SkillRef, WorkspaceSkillRef } from "./_shared/index.js";
|
|
21
|
+
export type { Output, ProviderEvent, Run, RunEvent, SignedOutputLink, Skill as SkillRecord, UsageSummary, WhoAmI } from "./_shared/index.js";
|
|
22
|
+
export type { PlatformAnthropicSecrets as AnthropicSecrets, PlatformCleanupPolicy as CleanupPolicy, PlatformInlineSecrets as InlineSecrets, PlatformMcpServerSecret as McpServerSecret, PlatformProxyEndpoint as ProxyEndpoint, PlatformProxyEndpointAuth as ProxyEndpointAuth, PlatformProxyAuthValue as ProxyAuthValue, PlatformTemplateEnvironment as RunEnvironment, ProxyAuthShape, ProxyMethod, ProxyResponseMode } from "./_shared/index.js";
|
|
15
23
|
export { isAgentCustomToolUse, isAgentEvent, isAgentMcpToolResult, isAgentMcpToolUse, isAgentMessage, isAgentThinking, isAgentToolResult, isAgentToolUse, isSessionError, isSessionEvent, isSessionStatusIdle, isSessionStatusRescheduled, isSessionStatusRunning, isSessionStatusTerminated, isSpanEvent, isUserEvent, isUserMessage } from "./_shared/index.js";
|
|
16
24
|
export { SecretString, redactSecrets } from "./_shared/index.js";
|
package/dist/index.js
CHANGED
|
@@ -2,14 +2,21 @@
|
|
|
2
2
|
* Public surface of the `antpath` SDK.
|
|
3
3
|
*
|
|
4
4
|
* ONE class (`AntpathClient`) talks to the dashboard BFF. The CLI exposes
|
|
5
|
-
* the SAME operations via subcommands.
|
|
6
|
-
*
|
|
5
|
+
* the SAME operations via subcommands. Composition primitives are
|
|
6
|
+
* `Skill`, `McpServer`, and `defineRun` — there is no `Template`
|
|
7
|
+
* wrapper. Everything else is types, errors, and event type guards
|
|
8
|
+
* re-exported from `@antpath/shared`.
|
|
7
9
|
*/
|
|
8
|
-
export { AntpathClient, RunRef } from "./client.js";
|
|
10
|
+
export { AntpathClient, RunRef, SkillsClient } from "./client.js";
|
|
11
|
+
// Composition primitives
|
|
12
|
+
export { Skill } from "./skill.js";
|
|
13
|
+
export { McpServer } from "./mcp-server.js";
|
|
14
|
+
export { defineRun } from "./blueprint.js";
|
|
15
|
+
export { bundleSkillFiles } from "./bundle.js";
|
|
9
16
|
// Errors
|
|
10
|
-
export { AntpathApiError, AntpathError, CleanupError, CredentialValidationError, ProviderError, RunStateError
|
|
11
|
-
//
|
|
12
|
-
export {
|
|
17
|
+
export { AntpathApiError, AntpathError, CleanupError, CredentialValidationError, ProviderError, RunStateError } from "./_shared/index.js";
|
|
18
|
+
// Skill / MCP wire types
|
|
19
|
+
export { MCP_SERVER_NAME_PATTERN, SKILL_BUNDLE_LIMITS, SkillBundleValidationError, buildPlatformAllowedHosts, normaliseSkillBundlePath, validateSkillBundleEntry, validateSkillBundleManifest, validateProxyAuth } from "./_shared/index.js";
|
|
13
20
|
// Event type guards
|
|
14
21
|
export { isAgentCustomToolUse, isAgentEvent, isAgentMcpToolResult, isAgentMcpToolUse, isAgentMessage, isAgentThinking, isAgentToolResult, isAgentToolUse, isSessionError, isSessionEvent, isSessionStatusIdle, isSessionStatusRescheduled, isSessionStatusRunning, isSessionStatusTerminated, isSpanEvent, isUserEvent, isUserMessage } from "./_shared/index.js";
|
|
15
22
|
// Secret utilities
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAQlE,yBAAyB;AACzB,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAE3C,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAG/C,SAAS;AACT,OAAO,EACL,eAAe,EACf,YAAY,EACZ,YAAY,EACZ,yBAAyB,EACzB,aAAa,EACb,aAAa,EACd,MAAM,iBAAiB,CAAC;AAEzB,yBAAyB;AACzB,OAAO,EACL,uBAAuB,EACvB,mBAAmB,EACnB,0BAA0B,EAC1B,yBAAyB,EACzB,wBAAwB,EACxB,wBAAwB,EACxB,2BAA2B,EAC3B,iBAAiB,EAClB,MAAM,iBAAiB,CAAC;AAsCzB,oBAAoB;AACpB,OAAO,EACL,oBAAoB,EACpB,YAAY,EACZ,oBAAoB,EACpB,iBAAiB,EACjB,cAAc,EACd,eAAe,EACf,iBAAiB,EACjB,cAAc,EACd,cAAc,EACd,cAAc,EACd,mBAAmB,EACnB,0BAA0B,EAC1B,sBAAsB,EACtB,yBAAyB,EACzB,WAAW,EACX,WAAW,EACX,aAAa,EACd,MAAM,iBAAiB,CAAC;AAEzB,mBAAmB;AACnB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { McpServerRef, PlatformMcpServerSecret } from "./_shared/index.js";
|
|
2
|
+
/**
|
|
3
|
+
* Inline MCP server reference. Headers (typically `Authorization`) are
|
|
4
|
+
* vaulted server-side under `secrets.mcpServers` and excluded from the
|
|
5
|
+
* idempotency hash; the non-secret `{ name, url }` part is hashed.
|
|
6
|
+
*
|
|
7
|
+
* The SDK splits the header bag from the public ref BEFORE the wire
|
|
8
|
+
* payload is built, so a single `McpServer` instance becomes:
|
|
9
|
+
*
|
|
10
|
+
* - a `submission.mcpServers` entry of `{ name, url }`, and
|
|
11
|
+
* - (when `headers` is present) a `secrets.mcpServers` entry of
|
|
12
|
+
* `{ name, headers }`.
|
|
13
|
+
*
|
|
14
|
+
* This keeps `Authorization` out of `runs.flat_snapshot`, audit reads,
|
|
15
|
+
* and the idempotency fingerprint, even if the caller forgets to pass
|
|
16
|
+
* `secrets.mcpServers` explicitly.
|
|
17
|
+
*/
|
|
18
|
+
export declare class McpServer {
|
|
19
|
+
readonly name: string;
|
|
20
|
+
readonly url: string;
|
|
21
|
+
readonly headers: Readonly<Record<string, string>> | undefined;
|
|
22
|
+
/** Internal constructor. Use `McpServer.remote(...)`. */
|
|
23
|
+
constructor(args: {
|
|
24
|
+
readonly name: string;
|
|
25
|
+
readonly url: string;
|
|
26
|
+
readonly headers?: Readonly<Record<string, string>>;
|
|
27
|
+
});
|
|
28
|
+
/** Remote MCP server reachable over HTTP(S) by URL. */
|
|
29
|
+
static remote(args: {
|
|
30
|
+
readonly name: string;
|
|
31
|
+
readonly url: string;
|
|
32
|
+
readonly headers?: Readonly<Record<string, string>>;
|
|
33
|
+
}): McpServer;
|
|
34
|
+
/** Wire shape for the non-secret `submission.mcpServers` entry. */
|
|
35
|
+
toSubmissionEntry(): McpServerRef;
|
|
36
|
+
/**
|
|
37
|
+
* Wire shape for the `secrets.mcpServers` entry, or `undefined` when
|
|
38
|
+
* no headers were provided. Returned headers are a defensive copy.
|
|
39
|
+
* The url is required by the BFF's cross-validation rule:
|
|
40
|
+
* `secrets.mcpServers[name=X].url` must equal
|
|
41
|
+
* `submission.mcpServers[name=X].url`.
|
|
42
|
+
*/
|
|
43
|
+
toSecretEntry(): PlatformMcpServerSecret | undefined;
|
|
44
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Inline MCP server reference. Headers (typically `Authorization`) are
|
|
3
|
+
* vaulted server-side under `secrets.mcpServers` and excluded from the
|
|
4
|
+
* idempotency hash; the non-secret `{ name, url }` part is hashed.
|
|
5
|
+
*
|
|
6
|
+
* The SDK splits the header bag from the public ref BEFORE the wire
|
|
7
|
+
* payload is built, so a single `McpServer` instance becomes:
|
|
8
|
+
*
|
|
9
|
+
* - a `submission.mcpServers` entry of `{ name, url }`, and
|
|
10
|
+
* - (when `headers` is present) a `secrets.mcpServers` entry of
|
|
11
|
+
* `{ name, headers }`.
|
|
12
|
+
*
|
|
13
|
+
* This keeps `Authorization` out of `runs.flat_snapshot`, audit reads,
|
|
14
|
+
* and the idempotency fingerprint, even if the caller forgets to pass
|
|
15
|
+
* `secrets.mcpServers` explicitly.
|
|
16
|
+
*/
|
|
17
|
+
export class McpServer {
|
|
18
|
+
name;
|
|
19
|
+
url;
|
|
20
|
+
headers;
|
|
21
|
+
/** Internal constructor. Use `McpServer.remote(...)`. */
|
|
22
|
+
constructor(args) {
|
|
23
|
+
if (!args || typeof args !== "object") {
|
|
24
|
+
throw new Error("McpServer: args is required");
|
|
25
|
+
}
|
|
26
|
+
if (typeof args.name !== "string" || !args.name) {
|
|
27
|
+
throw new Error("McpServer: name is required");
|
|
28
|
+
}
|
|
29
|
+
if (typeof args.url !== "string" || !args.url) {
|
|
30
|
+
throw new Error("McpServer: url is required");
|
|
31
|
+
}
|
|
32
|
+
this.name = args.name;
|
|
33
|
+
this.url = args.url;
|
|
34
|
+
this.headers = args.headers && Object.keys(args.headers).length > 0 ? { ...args.headers } : undefined;
|
|
35
|
+
}
|
|
36
|
+
/** Remote MCP server reachable over HTTP(S) by URL. */
|
|
37
|
+
static remote(args) {
|
|
38
|
+
return new McpServer(args);
|
|
39
|
+
}
|
|
40
|
+
/** Wire shape for the non-secret `submission.mcpServers` entry. */
|
|
41
|
+
toSubmissionEntry() {
|
|
42
|
+
return { name: this.name, url: this.url };
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Wire shape for the `secrets.mcpServers` entry, or `undefined` when
|
|
46
|
+
* no headers were provided. Returned headers are a defensive copy.
|
|
47
|
+
* The url is required by the BFF's cross-validation rule:
|
|
48
|
+
* `secrets.mcpServers[name=X].url` must equal
|
|
49
|
+
* `submission.mcpServers[name=X].url`.
|
|
50
|
+
*/
|
|
51
|
+
toSecretEntry() {
|
|
52
|
+
if (!this.headers) {
|
|
53
|
+
return undefined;
|
|
54
|
+
}
|
|
55
|
+
return { name: this.name, url: this.url, headers: { ...this.headers } };
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
//# sourceMappingURL=mcp-server.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mcp-server.js","sourceRoot":"","sources":["../src/mcp-server.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;GAeG;AACH,MAAM,OAAO,SAAS;IACX,IAAI,CAAS;IACb,GAAG,CAAS;IACZ,OAAO,CAA+C;IAE/D,yDAAyD;IACzD,YAAY,IAA0G;QACpH,IAAI,CAAC,IAAI,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE,CAAC;YACtC,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC,CAAC;QACjD,CAAC;QACD,IAAI,OAAO,IAAI,CAAC,IAAI,KAAK,QAAQ,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;YAChD,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC,CAAC;QACjD,CAAC;QACD,IAAI,OAAO,IAAI,CAAC,GAAG,KAAK,QAAQ,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;YAC9C,MAAM,IAAI,KAAK,CAAC,4BAA4B,CAAC,CAAC;QAChD,CAAC;QACD,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACtB,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;QACpB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,GAAG,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;IACxG,CAAC;IAED,uDAAuD;IACvD,MAAM,CAAC,MAAM,CAAC,IAA0G;QACtH,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC;IAC7B,CAAC;IAED,mEAAmE;IACnE,iBAAiB;QACf,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC;IAC5C,CAAC;IAED;;;;;;OAMG;IACH,aAAa;QACX,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;YAClB,OAAO,SAAS,CAAC;QACnB,CAAC;QACD,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,EAAE,OAAO,EAAE,EAAE,GAAG,IAAI,CAAC,OAAO,EAAE,EAAE,CAAC;IAC1E,CAAC;CACF"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { SkillFiles } from "./bundle.js";
|
|
2
|
+
/**
|
|
3
|
+
* Walk a local directory and load every regular file into an in-memory
|
|
4
|
+
* `SkillFiles` map. Symlinks and non-regular files are skipped (a
|
|
5
|
+
* symlink that points outside the root would still be skipped because
|
|
6
|
+
* we use `lstat` semantics). Paths are normalised to forward-slash
|
|
7
|
+
* relative form so they can flow into `bundleSkillFiles` directly.
|
|
8
|
+
*
|
|
9
|
+
* Node-only. Browser callers should use `bundleSkillFiles` with a
|
|
10
|
+
* pre-built files map instead.
|
|
11
|
+
*/
|
|
12
|
+
export declare function readDirectoryAsFiles(rootDir: string): Promise<SkillFiles>;
|
package/dist/node-fs.js
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { readFile, readdir, stat } from "node:fs/promises";
|
|
2
|
+
import { join, posix, relative, sep } from "node:path";
|
|
3
|
+
/**
|
|
4
|
+
* Walk a local directory and load every regular file into an in-memory
|
|
5
|
+
* `SkillFiles` map. Symlinks and non-regular files are skipped (a
|
|
6
|
+
* symlink that points outside the root would still be skipped because
|
|
7
|
+
* we use `lstat` semantics). Paths are normalised to forward-slash
|
|
8
|
+
* relative form so they can flow into `bundleSkillFiles` directly.
|
|
9
|
+
*
|
|
10
|
+
* Node-only. Browser callers should use `bundleSkillFiles` with a
|
|
11
|
+
* pre-built files map instead.
|
|
12
|
+
*/
|
|
13
|
+
export async function readDirectoryAsFiles(rootDir) {
|
|
14
|
+
if (typeof rootDir !== "string" || !rootDir) {
|
|
15
|
+
throw new Error("readDirectoryAsFiles: rootDir is required");
|
|
16
|
+
}
|
|
17
|
+
const rootStat = await stat(rootDir);
|
|
18
|
+
if (!rootStat.isDirectory()) {
|
|
19
|
+
throw new Error(`readDirectoryAsFiles: ${rootDir} is not a directory`);
|
|
20
|
+
}
|
|
21
|
+
const files = {};
|
|
22
|
+
await walk(rootDir, rootDir, files);
|
|
23
|
+
return files;
|
|
24
|
+
}
|
|
25
|
+
async function walk(rootDir, currentDir, out) {
|
|
26
|
+
const entries = await readdir(currentDir, { withFileTypes: true });
|
|
27
|
+
for (const dirent of entries) {
|
|
28
|
+
const full = join(currentDir, dirent.name);
|
|
29
|
+
if (dirent.isSymbolicLink()) {
|
|
30
|
+
continue;
|
|
31
|
+
}
|
|
32
|
+
if (dirent.isDirectory()) {
|
|
33
|
+
await walk(rootDir, full, out);
|
|
34
|
+
continue;
|
|
35
|
+
}
|
|
36
|
+
if (!dirent.isFile()) {
|
|
37
|
+
continue;
|
|
38
|
+
}
|
|
39
|
+
const rel = relative(rootDir, full);
|
|
40
|
+
const posixPath = sep === "/" ? rel : rel.split(sep).join(posix.sep);
|
|
41
|
+
out[posixPath] = await readFile(full);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=node-fs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"node-fs.js","sourceRoot":"","sources":["../src/node-fs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAC3D,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,MAAM,WAAW,CAAC;AAGvD;;;;;;;;;GASG;AACH,MAAM,CAAC,KAAK,UAAU,oBAAoB,CAAC,OAAe;IACxD,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,CAAC,OAAO,EAAE,CAAC;QAC5C,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;IAC/D,CAAC;IACD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,CAAC;IACrC,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE,EAAE,CAAC;QAC5B,MAAM,IAAI,KAAK,CAAC,yBAAyB,OAAO,qBAAqB,CAAC,CAAC;IACzE,CAAC;IACD,MAAM,KAAK,GAA+B,EAAE,CAAC;IAC7C,MAAM,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC;IACpC,OAAO,KAAK,CAAC;AACf,CAAC;AAED,KAAK,UAAU,IAAI,CAAC,OAAe,EAAE,UAAkB,EAAE,GAA+B;IACtF,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,UAAU,EAAE,EAAE,aAAa,EAAE,IAAI,EAAE,CAAC,CAAC;IACnE,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE,CAAC;QAC7B,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;QAC3C,IAAI,MAAM,CAAC,cAAc,EAAE,EAAE,CAAC;YAC5B,SAAS;QACX,CAAC;QACD,IAAI,MAAM,CAAC,WAAW,EAAE,EAAE,CAAC;YACzB,MAAM,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC;YAC/B,SAAS;QACX,CAAC;QACD,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC;YACrB,SAAS;QACX,CAAC;QACD,MAAM,GAAG,GAAG,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QACpC,MAAM,SAAS,GAAG,GAAG,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QACrE,GAAG,CAAC,SAAS,CAAC,GAAG,MAAM,QAAQ,CAAC,IAAI,CAAC,CAAC;IACxC,CAAC;AACH,CAAC"}
|