@cursor/july 0.1.24 → 0.1.25
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/bin/agent-serve.js +0 -0
- package/dist/channels/github/instrument.d.ts +20 -0
- package/dist/channels/github/instrument.d.ts.map +1 -0
- package/dist/docs/404.html +1 -1
- package/dist/docs/ab.html +2 -2
- package/dist/docs/assets/{app.CvSGaAxk.js → app.DYcC9FY-.js} +1 -1
- package/dist/docs/assets/chunks/@localSearchIndexroot.BQTzJjR_.js +1 -0
- package/dist/docs/assets/chunks/{VPLocalSearchBox.J1jJbCvs.js → VPLocalSearchBox.o4N_knTV.js} +1 -1
- package/dist/docs/assets/chunks/{theme.C7vfzr7h.js → theme.DQ-njyo0.js} +2 -2
- package/dist/docs/building-with-agents.html +2 -2
- package/dist/docs/concepts.html +2 -2
- package/dist/docs/deployment.html +2 -2
- package/dist/docs/evals.html +2 -2
- package/dist/docs/example-agents/approval-buddy.html +2 -2
- package/dist/docs/example-agents/benny.html +2 -2
- package/dist/docs/example-agents/bugbot.html +2 -2
- package/dist/docs/example-agents/codebase-wiki.html +2 -2
- package/dist/docs/example-agents/codeowners-review.html +2 -2
- package/dist/docs/example-agents/concierge.html +2 -2
- package/dist/docs/example-agents/fsd.html +2 -2
- package/dist/docs/example-agents/index.html +2 -2
- package/dist/docs/example-agents/knowledge-base.html +2 -2
- package/dist/docs/example-agents/oncall.html +2 -2
- package/dist/docs/example-agents/security-reviewer.html +2 -2
- package/dist/docs/example-agents/slack-agent.html +2 -2
- package/dist/docs/example-agents/weather-agent.html +2 -2
- package/dist/docs/guides/agent-to-agent.html +2 -2
- package/dist/docs/guides/cloud-runtime.html +2 -2
- package/dist/docs/guides/github.html +2 -2
- package/dist/docs/guides/human-in-the-loop.html +2 -2
- package/dist/docs/guides/mcp-oauth.html +2 -2
- package/dist/docs/guides/slack.html +2 -2
- package/dist/docs/guides/webhooks.html +2 -2
- package/dist/docs/hillclimbing.html +2 -2
- package/dist/docs/index.html +2 -2
- package/dist/docs/quickstart.html +2 -2
- package/dist/docs/reference/agent-config.html +2 -2
- package/dist/docs/reference/channels.html +2 -2
- package/dist/docs/reference/cli.html +2 -2
- package/dist/docs/reference/connections.html +2 -2
- package/dist/docs/reference/hooks.html +2 -2
- package/dist/docs/reference/http-api.html +2 -2
- package/dist/docs/reference/instructions.html +2 -2
- package/dist/docs/reference/playground.html +2 -2
- package/dist/docs/reference/project-layout.html +2 -2
- package/dist/docs/reference/prompt.html +2 -2
- package/dist/docs/reference/schedules.html +2 -2
- package/dist/docs/reference/sessions.html +2 -2
- package/dist/docs/reference/skills.html +2 -2
- package/dist/docs/reference/subagents.html +2 -2
- package/dist/docs/reference/tools.html +2 -2
- package/dist/docs/scaffolding-agents.html +2 -2
- package/dist/docs/storage.html +2 -2
- package/dist/docs/troubleshooting.html +2 -2
- package/dist/internal/json-dir-store.d.ts +32 -0
- package/dist/internal/json-dir-store.d.ts.map +1 -0
- package/dist/internal/json-dir-store.js +100 -0
- package/dist/playground/assets/index-CjOQ4hN9.css +1 -0
- package/dist/playground/assets/{index-DTG9OsPV.js → index-DqXdAFGa.js} +41 -41
- package/dist/playground/index.html +2 -2
- package/package.json +31 -24
- package/src/artifacts.ts +78 -0
- package/src/bin/agent-serve.version.test.ts +64 -0
- package/src/channels/github/api.test.ts +64 -0
- package/src/channels/github/auth.test.ts +105 -0
- package/src/channels/github/cursor-account.test.ts +204 -0
- package/src/channels/github/forward.test.ts +457 -0
- package/src/channels/github/github.test.ts +943 -0
- package/src/channels/github/replay.test.ts +179 -0
- package/src/channels/slack/api.post-message.test.ts +148 -0
- package/src/channels/slack/approvals.test.ts +328 -0
- package/src/channels/slack/block-actions.test.ts +452 -0
- package/src/channels/slack/bot-mentions.test.ts +267 -0
- package/src/channels/slack/channel-watch.test.ts +363 -0
- package/src/channels/slack/cursor-account.test.ts +253 -0
- package/src/channels/slack/defaults.final-post.test.ts +182 -0
- package/src/channels/slack/dispatch.test.ts +795 -0
- package/src/channels/slack/eval-directive.test.ts +273 -0
- package/src/channels/slack/message-body.test.ts +54 -0
- package/src/channels/slack/nudge-store.test.ts +143 -0
- package/src/channels/slack/slack.test.ts +391 -0
- package/src/channels/slack/stop.test.ts +23 -0
- package/src/channels/slack/thread-context.test.ts +202 -0
- package/src/evals/assertions.test.ts +617 -0
- package/src/evals/assertions.ts +37 -1
- package/src/evals/expect.test.ts +144 -0
- package/src/evals/judge.test.ts +181 -0
- package/src/evals/loaders.test.ts +132 -0
- package/src/evals/matchers.test.ts +95 -0
- package/src/evals/reporters.test.ts +303 -0
- package/src/evals/run-facts.test.ts +259 -0
- package/src/evals.ts +1 -0
- package/src/index.ts +1 -0
- package/src/internal/ab-snapshot.test.ts +325 -0
- package/src/internal/approval-gate.test.ts +49 -0
- package/src/internal/approvals.integration.test.ts +383 -0
- package/src/internal/artifacts-store.test.ts +283 -0
- package/src/internal/artifacts-store.ts +290 -0
- package/src/internal/authored-loaders.test.ts +31 -0
- package/src/internal/builtin-tools/artifacts.test.ts +247 -0
- package/src/internal/builtin-tools/artifacts.ts +74 -0
- package/src/internal/builtin-tools/index.ts +21 -0
- package/src/internal/builtin-tools/reminders.test.ts +201 -0
- package/src/internal/channel-route-schema.test.ts +294 -0
- package/src/internal/chat-attach.test.ts +262 -0
- package/src/internal/cli-deploy.test.ts +1991 -0
- package/src/internal/cli-docs.test.ts +161 -0
- package/src/internal/cli-mcp.test.ts +789 -0
- package/src/internal/cli-skills.test.ts +133 -0
- package/src/internal/cli-slack.test.ts +1654 -0
- package/src/internal/cli-slack.ts +13 -4
- package/src/internal/cloud-merge.test.ts +74 -0
- package/src/internal/cron.test.ts +22 -0
- package/src/internal/cursor/account-mcp.test.ts +807 -0
- package/src/internal/cursor/backend-client.test.ts +591 -0
- package/src/internal/cursor/credentials.test.ts +351 -0
- package/src/internal/cursor/github-credentials.test.ts +136 -0
- package/src/internal/cursor-account-mcp-auth.test.ts +310 -0
- package/src/internal/cursor-account.integration.test.ts +441 -0
- package/src/internal/cursor-event-relay.test.ts +746 -0
- package/src/internal/cursor-github-credentials.integration.test.ts +271 -0
- package/src/internal/cursor-slack-relay.test.ts +525 -0
- package/src/internal/deploy-source.test.ts +111 -0
- package/src/internal/discovery.artifact-tool.test.ts +136 -0
- package/src/internal/discovery.artifacts.test.ts +119 -0
- package/src/internal/discovery.builtin-tools.test.ts +94 -0
- package/src/internal/discovery.concurrency.test.ts +60 -0
- package/src/internal/discovery.cursor-account.test.ts +133 -0
- package/src/internal/discovery.cwd.test.ts +83 -0
- package/src/internal/discovery.hosting.test.ts +80 -0
- package/src/internal/discovery.identity.test.ts +44 -0
- package/src/internal/discovery.ts +102 -1
- package/src/internal/distribution.ts +1 -0
- package/src/internal/docs-site.test.ts +66 -0
- package/src/internal/duration.test.ts +29 -0
- package/src/internal/eval-judge-model.test.ts +187 -0
- package/src/internal/eval-run-store.cancel.test.ts +142 -0
- package/src/internal/eval-run-store.storage.test.ts +211 -0
- package/src/internal/eval-runner.http.test.ts +403 -0
- package/src/internal/eval-runner.run.test.ts +928 -0
- package/src/internal/evals-client.test.ts +307 -0
- package/src/internal/event-mapper.test.ts +243 -0
- package/src/internal/github-fanout.test.ts +213 -0
- package/src/internal/handleAgentServeTrigger.test.ts +185 -0
- package/src/internal/host-kv.test.ts +82 -0
- package/src/internal/host-platforms.test.ts +126 -0
- package/src/internal/http-channel.test.ts +402 -0
- package/src/internal/init-project.test.ts +270 -0
- package/src/internal/install-cursor-skills.test.ts +262 -0
- package/src/internal/local-env.test.ts +120 -0
- package/src/internal/log-ring.test.ts +31 -0
- package/src/internal/logs-client.test.ts +350 -0
- package/src/internal/mcp-endpoint.test.ts +436 -0
- package/src/internal/mcp-host.test.ts +298 -0
- package/src/internal/mcp-oauth.test.ts +148 -0
- package/src/internal/net.test.ts +17 -0
- package/src/internal/peer-connections.test.ts +128 -0
- package/src/internal/peer-mcp.integration.test.ts +289 -0
- package/src/internal/playground/toolchain.test.ts +53 -0
- package/src/internal/playground-cli.test.ts +187 -0
- package/src/internal/playground-proxy.test.ts +376 -0
- package/src/internal/prompt-context.integration.test.ts +232 -0
- package/src/internal/prompt-context.test.ts +127 -0
- package/src/internal/reminder-runner.test.ts +390 -0
- package/src/internal/reminder-store.test.ts +53 -0
- package/src/internal/request-headers.test.ts +27 -0
- package/src/internal/resolve-prod-target.test.ts +787 -0
- package/src/internal/resolved-connections.test.ts +295 -0
- package/src/internal/router.test.ts +57 -0
- package/src/internal/sdk-runner.test.ts +290 -0
- package/src/internal/server.artifacts.test.ts +303 -0
- package/src/internal/server.ts +43 -0
- package/src/internal/session-engine.artifacts.test.ts +243 -0
- package/src/internal/session-engine.coalesce.test.ts +169 -0
- package/src/internal/session-engine.concurrency.test.ts +250 -0
- package/src/internal/session-engine.host-oauth-mcp.test.ts +110 -0
- package/src/internal/session-engine.interrupt.test.ts +577 -0
- package/src/internal/session-engine.storage.test.ts +547 -0
- package/src/internal/session-engine.ts +125 -0
- package/src/internal/session-urls.test.ts +28 -0
- package/src/internal/sessions-client.test.ts +518 -0
- package/src/internal/storage-coordinator.test.ts +517 -0
- package/src/internal/storage-coordinator.ts +62 -0
- package/src/internal/tool-call.test.ts +458 -0
- package/src/internal/tool-result.test.ts +52 -0
- package/src/internal/trajectory.approvals.test.ts +83 -0
- package/src/internal/trajectory.subagents.test.ts +198 -0
- package/src/internal/turn-governor.test.ts +137 -0
- package/src/internal/update-check.test.ts +485 -0
- package/src/internal/workspace.test.ts +207 -0
- package/src/storage-backends/cursor-hosted.test.ts +121 -0
- package/src/storage.ts +6 -0
- package/src/types.ts +134 -1
- package/dist/docs/assets/chunks/@localSearchIndexroot.CL2Y0Zmh.js +0 -1
- package/dist/playground/assets/index-CidizGZv.css +0 -1
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
2
|
+
|
|
3
|
+
import { defineStorage, type StorageContext } from "../storage.js";
|
|
4
|
+
import {
|
|
5
|
+
AGENT_SERVE_DEPLOYMENT_ID_ENV_VAR,
|
|
6
|
+
AGENT_SERVE_HOSTED_STORAGE_DATABASE_URL_ENV_VAR,
|
|
7
|
+
CURSOR_HOSTED_STORAGE,
|
|
8
|
+
CURSOR_HOSTED_STORAGE_ENV_VARS,
|
|
9
|
+
cursorHostedStorage,
|
|
10
|
+
isCursorHostedStorage,
|
|
11
|
+
} from "./cursor-hosted.js";
|
|
12
|
+
|
|
13
|
+
const storageCtx: StorageContext = {
|
|
14
|
+
agentName: "test-agent",
|
|
15
|
+
projectRoot: "/tmp/test-agent",
|
|
16
|
+
reason: "policy",
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
describe("cursorHostedStorage", () => {
|
|
20
|
+
afterEach(() => {
|
|
21
|
+
vi.unstubAllEnvs();
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it("exports the platform-managed env names", () => {
|
|
25
|
+
expect(AGENT_SERVE_HOSTED_STORAGE_DATABASE_URL_ENV_VAR).toBe(
|
|
26
|
+
"BUGBOTDB_URL"
|
|
27
|
+
);
|
|
28
|
+
expect(AGENT_SERVE_DEPLOYMENT_ID_ENV_VAR).toBe("AGENT_SERVE_DEPLOYMENT_ID");
|
|
29
|
+
expect(CURSOR_HOSTED_STORAGE_ENV_VARS).toEqual([
|
|
30
|
+
"BUGBOTDB_URL",
|
|
31
|
+
"AGENT_SERVE_DEPLOYMENT_ID",
|
|
32
|
+
]);
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
it("requires CURSOR_API_KEY", async () => {
|
|
36
|
+
vi.stubEnv("CURSOR_API_KEY", "");
|
|
37
|
+
const methods = cursorHostedStorage({
|
|
38
|
+
baseUrl: "https://api.cursor.com",
|
|
39
|
+
});
|
|
40
|
+
await expect(methods.put("k", 1, storageCtx)).rejects.toThrow(
|
|
41
|
+
/CURSOR_API_KEY/
|
|
42
|
+
);
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
it("calls the control-plane storage proxy with the pod credential", async () => {
|
|
46
|
+
const fetchMock = vi.fn(
|
|
47
|
+
async (input: RequestInfo | URL, init?: RequestInit) => {
|
|
48
|
+
expect(String(input)).toBe(
|
|
49
|
+
"https://api.cursor.com/internal/agent-serve/storage/kv/put"
|
|
50
|
+
);
|
|
51
|
+
expect(init?.method).toBe("POST");
|
|
52
|
+
expect(init?.headers).toMatchObject({
|
|
53
|
+
Authorization: "Bearer key_pod",
|
|
54
|
+
"Content-Type": "application/json",
|
|
55
|
+
});
|
|
56
|
+
expect(JSON.parse(String(init?.body))).toEqual({
|
|
57
|
+
key: "session/1",
|
|
58
|
+
value: { ok: true },
|
|
59
|
+
});
|
|
60
|
+
return new Response(JSON.stringify({ ok: true }), { status: 200 });
|
|
61
|
+
}
|
|
62
|
+
);
|
|
63
|
+
|
|
64
|
+
const methods = cursorHostedStorage({
|
|
65
|
+
baseUrl: "https://api.cursor.com",
|
|
66
|
+
apiKey: "key_pod",
|
|
67
|
+
fetch: fetchMock as typeof fetch,
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
await methods.put("session/1", { ok: true }, storageCtx);
|
|
71
|
+
expect(fetchMock).toHaveBeenCalledOnce();
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
it("maps get misses to undefined", async () => {
|
|
75
|
+
const methods = cursorHostedStorage({
|
|
76
|
+
baseUrl: "https://api.cursor.com",
|
|
77
|
+
apiKey: "key_pod",
|
|
78
|
+
fetch: (async () =>
|
|
79
|
+
new Response(JSON.stringify({ found: false, value: null }), {
|
|
80
|
+
status: 200,
|
|
81
|
+
})) as typeof fetch,
|
|
82
|
+
});
|
|
83
|
+
await expect(methods.get("missing", storageCtx)).resolves.toBeUndefined();
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
it("exposes evals and abs surfaces", () => {
|
|
87
|
+
const methods = cursorHostedStorage({
|
|
88
|
+
baseUrl: "https://api.cursor.com",
|
|
89
|
+
apiKey: "key_pod",
|
|
90
|
+
fetch: (async () =>
|
|
91
|
+
new Response(JSON.stringify({ ok: true }), {
|
|
92
|
+
status: 200,
|
|
93
|
+
})) as typeof fetch,
|
|
94
|
+
});
|
|
95
|
+
expect(typeof methods.evals.put).toBe("function");
|
|
96
|
+
expect(typeof methods.abs.putSample).toBe("function");
|
|
97
|
+
expect(typeof methods.abs.getSnapshot).toBe("function");
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
it("marks the sink so defineStorage preserves cursor-hosted detection", () => {
|
|
101
|
+
const methods = cursorHostedStorage({
|
|
102
|
+
baseUrl: "https://api.cursor.com",
|
|
103
|
+
apiKey: "key_pod",
|
|
104
|
+
fetch: (async () =>
|
|
105
|
+
new Response(JSON.stringify({ ok: true }), {
|
|
106
|
+
status: 200,
|
|
107
|
+
})) as typeof fetch,
|
|
108
|
+
});
|
|
109
|
+
expect(methods[CURSOR_HOSTED_STORAGE]).toBe(true);
|
|
110
|
+
expect(isCursorHostedStorage(methods)).toBe(true);
|
|
111
|
+
expect(
|
|
112
|
+
isCursorHostedStorage(
|
|
113
|
+
defineStorage({
|
|
114
|
+
name: "cursor-hosted",
|
|
115
|
+
...methods,
|
|
116
|
+
})
|
|
117
|
+
)
|
|
118
|
+
).toBe(true);
|
|
119
|
+
expect(isCursorHostedStorage(defineStorage({ put: () => {} }))).toBe(false);
|
|
120
|
+
});
|
|
121
|
+
});
|
package/src/storage.ts
CHANGED
|
@@ -277,6 +277,7 @@ export const STORAGE_KEY_ROOT = "agentkit/v1" as const;
|
|
|
277
277
|
* | `agentkit/v1/{agent}/continuation/{channelId}/{token}` | `{ sessionId }` |
|
|
278
278
|
* | `agentkit/v1/{agent}/reminder/{reminderId}` | `ReminderRecord` |
|
|
279
279
|
* | `agentkit/v1/{agent}/kv/{key}` | Author JSON via {@link HostContext.kv} |
|
|
280
|
+
* | `agentkit/v1/{agent}/artifacts/{id}` | `ArtifactRecord` via `ctx.artifacts` |
|
|
280
281
|
*
|
|
281
282
|
* Eval-run and A/B history do not flow through this KV scheme — they have
|
|
282
283
|
* dedicated tables ({@link StorageConfig.evals} / {@link StorageConfig.abs}).
|
|
@@ -311,6 +312,11 @@ export const storageKeys = {
|
|
|
311
312
|
kv: (agent: string, key: string): string =>
|
|
312
313
|
`${STORAGE_KEY_ROOT}/${agent}/kv/${keySegment(key)}`,
|
|
313
314
|
kvPrefix: (agent: string): string => `${STORAGE_KEY_ROOT}/${agent}/kv/`,
|
|
315
|
+
/** Tagged artifact rows (see `ctx.artifacts` / `ArtifactsApi`). */
|
|
316
|
+
artifact: (agent: string, id: string): string =>
|
|
317
|
+
`${STORAGE_KEY_ROOT}/${agent}/artifacts/${keySegment(id)}`,
|
|
318
|
+
artifactPrefix: (agent: string): string =>
|
|
319
|
+
`${STORAGE_KEY_ROOT}/${agent}/artifacts/`,
|
|
314
320
|
} as const;
|
|
315
321
|
|
|
316
322
|
/**
|
package/src/types.ts
CHANGED
|
@@ -45,7 +45,8 @@ export type DefinitionKind =
|
|
|
45
45
|
| "hook"
|
|
46
46
|
| "eval"
|
|
47
47
|
| "ab"
|
|
48
|
-
| "storage"
|
|
48
|
+
| "storage"
|
|
49
|
+
| "artifacts";
|
|
49
50
|
|
|
50
51
|
export interface BrandedDefinition<K extends DefinitionKind> {
|
|
51
52
|
readonly __agentServe: K;
|
|
@@ -516,6 +517,11 @@ export interface ToolContext {
|
|
|
516
517
|
channelId: string,
|
|
517
518
|
sessionId: string
|
|
518
519
|
): Promise<ChannelSession | null>;
|
|
520
|
+
/**
|
|
521
|
+
* Durable artifacts, bound to this tool call's session: `tag` auto-fills
|
|
522
|
+
* `sessionId` (and `turnId` when known).
|
|
523
|
+
*/
|
|
524
|
+
artifacts: ArtifactsApi;
|
|
519
525
|
}
|
|
520
526
|
|
|
521
527
|
/**
|
|
@@ -922,6 +928,18 @@ export type SessionEventPayload =
|
|
|
922
928
|
data: { callId: string; name?: string; description?: string };
|
|
923
929
|
}
|
|
924
930
|
| { type: "subagent.completed"; data: { callId: string; name?: string } }
|
|
931
|
+
| {
|
|
932
|
+
/** An artifact was tagged for this session (see {@link ArtifactsApi.tag}). */
|
|
933
|
+
type: "artifact.tagged";
|
|
934
|
+
data: {
|
|
935
|
+
id: string;
|
|
936
|
+
kind: string;
|
|
937
|
+
key?: string;
|
|
938
|
+
title?: string;
|
|
939
|
+
data: JsonValue;
|
|
940
|
+
source: ArtifactSource;
|
|
941
|
+
};
|
|
942
|
+
}
|
|
925
943
|
| {
|
|
926
944
|
type: "turn.completed";
|
|
927
945
|
data: { result?: string; usage?: TurnUsage };
|
|
@@ -1292,6 +1310,11 @@ export interface ChannelHandlerArgs {
|
|
|
1292
1310
|
request: Request,
|
|
1293
1311
|
sessionId: string
|
|
1294
1312
|
): { playgroundUrl: string; traceUrl: string };
|
|
1313
|
+
/**
|
|
1314
|
+
* Durable artifacts (unbound — channel handlers have no ambient session;
|
|
1315
|
+
* pass `sessionId` in `tag` input to attribute one).
|
|
1316
|
+
*/
|
|
1317
|
+
artifacts: ArtifactsApi;
|
|
1295
1318
|
}
|
|
1296
1319
|
|
|
1297
1320
|
export type ChannelRouteHandler = (
|
|
@@ -1575,6 +1598,11 @@ export interface HookContext {
|
|
|
1575
1598
|
* memory journal) write here.
|
|
1576
1599
|
*/
|
|
1577
1600
|
stateRoot: string;
|
|
1601
|
+
/**
|
|
1602
|
+
* Durable artifacts, bound to this hook's session: `tag` auto-fills
|
|
1603
|
+
* `sessionId` (and `turnId` when known).
|
|
1604
|
+
*/
|
|
1605
|
+
artifacts: ArtifactsApi;
|
|
1578
1606
|
}
|
|
1579
1607
|
|
|
1580
1608
|
export type HookHandler<TEvent extends SessionEvent = SessionEvent> = (
|
|
@@ -1595,6 +1623,107 @@ export interface HookConfig {
|
|
|
1595
1623
|
|
|
1596
1624
|
export type HookDefinition = HookConfig & BrandedDefinition<"hook">;
|
|
1597
1625
|
|
|
1626
|
+
// ============================================================================
|
|
1627
|
+
// Artifacts (agent/artifacts.ts)
|
|
1628
|
+
// ============================================================================
|
|
1629
|
+
|
|
1630
|
+
/** One declared artifact kind (see {@link ArtifactsConfig.kinds}). */
|
|
1631
|
+
export interface ArtifactKindConfig {
|
|
1632
|
+
/**
|
|
1633
|
+
* What this kind holds. Also the model-facing prompt for the
|
|
1634
|
+
* `tag_artifact` built-in tool when {@link ArtifactsConfig.agentTool}
|
|
1635
|
+
* is enabled.
|
|
1636
|
+
*/
|
|
1637
|
+
description: string;
|
|
1638
|
+
/**
|
|
1639
|
+
* Optional Zod schema; `tag` validates the payload against it and
|
|
1640
|
+
* persists the parsed output (defaults and coercions applied), so
|
|
1641
|
+
* the schema's output must stay JSON-serializable.
|
|
1642
|
+
*/
|
|
1643
|
+
schema?: z.ZodType;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
/** Input to `defineArtifacts` (authored at `agent/artifacts.ts`). */
|
|
1647
|
+
export interface ArtifactsConfig {
|
|
1648
|
+
/**
|
|
1649
|
+
* Declared artifact kinds. With kinds declared, `tag` only accepts
|
|
1650
|
+
* these; with none, any kind string is accepted freeform.
|
|
1651
|
+
*/
|
|
1652
|
+
kinds?: Record<string, ArtifactKindConfig>;
|
|
1653
|
+
/**
|
|
1654
|
+
* Expose the model-facing `tag_artifact` built-in tool generated from
|
|
1655
|
+
* {@link kinds}. Requires at least one declared kind.
|
|
1656
|
+
*/
|
|
1657
|
+
agentTool?: boolean;
|
|
1658
|
+
/**
|
|
1659
|
+
* Retention cap (default 1000). On insert past the cap, the
|
|
1660
|
+
* oldest-updated artifact is evicted.
|
|
1661
|
+
*/
|
|
1662
|
+
max?: number;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
export type ArtifactsDefinition = ArtifactsConfig &
|
|
1666
|
+
BrandedDefinition<"artifacts">;
|
|
1667
|
+
|
|
1668
|
+
/** Who tagged an artifact: host code, or the model via `tag_artifact`. */
|
|
1669
|
+
export type ArtifactSource = "host" | "model";
|
|
1670
|
+
|
|
1671
|
+
/** One durable tagged artifact. */
|
|
1672
|
+
export interface ArtifactRecord {
|
|
1673
|
+
/** Stable id: derived from {@link key} when present, else random. */
|
|
1674
|
+
id: string;
|
|
1675
|
+
kind: string;
|
|
1676
|
+
/** Author-chosen upsert key (same key ⇒ same id ⇒ replaces the row). */
|
|
1677
|
+
key?: string;
|
|
1678
|
+
title?: string;
|
|
1679
|
+
data: JsonValue;
|
|
1680
|
+
sessionId?: string;
|
|
1681
|
+
turnId?: string;
|
|
1682
|
+
source: ArtifactSource;
|
|
1683
|
+
createdAt: string;
|
|
1684
|
+
updatedAt: string;
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
/** Input to {@link ArtifactsApi.tag}. */
|
|
1688
|
+
export interface ArtifactTagInput {
|
|
1689
|
+
/** Defaults to `"artifact"` when no kinds are declared. */
|
|
1690
|
+
kind?: string;
|
|
1691
|
+
data: JsonValue;
|
|
1692
|
+
title?: string;
|
|
1693
|
+
/** Upsert key: tagging the same key again replaces the row. */
|
|
1694
|
+
key?: string;
|
|
1695
|
+
/**
|
|
1696
|
+
* Session to attribute (and stream an `artifact.tagged` event to). On
|
|
1697
|
+
* session-bound facades ({@link ToolContext.artifacts},
|
|
1698
|
+
* {@link HookContext.artifacts}) this is auto-filled and a different
|
|
1699
|
+
* value is rejected; unbound facades
|
|
1700
|
+
* ({@link ChannelHandlerArgs.artifacts}) accept it explicitly.
|
|
1701
|
+
*/
|
|
1702
|
+
sessionId?: string;
|
|
1703
|
+
turnId?: string;
|
|
1704
|
+
/** Defaults to `"host"`. */
|
|
1705
|
+
source?: ArtifactSource;
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
/** Filter for {@link ArtifactsApi.list}. */
|
|
1709
|
+
export interface ArtifactListFilter {
|
|
1710
|
+
kind?: string;
|
|
1711
|
+
sessionId?: string;
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
/**
|
|
1715
|
+
* The artifacts API, attached as `ctx.artifacts` on tools
|
|
1716
|
+
* ({@link ToolContext}), hooks ({@link HookContext}), and channel handlers
|
|
1717
|
+
* ({@link ChannelHandlerArgs}). Tool and hook facades are session-bound:
|
|
1718
|
+
* `tag` auto-fills the session; the channel facade is unbound.
|
|
1719
|
+
*/
|
|
1720
|
+
export interface ArtifactsApi {
|
|
1721
|
+
/** Tag (upsert) one artifact. See {@link ArtifactTagInput}. */
|
|
1722
|
+
tag(input: ArtifactTagInput): Promise<ArtifactRecord>;
|
|
1723
|
+
/** Tagged artifacts, newest-updated first. */
|
|
1724
|
+
list(filter?: ArtifactListFilter): Promise<ArtifactRecord[]>;
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1598
1727
|
// ============================================================================
|
|
1599
1728
|
// Schedules (agent/schedules/*)
|
|
1600
1729
|
// ============================================================================
|
|
@@ -1919,6 +2048,8 @@ export interface AgentProject {
|
|
|
1919
2048
|
abConfig?: ABConfigFile;
|
|
1920
2049
|
/** Optional `agent/storage.ts` (`defineStorage`). */
|
|
1921
2050
|
storage?: StorageDefinition;
|
|
2051
|
+
/** Optional `agent/artifacts.ts` (`defineArtifacts`). */
|
|
2052
|
+
artifacts?: ArtifactsDefinition;
|
|
1922
2053
|
diagnostics: Diagnostic[];
|
|
1923
2054
|
}
|
|
1924
2055
|
|
|
@@ -1988,6 +2119,8 @@ export interface AgentProjectInfo {
|
|
|
1988
2119
|
};
|
|
1989
2120
|
/** Project storage sink from `agent/storage.ts`, when authored. */
|
|
1990
2121
|
storage?: { name?: string };
|
|
2122
|
+
/** Declared artifact kinds from `agent/artifacts.ts`, when authored. */
|
|
2123
|
+
artifacts?: { kinds: string[]; agentTool: boolean; max: number };
|
|
1991
2124
|
diagnostics: Diagnostic[];
|
|
1992
2125
|
}
|
|
1993
2126
|
|