mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 06:04:43 +00:00
chore(foundry): migrate to actions (#262)
* feat(foundry): checkpoint actor and workspace refactor
* docs(foundry): add agent handoff context
* wip(foundry): continue actor refactor
* wip(foundry): capture remaining local changes
* Complete Foundry refactor checklist
* Fix Foundry validation fallout
* wip
* wip: convert all actors from workflow to plain run handlers
Workaround for RivetKit bug where c.queue.iter() never yields messages
for actors created via getOrCreate from another actor's context. The
queue accepts messages (visible in inspector) but the iterator hangs.
Sleep/wake fixes it, but actors with active connections never sleep.
Converted organization, github-data, task, and user actors from
run: workflow(...) to plain run: async (c) => { for await ... }.
Also fixes:
- Missing auth tables in org migration (auth_verification etc)
- default_model NOT NULL constraint on org profile upsert
- Nested workflow step in github-data (HistoryDivergedError)
- Removed --force from frontend Dockerfile pnpm install
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* Convert all actors from queues/workflows to direct actions, lazy task creation
Major refactor replacing all queue-based workflow communication with direct
RivetKit action calls across all actors. This works around a RivetKit bug
where c.queue.iter() deadlocks for actors created from another actor's context.
Key changes:
- All actors (organization, task, user, audit-log, github-data) converted
from run: workflow(...) to actions-only (no run handler, no queues)
- PR sync creates virtual task entries in org local DB instead of spawning
task actors — prevents OOM from 200+ actors created simultaneously
- Task actors created lazily on first user interaction via getOrCreate,
self-initialize from org's getTaskIndexEntry data
- Removed requireRepoExists cross-actor call (caused 500s), replaced with
local resolveTaskRepoId from org's taskIndex table
- Fixed getOrganizationContext to thread overrides through all sync phases
- Fixed sandbox repo path (/home/user/repo for E2B compatibility)
- Fixed buildSessionDetail to skip transcript fetch for pending sessions
- Added process crash protection (uncaughtException/unhandledRejection)
- Fixed React infinite render loop in mock-layout useEffect dependencies
- Added sandbox listProcesses error handling for expired E2B sandboxes
- Set E2B sandbox timeout to 1 hour (was 5 min default)
- Updated CLAUDE.md with lazy task creation rules, no-silent-catch policy,
React hook dependency safety rules
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* Fix E2B sandbox timeout comment, frontend stability, and create-flow improvements
- Add TEMPORARY comment on E2B timeoutMs with pointer to rivetkit sandbox
resilience proposal for when autoPause lands
- Fix React useEffect dependency stability in mock-layout and
organization-dashboard to prevent infinite re-render loops
- Fix terminal-pane ref handling
- Improve create-flow service and tests
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
32f3c6c3bc
commit
f45a467484
139 changed files with 9768 additions and 7204 deletions
|
|
@ -20,7 +20,9 @@
|
|||
"paths": {
|
||||
"/v1/acp": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "get_v1_acp_servers",
|
||||
"responses": {
|
||||
"200": {
|
||||
|
|
@ -38,7 +40,9 @@
|
|||
},
|
||||
"/v1/acp/{server_id}": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "get_v1_acp",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -88,7 +92,9 @@
|
|||
}
|
||||
},
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "post_v1_acp",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -198,7 +204,9 @@
|
|||
}
|
||||
},
|
||||
"delete": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "delete_v1_acp",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -220,7 +228,9 @@
|
|||
},
|
||||
"/v1/agents": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "get_v1_agents",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -270,7 +280,9 @@
|
|||
},
|
||||
"/v1/agents/{agent}": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "get_v1_agent",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -339,7 +351,9 @@
|
|||
},
|
||||
"/v1/agents/{agent}/install": {
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "post_v1_agent_install",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -398,7 +412,9 @@
|
|||
},
|
||||
"/v1/config/mcp": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "get_v1_config_mcp",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -444,7 +460,9 @@
|
|||
}
|
||||
},
|
||||
"put": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "put_v1_config_mcp",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -483,7 +501,9 @@
|
|||
}
|
||||
},
|
||||
"delete": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "delete_v1_config_mcp",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -514,7 +534,9 @@
|
|||
},
|
||||
"/v1/config/skills": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "get_v1_config_skills",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -560,7 +582,9 @@
|
|||
}
|
||||
},
|
||||
"put": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "put_v1_config_skills",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -599,7 +623,9 @@
|
|||
}
|
||||
},
|
||||
"delete": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "delete_v1_config_skills",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -630,7 +656,9 @@
|
|||
},
|
||||
"/v1/fs/entries": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "get_v1_fs_entries",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -663,7 +691,9 @@
|
|||
},
|
||||
"/v1/fs/entry": {
|
||||
"delete": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "delete_v1_fs_entry",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -702,7 +732,9 @@
|
|||
},
|
||||
"/v1/fs/file": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "get_v1_fs_file",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -722,7 +754,9 @@
|
|||
}
|
||||
},
|
||||
"put": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "put_v1_fs_file",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -762,7 +796,9 @@
|
|||
},
|
||||
"/v1/fs/mkdir": {
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "post_v1_fs_mkdir",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -791,7 +827,9 @@
|
|||
},
|
||||
"/v1/fs/move": {
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "post_v1_fs_move",
|
||||
"requestBody": {
|
||||
"content": {
|
||||
|
|
@ -819,7 +857,9 @@
|
|||
},
|
||||
"/v1/fs/stat": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "get_v1_fs_stat",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -848,7 +888,9 @@
|
|||
},
|
||||
"/v1/fs/upload-batch": {
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "post_v1_fs_upload_batch",
|
||||
"parameters": [
|
||||
{
|
||||
|
|
@ -889,7 +931,9 @@
|
|||
},
|
||||
"/v1/health": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"operationId": "get_v1_health",
|
||||
"responses": {
|
||||
"200": {
|
||||
|
|
@ -907,7 +951,9 @@
|
|||
},
|
||||
"/v1/processes": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "List all managed processes.",
|
||||
"description": "Returns a list of all processes (running and exited) currently tracked\nby the runtime, sorted by process ID.",
|
||||
"operationId": "get_v1_processes",
|
||||
|
|
@ -935,7 +981,9 @@
|
|||
}
|
||||
},
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Create a long-lived managed process.",
|
||||
"description": "Spawns a new process with the given command and arguments. Supports both\npipe-based and PTY (tty) modes. Returns the process descriptor on success.",
|
||||
"operationId": "post_v1_processes",
|
||||
|
|
@ -995,7 +1043,9 @@
|
|||
},
|
||||
"/v1/processes/config": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Get process runtime configuration.",
|
||||
"description": "Returns the current runtime configuration for the process management API,\nincluding limits for concurrency, timeouts, and buffer sizes.",
|
||||
"operationId": "get_v1_processes_config",
|
||||
|
|
@ -1023,7 +1073,9 @@
|
|||
}
|
||||
},
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Update process runtime configuration.",
|
||||
"description": "Replaces the runtime configuration for the process management API.\nValidates that all values are non-zero and clamps default timeout to max.",
|
||||
"operationId": "post_v1_processes_config",
|
||||
|
|
@ -1073,7 +1125,9 @@
|
|||
},
|
||||
"/v1/processes/run": {
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Run a one-shot command.",
|
||||
"description": "Executes a command to completion and returns its stdout, stderr, exit code,\nand duration. Supports configurable timeout and output size limits.",
|
||||
"operationId": "post_v1_processes_run",
|
||||
|
|
@ -1123,7 +1177,9 @@
|
|||
},
|
||||
"/v1/processes/{id}": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Get a single process by ID.",
|
||||
"description": "Returns the current state of a managed process including its status,\nPID, exit code, and creation/exit timestamps.",
|
||||
"operationId": "get_v1_process",
|
||||
|
|
@ -1172,7 +1228,9 @@
|
|||
}
|
||||
},
|
||||
"delete": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Delete a process record.",
|
||||
"description": "Removes a stopped process from the runtime. Returns 409 if the process\nis still running; stop or kill it first.",
|
||||
"operationId": "delete_v1_process",
|
||||
|
|
@ -1226,7 +1284,9 @@
|
|||
},
|
||||
"/v1/processes/{id}/input": {
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Write input to a process.",
|
||||
"description": "Sends data to a process's stdin (pipe mode) or PTY writer (tty mode).\nData can be encoded as base64, utf8, or text. Returns 413 if the decoded\npayload exceeds the configured `maxInputBytesPerRequest` limit.",
|
||||
"operationId": "post_v1_process_input",
|
||||
|
|
@ -1307,7 +1367,9 @@
|
|||
},
|
||||
"/v1/processes/{id}/kill": {
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Send SIGKILL to a process.",
|
||||
"description": "Sends SIGKILL to the process and optionally waits up to `waitMs`\nmilliseconds for the process to exit before returning.",
|
||||
"operationId": "post_v1_process_kill",
|
||||
|
|
@ -1370,7 +1432,9 @@
|
|||
},
|
||||
"/v1/processes/{id}/logs": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Fetch process logs.",
|
||||
"description": "Returns buffered log entries for a process. Supports filtering by stream\ntype, tail count, and sequence-based resumption. When `follow=true`,\nreturns an SSE stream that replays buffered entries then streams live output.",
|
||||
"operationId": "get_v1_process_logs",
|
||||
|
|
@ -1468,7 +1532,9 @@
|
|||
},
|
||||
"/v1/processes/{id}/stop": {
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Send SIGTERM to a process.",
|
||||
"description": "Sends SIGTERM to the process and optionally waits up to `waitMs`\nmilliseconds for the process to exit before returning.",
|
||||
"operationId": "post_v1_process_stop",
|
||||
|
|
@ -1531,7 +1597,9 @@
|
|||
},
|
||||
"/v1/processes/{id}/terminal/resize": {
|
||||
"post": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Resize a process terminal.",
|
||||
"description": "Sets the PTY window size (columns and rows) for a tty-mode process and\nsends SIGWINCH so the child process can adapt.",
|
||||
"operationId": "post_v1_process_terminal_resize",
|
||||
|
|
@ -1612,7 +1680,9 @@
|
|||
},
|
||||
"/v1/processes/{id}/terminal/ws": {
|
||||
"get": {
|
||||
"tags": ["v1"],
|
||||
"tags": [
|
||||
"v1"
|
||||
],
|
||||
"summary": "Open an interactive WebSocket terminal session.",
|
||||
"description": "Upgrades the connection to a WebSocket for bidirectional PTY I/O. Accepts\n`access_token` query param for browser-based auth (WebSocket API cannot\nsend custom headers). Streams raw PTY output as binary frames and accepts\nJSON control frames for input, resize, and close.",
|
||||
"operationId": "get_v1_process_terminal_ws",
|
||||
|
|
@ -1689,7 +1759,9 @@
|
|||
"schemas": {
|
||||
"AcpEnvelope": {
|
||||
"type": "object",
|
||||
"required": ["jsonrpc"],
|
||||
"required": [
|
||||
"jsonrpc"
|
||||
],
|
||||
"properties": {
|
||||
"error": {
|
||||
"nullable": true
|
||||
|
|
@ -1723,7 +1795,11 @@
|
|||
},
|
||||
"AcpServerInfo": {
|
||||
"type": "object",
|
||||
"required": ["serverId", "agent", "createdAtMs"],
|
||||
"required": [
|
||||
"serverId",
|
||||
"agent",
|
||||
"createdAtMs"
|
||||
],
|
||||
"properties": {
|
||||
"agent": {
|
||||
"type": "string"
|
||||
|
|
@ -1739,7 +1815,9 @@
|
|||
},
|
||||
"AcpServerListResponse": {
|
||||
"type": "object",
|
||||
"required": ["servers"],
|
||||
"required": [
|
||||
"servers"
|
||||
],
|
||||
"properties": {
|
||||
"servers": {
|
||||
"type": "array",
|
||||
|
|
@ -1830,7 +1908,12 @@
|
|||
},
|
||||
"AgentInfo": {
|
||||
"type": "object",
|
||||
"required": ["id", "installed", "credentialsAvailable", "capabilities"],
|
||||
"required": [
|
||||
"id",
|
||||
"installed",
|
||||
"credentialsAvailable",
|
||||
"capabilities"
|
||||
],
|
||||
"properties": {
|
||||
"capabilities": {
|
||||
"$ref": "#/components/schemas/AgentCapabilities"
|
||||
|
|
@ -1873,7 +1956,11 @@
|
|||
},
|
||||
"AgentInstallArtifact": {
|
||||
"type": "object",
|
||||
"required": ["kind", "path", "source"],
|
||||
"required": [
|
||||
"kind",
|
||||
"path",
|
||||
"source"
|
||||
],
|
||||
"properties": {
|
||||
"kind": {
|
||||
"type": "string"
|
||||
|
|
@ -1909,7 +1996,10 @@
|
|||
},
|
||||
"AgentInstallResponse": {
|
||||
"type": "object",
|
||||
"required": ["already_installed", "artifacts"],
|
||||
"required": [
|
||||
"already_installed",
|
||||
"artifacts"
|
||||
],
|
||||
"properties": {
|
||||
"already_installed": {
|
||||
"type": "boolean"
|
||||
|
|
@ -1924,7 +2014,9 @@
|
|||
},
|
||||
"AgentListResponse": {
|
||||
"type": "object",
|
||||
"required": ["agents"],
|
||||
"required": [
|
||||
"agents"
|
||||
],
|
||||
"properties": {
|
||||
"agents": {
|
||||
"type": "array",
|
||||
|
|
@ -1957,7 +2049,9 @@
|
|||
},
|
||||
"FsActionResponse": {
|
||||
"type": "object",
|
||||
"required": ["path"],
|
||||
"required": [
|
||||
"path"
|
||||
],
|
||||
"properties": {
|
||||
"path": {
|
||||
"type": "string"
|
||||
|
|
@ -1966,7 +2060,9 @@
|
|||
},
|
||||
"FsDeleteQuery": {
|
||||
"type": "object",
|
||||
"required": ["path"],
|
||||
"required": [
|
||||
"path"
|
||||
],
|
||||
"properties": {
|
||||
"path": {
|
||||
"type": "string"
|
||||
|
|
@ -1988,7 +2084,12 @@
|
|||
},
|
||||
"FsEntry": {
|
||||
"type": "object",
|
||||
"required": ["name", "path", "entryType", "size"],
|
||||
"required": [
|
||||
"name",
|
||||
"path",
|
||||
"entryType",
|
||||
"size"
|
||||
],
|
||||
"properties": {
|
||||
"entryType": {
|
||||
"$ref": "#/components/schemas/FsEntryType"
|
||||
|
|
@ -2012,11 +2113,17 @@
|
|||
},
|
||||
"FsEntryType": {
|
||||
"type": "string",
|
||||
"enum": ["file", "directory"]
|
||||
"enum": [
|
||||
"file",
|
||||
"directory"
|
||||
]
|
||||
},
|
||||
"FsMoveRequest": {
|
||||
"type": "object",
|
||||
"required": ["from", "to"],
|
||||
"required": [
|
||||
"from",
|
||||
"to"
|
||||
],
|
||||
"properties": {
|
||||
"from": {
|
||||
"type": "string"
|
||||
|
|
@ -2032,7 +2139,10 @@
|
|||
},
|
||||
"FsMoveResponse": {
|
||||
"type": "object",
|
||||
"required": ["from", "to"],
|
||||
"required": [
|
||||
"from",
|
||||
"to"
|
||||
],
|
||||
"properties": {
|
||||
"from": {
|
||||
"type": "string"
|
||||
|
|
@ -2044,7 +2154,9 @@
|
|||
},
|
||||
"FsPathQuery": {
|
||||
"type": "object",
|
||||
"required": ["path"],
|
||||
"required": [
|
||||
"path"
|
||||
],
|
||||
"properties": {
|
||||
"path": {
|
||||
"type": "string"
|
||||
|
|
@ -2053,7 +2165,11 @@
|
|||
},
|
||||
"FsStat": {
|
||||
"type": "object",
|
||||
"required": ["path", "entryType", "size"],
|
||||
"required": [
|
||||
"path",
|
||||
"entryType",
|
||||
"size"
|
||||
],
|
||||
"properties": {
|
||||
"entryType": {
|
||||
"$ref": "#/components/schemas/FsEntryType"
|
||||
|
|
@ -2083,7 +2199,10 @@
|
|||
},
|
||||
"FsUploadBatchResponse": {
|
||||
"type": "object",
|
||||
"required": ["paths", "truncated"],
|
||||
"required": [
|
||||
"paths",
|
||||
"truncated"
|
||||
],
|
||||
"properties": {
|
||||
"paths": {
|
||||
"type": "array",
|
||||
|
|
@ -2098,7 +2217,10 @@
|
|||
},
|
||||
"FsWriteResponse": {
|
||||
"type": "object",
|
||||
"required": ["path", "bytesWritten"],
|
||||
"required": [
|
||||
"path",
|
||||
"bytesWritten"
|
||||
],
|
||||
"properties": {
|
||||
"bytesWritten": {
|
||||
"type": "integer",
|
||||
|
|
@ -2112,7 +2234,9 @@
|
|||
},
|
||||
"HealthResponse": {
|
||||
"type": "object",
|
||||
"required": ["status"],
|
||||
"required": [
|
||||
"status"
|
||||
],
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
|
|
@ -2121,7 +2245,10 @@
|
|||
},
|
||||
"McpConfigQuery": {
|
||||
"type": "object",
|
||||
"required": ["directory", "mcpName"],
|
||||
"required": [
|
||||
"directory",
|
||||
"mcpName"
|
||||
],
|
||||
"properties": {
|
||||
"directory": {
|
||||
"type": "string"
|
||||
|
|
@ -2135,7 +2262,10 @@
|
|||
"oneOf": [
|
||||
{
|
||||
"type": "object",
|
||||
"required": ["command", "type"],
|
||||
"required": [
|
||||
"command",
|
||||
"type"
|
||||
],
|
||||
"properties": {
|
||||
"args": {
|
||||
"type": "array",
|
||||
|
|
@ -2169,13 +2299,18 @@
|
|||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["local"]
|
||||
"enum": [
|
||||
"local"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"required": ["url", "type"],
|
||||
"required": [
|
||||
"url",
|
||||
"type"
|
||||
],
|
||||
"properties": {
|
||||
"bearerTokenEnvVar": {
|
||||
"type": "string",
|
||||
|
|
@ -2223,7 +2358,9 @@
|
|||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["remote"]
|
||||
"enum": [
|
||||
"remote"
|
||||
]
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
|
|
@ -2237,7 +2374,11 @@
|
|||
},
|
||||
"ProblemDetails": {
|
||||
"type": "object",
|
||||
"required": ["type", "title", "status"],
|
||||
"required": [
|
||||
"type",
|
||||
"title",
|
||||
"status"
|
||||
],
|
||||
"properties": {
|
||||
"detail": {
|
||||
"type": "string",
|
||||
|
|
@ -2263,7 +2404,14 @@
|
|||
},
|
||||
"ProcessConfig": {
|
||||
"type": "object",
|
||||
"required": ["maxConcurrentProcesses", "defaultRunTimeoutMs", "maxRunTimeoutMs", "maxOutputBytes", "maxLogBytesPerProcess", "maxInputBytesPerRequest"],
|
||||
"required": [
|
||||
"maxConcurrentProcesses",
|
||||
"defaultRunTimeoutMs",
|
||||
"maxRunTimeoutMs",
|
||||
"maxOutputBytes",
|
||||
"maxLogBytesPerProcess",
|
||||
"maxInputBytesPerRequest"
|
||||
],
|
||||
"properties": {
|
||||
"defaultRunTimeoutMs": {
|
||||
"type": "integer",
|
||||
|
|
@ -2295,7 +2443,9 @@
|
|||
},
|
||||
"ProcessCreateRequest": {
|
||||
"type": "object",
|
||||
"required": ["command"],
|
||||
"required": [
|
||||
"command"
|
||||
],
|
||||
"properties": {
|
||||
"args": {
|
||||
"type": "array",
|
||||
|
|
@ -2326,7 +2476,15 @@
|
|||
},
|
||||
"ProcessInfo": {
|
||||
"type": "object",
|
||||
"required": ["id", "command", "args", "tty", "interactive", "status", "createdAtMs"],
|
||||
"required": [
|
||||
"id",
|
||||
"command",
|
||||
"args",
|
||||
"tty",
|
||||
"interactive",
|
||||
"status",
|
||||
"createdAtMs"
|
||||
],
|
||||
"properties": {
|
||||
"args": {
|
||||
"type": "array",
|
||||
|
|
@ -2377,7 +2535,9 @@
|
|||
},
|
||||
"ProcessInputRequest": {
|
||||
"type": "object",
|
||||
"required": ["data"],
|
||||
"required": [
|
||||
"data"
|
||||
],
|
||||
"properties": {
|
||||
"data": {
|
||||
"type": "string"
|
||||
|
|
@ -2390,7 +2550,9 @@
|
|||
},
|
||||
"ProcessInputResponse": {
|
||||
"type": "object",
|
||||
"required": ["bytesWritten"],
|
||||
"required": [
|
||||
"bytesWritten"
|
||||
],
|
||||
"properties": {
|
||||
"bytesWritten": {
|
||||
"type": "integer",
|
||||
|
|
@ -2400,7 +2562,9 @@
|
|||
},
|
||||
"ProcessListResponse": {
|
||||
"type": "object",
|
||||
"required": ["processes"],
|
||||
"required": [
|
||||
"processes"
|
||||
],
|
||||
"properties": {
|
||||
"processes": {
|
||||
"type": "array",
|
||||
|
|
@ -2412,7 +2576,13 @@
|
|||
},
|
||||
"ProcessLogEntry": {
|
||||
"type": "object",
|
||||
"required": ["sequence", "stream", "timestampMs", "data", "encoding"],
|
||||
"required": [
|
||||
"sequence",
|
||||
"stream",
|
||||
"timestampMs",
|
||||
"data",
|
||||
"encoding"
|
||||
],
|
||||
"properties": {
|
||||
"data": {
|
||||
"type": "string"
|
||||
|
|
@ -2464,7 +2634,11 @@
|
|||
},
|
||||
"ProcessLogsResponse": {
|
||||
"type": "object",
|
||||
"required": ["processId", "stream", "entries"],
|
||||
"required": [
|
||||
"processId",
|
||||
"stream",
|
||||
"entries"
|
||||
],
|
||||
"properties": {
|
||||
"entries": {
|
||||
"type": "array",
|
||||
|
|
@ -2482,11 +2656,18 @@
|
|||
},
|
||||
"ProcessLogsStream": {
|
||||
"type": "string",
|
||||
"enum": ["stdout", "stderr", "combined", "pty"]
|
||||
"enum": [
|
||||
"stdout",
|
||||
"stderr",
|
||||
"combined",
|
||||
"pty"
|
||||
]
|
||||
},
|
||||
"ProcessRunRequest": {
|
||||
"type": "object",
|
||||
"required": ["command"],
|
||||
"required": [
|
||||
"command"
|
||||
],
|
||||
"properties": {
|
||||
"args": {
|
||||
"type": "array",
|
||||
|
|
@ -2522,7 +2703,14 @@
|
|||
},
|
||||
"ProcessRunResponse": {
|
||||
"type": "object",
|
||||
"required": ["timedOut", "stdout", "stderr", "stdoutTruncated", "stderrTruncated", "durationMs"],
|
||||
"required": [
|
||||
"timedOut",
|
||||
"stdout",
|
||||
"stderr",
|
||||
"stdoutTruncated",
|
||||
"stderrTruncated",
|
||||
"durationMs"
|
||||
],
|
||||
"properties": {
|
||||
"durationMs": {
|
||||
"type": "integer",
|
||||
|
|
@ -2564,11 +2752,17 @@
|
|||
},
|
||||
"ProcessState": {
|
||||
"type": "string",
|
||||
"enum": ["running", "exited"]
|
||||
"enum": [
|
||||
"running",
|
||||
"exited"
|
||||
]
|
||||
},
|
||||
"ProcessTerminalResizeRequest": {
|
||||
"type": "object",
|
||||
"required": ["cols", "rows"],
|
||||
"required": [
|
||||
"cols",
|
||||
"rows"
|
||||
],
|
||||
"properties": {
|
||||
"cols": {
|
||||
"type": "integer",
|
||||
|
|
@ -2584,7 +2778,10 @@
|
|||
},
|
||||
"ProcessTerminalResizeResponse": {
|
||||
"type": "object",
|
||||
"required": ["cols", "rows"],
|
||||
"required": [
|
||||
"cols",
|
||||
"rows"
|
||||
],
|
||||
"properties": {
|
||||
"cols": {
|
||||
"type": "integer",
|
||||
|
|
@ -2600,11 +2797,16 @@
|
|||
},
|
||||
"ServerStatus": {
|
||||
"type": "string",
|
||||
"enum": ["running", "stopped"]
|
||||
"enum": [
|
||||
"running",
|
||||
"stopped"
|
||||
]
|
||||
},
|
||||
"ServerStatusInfo": {
|
||||
"type": "object",
|
||||
"required": ["status"],
|
||||
"required": [
|
||||
"status"
|
||||
],
|
||||
"properties": {
|
||||
"status": {
|
||||
"$ref": "#/components/schemas/ServerStatus"
|
||||
|
|
@ -2619,7 +2821,10 @@
|
|||
},
|
||||
"SkillSource": {
|
||||
"type": "object",
|
||||
"required": ["type", "source"],
|
||||
"required": [
|
||||
"type",
|
||||
"source"
|
||||
],
|
||||
"properties": {
|
||||
"ref": {
|
||||
"type": "string",
|
||||
|
|
@ -2646,7 +2851,9 @@
|
|||
},
|
||||
"SkillsConfig": {
|
||||
"type": "object",
|
||||
"required": ["sources"],
|
||||
"required": [
|
||||
"sources"
|
||||
],
|
||||
"properties": {
|
||||
"sources": {
|
||||
"type": "array",
|
||||
|
|
@ -2658,7 +2865,10 @@
|
|||
},
|
||||
"SkillsConfigQuery": {
|
||||
"type": "object",
|
||||
"required": ["directory", "skillName"],
|
||||
"required": [
|
||||
"directory",
|
||||
"skillName"
|
||||
],
|
||||
"properties": {
|
||||
"directory": {
|
||||
"type": "string"
|
||||
|
|
@ -2676,4 +2886,4 @@
|
|||
"description": "ACP proxy v1 API"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue