70679a3321
## Thinking Path > - Paperclip orchestrates AI agents for zero-human companies. > - The environment/runtime layer decides where agent work executes and how the control plane reaches those runtimes. > - Today Paperclip can run locally and over SSH, but sandboxed execution needs a first-class environment model instead of one-off adapter behavior. > - We also want sandbox providers to be pluggable so the core does not hardcode every provider implementation. > - This branch adds the Sandbox environment path, the provider contract, and a deterministic fake provider plugin. > - That required synchronized changes across shared contracts, plugin SDK surfaces, server runtime orchestration, and the UI environment/workspace flows. > - The result is that sandbox execution becomes a core control-plane capability while keeping provider implementations extensible and testable. ## What Changed - Added sandbox runtime support to the environment execution path, including runtime URL discovery, sandbox execution targeting, orchestration, and heartbeat integration. - Added plugin-provider support for sandbox environments so providers can be supplied via plugins instead of hardcoded server logic. - Added the fake sandbox provider plugin with deterministic behavior suitable for local and automated testing. - Updated shared types, validators, plugin protocol definitions, and SDK helpers to carry sandbox provider and workspace-runtime contracts across package boundaries. - Updated server routes and services so companies can create sandbox environments, select them for work, and execute work through the sandbox runtime path. - Updated the UI environment and workspace surfaces to expose sandbox environment configuration and selection. - Added test coverage for sandbox runtime behavior, provider seams, environment route guards, orchestration, and the fake provider plugin. ## Verification - Ran locally before the final fixture-only scrub: - `pnpm -r typecheck` - `pnpm test:run` - `pnpm build` - Ran locally after the final scrub amend: - `pnpm vitest run server/src/__tests__/runtime-api.test.ts` - Reviewer spot checks: - create a sandbox environment backed by the fake provider plugin - run work through that environment - confirm sandbox provider execution does not inherit host secrets implicitly ## Risks - This touches shared contracts, plugin SDK plumbing, server runtime orchestration, and UI environment/workspace flows, so regressions would likely show up as cross-layer mismatches rather than isolated type errors. - Runtime URL discovery and sandbox callback selection are sensitive to host/bind configuration; if that logic is wrong, sandbox-backed callbacks may fail even when execution succeeds. - The fake provider plugin is intentionally deterministic and test-oriented; future providers may expose capability gaps that this branch does not yet cover. ## Model Used - OpenAI Codex coding agent on a GPT-5-class backend in the Paperclip/Codex harness. Exact backend model ID is not exposed in-session. Tool-assisted workflow with shell execution, file editing, git history inspection, and local test execution. ## Checklist - [x] I have included a thinking path that traces from project context to this change - [x] I have specified the model used (with version and capability details) - [x] I have checked ROADMAP.md and confirmed this PR does not duplicate planned core work - [x] I have run tests locally and they pass - [x] I have added or updated tests where applicable - [ ] If this change affects the UI, I have included before/after screenshots - [x] I have updated relevant documentation to reflect my changes - [x] I have considered and documented any risks above - [x] I will address all Greptile and reviewer comments before requesting merge
340 lines
9.1 KiB
TypeScript
340 lines
9.1 KiB
TypeScript
/**
|
|
* `@paperclipai/plugin-sdk` — Paperclip plugin worker-side SDK.
|
|
*
|
|
* This is the main entrypoint for plugin worker code. For plugin UI bundles,
|
|
* import from `@paperclipai/plugin-sdk/ui` instead.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* // Plugin worker entrypoint (dist/worker.ts)
|
|
* import { definePlugin, runWorker, z } from "@paperclipai/plugin-sdk";
|
|
*
|
|
* const plugin = definePlugin({
|
|
* async setup(ctx) {
|
|
* ctx.logger.info("Plugin starting up");
|
|
*
|
|
* ctx.events.on("issue.created", async (event) => {
|
|
* ctx.logger.info("Issue created", { issueId: event.entityId });
|
|
* });
|
|
*
|
|
* ctx.jobs.register("full-sync", async (job) => {
|
|
* ctx.logger.info("Starting full sync", { runId: job.runId });
|
|
* // ... sync implementation
|
|
* });
|
|
*
|
|
* ctx.data.register("sync-health", async ({ companyId }) => {
|
|
* const state = await ctx.state.get({
|
|
* scopeKind: "company",
|
|
* scopeId: String(companyId),
|
|
* stateKey: "last-sync-at",
|
|
* });
|
|
* return { lastSync: state };
|
|
* });
|
|
* },
|
|
*
|
|
* async onHealth() {
|
|
* return { status: "ok" };
|
|
* },
|
|
* });
|
|
*
|
|
* export default plugin;
|
|
* runWorker(plugin, import.meta.url);
|
|
* ```
|
|
*
|
|
* @see PLUGIN_SPEC.md §14 — SDK Surface
|
|
* @see PLUGIN_SPEC.md §29.2 — SDK Versioning
|
|
*/
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Main factory
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export { definePlugin } from "./define-plugin.js";
|
|
export { createTestHarness, createEnvironmentTestHarness, createFakeEnvironmentDriver, filterEnvironmentEvents, assertEnvironmentEventOrder, assertLeaseLifecycle, assertWorkspaceRealizationLifecycle, assertExecutionLifecycle, assertEnvironmentError } from "./testing.js";
|
|
export { createPluginBundlerPresets } from "./bundlers.js";
|
|
export { startPluginDevServer, getUiBuildSnapshot } from "./dev-server.js";
|
|
export { startWorkerRpcHost, runWorker } from "./worker-rpc-host.js";
|
|
export {
|
|
createHostClientHandlers,
|
|
getRequiredCapability,
|
|
CapabilityDeniedError,
|
|
} from "./host-client-factory.js";
|
|
|
|
// JSON-RPC protocol helpers and constants
|
|
export {
|
|
JSONRPC_VERSION,
|
|
JSONRPC_ERROR_CODES,
|
|
PLUGIN_RPC_ERROR_CODES,
|
|
HOST_TO_WORKER_REQUIRED_METHODS,
|
|
HOST_TO_WORKER_OPTIONAL_METHODS,
|
|
MESSAGE_DELIMITER,
|
|
createRequest,
|
|
createSuccessResponse,
|
|
createErrorResponse,
|
|
createNotification,
|
|
isJsonRpcRequest,
|
|
isJsonRpcNotification,
|
|
isJsonRpcResponse,
|
|
isJsonRpcSuccessResponse,
|
|
isJsonRpcErrorResponse,
|
|
serializeMessage,
|
|
parseMessage,
|
|
JsonRpcParseError,
|
|
JsonRpcCallError,
|
|
_resetIdCounter,
|
|
} from "./protocol.js";
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Type exports
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// Plugin definition and lifecycle types
|
|
export type {
|
|
PluginDefinition,
|
|
PaperclipPlugin,
|
|
PluginHealthDiagnostics,
|
|
PluginConfigValidationResult,
|
|
PluginWebhookInput,
|
|
PluginApiRequestInput,
|
|
PluginApiResponse,
|
|
} from "./define-plugin.js";
|
|
export type {
|
|
TestHarness,
|
|
TestHarnessOptions,
|
|
TestHarnessLogEntry,
|
|
EnvironmentTestHarness,
|
|
EnvironmentTestHarnessOptions,
|
|
EnvironmentEventRecord,
|
|
FakeEnvironmentDriverOptions,
|
|
} from "./testing.js";
|
|
export type {
|
|
PluginBundlerPresetInput,
|
|
PluginBundlerPresets,
|
|
EsbuildLikeOptions,
|
|
RollupLikeConfig,
|
|
} from "./bundlers.js";
|
|
export type { PluginDevServer, PluginDevServerOptions } from "./dev-server.js";
|
|
export type {
|
|
WorkerRpcHostOptions,
|
|
WorkerRpcHost,
|
|
RunWorkerOptions,
|
|
} from "./worker-rpc-host.js";
|
|
export type {
|
|
HostServices,
|
|
HostClientFactoryOptions,
|
|
HostClientHandlers,
|
|
} from "./host-client-factory.js";
|
|
|
|
// JSON-RPC protocol types
|
|
export type {
|
|
JsonRpcId,
|
|
JsonRpcRequest,
|
|
JsonRpcSuccessResponse,
|
|
JsonRpcError,
|
|
JsonRpcErrorResponse,
|
|
JsonRpcResponse,
|
|
JsonRpcNotification,
|
|
JsonRpcMessage,
|
|
JsonRpcErrorCode,
|
|
PluginRpcErrorCode,
|
|
InitializeParams,
|
|
InitializeResult,
|
|
ConfigChangedParams,
|
|
ValidateConfigParams,
|
|
OnEventParams,
|
|
RunJobParams,
|
|
GetDataParams,
|
|
PerformActionParams,
|
|
ExecuteToolParams,
|
|
PluginEnvironmentDiagnostic,
|
|
PluginEnvironmentDriverBaseParams,
|
|
PluginEnvironmentValidateConfigParams,
|
|
PluginEnvironmentValidationResult,
|
|
PluginEnvironmentProbeParams,
|
|
PluginEnvironmentProbeResult,
|
|
PluginEnvironmentLease,
|
|
PluginEnvironmentAcquireLeaseParams,
|
|
PluginEnvironmentResumeLeaseParams,
|
|
PluginEnvironmentReleaseLeaseParams,
|
|
PluginEnvironmentDestroyLeaseParams,
|
|
PluginEnvironmentRealizeWorkspaceParams,
|
|
PluginEnvironmentRealizeWorkspaceResult,
|
|
PluginEnvironmentExecuteParams,
|
|
PluginEnvironmentExecuteResult,
|
|
PluginModalBoundsRequest,
|
|
PluginRenderCloseEvent,
|
|
PluginLauncherRenderContextSnapshot,
|
|
HostToWorkerMethods,
|
|
HostToWorkerMethodName,
|
|
WorkerToHostMethods,
|
|
WorkerToHostMethodName,
|
|
HostToWorkerRequest,
|
|
HostToWorkerResponse,
|
|
WorkerToHostRequest,
|
|
WorkerToHostResponse,
|
|
WorkerToHostNotifications,
|
|
WorkerToHostNotificationName,
|
|
} from "./protocol.js";
|
|
|
|
// Plugin context and all client interfaces
|
|
export type {
|
|
PluginContext,
|
|
PluginConfigClient,
|
|
PluginEventsClient,
|
|
PluginJobsClient,
|
|
PluginLaunchersClient,
|
|
PluginHttpClient,
|
|
PluginSecretsClient,
|
|
PluginActivityClient,
|
|
PluginActivityLogEntry,
|
|
PluginStateClient,
|
|
PluginEntitiesClient,
|
|
PluginProjectsClient,
|
|
PluginCompaniesClient,
|
|
PluginIssuesClient,
|
|
PluginIssueMutationActor,
|
|
PluginIssueRelationsClient,
|
|
PluginIssueRelationSummary,
|
|
PluginIssueCheckoutOwnership,
|
|
PluginIssueWakeupResult,
|
|
PluginIssueWakeupBatchResult,
|
|
PluginIssueRunSummary,
|
|
PluginIssueApprovalSummary,
|
|
PluginIssueCostSummary,
|
|
PluginBudgetIncidentSummary,
|
|
PluginIssueInvocationBlockSummary,
|
|
PluginIssueOrchestrationSummary,
|
|
PluginIssueSubtreeOptions,
|
|
PluginIssueAssigneeSummary,
|
|
PluginIssueSubtree,
|
|
PluginIssueSummariesClient,
|
|
PluginAgentsClient,
|
|
PluginAgentSessionsClient,
|
|
AgentSession,
|
|
AgentSessionEvent,
|
|
AgentSessionSendResult,
|
|
PluginGoalsClient,
|
|
PluginDataClient,
|
|
PluginActionsClient,
|
|
PluginStreamsClient,
|
|
PluginToolsClient,
|
|
PluginMetricsClient,
|
|
PluginTelemetryClient,
|
|
PluginLogger,
|
|
} from "./types.js";
|
|
|
|
// Supporting types for context clients
|
|
export type {
|
|
ScopeKey,
|
|
EventFilter,
|
|
PluginEvent,
|
|
PluginJobContext,
|
|
PluginLauncherRegistration,
|
|
ToolRunContext,
|
|
ToolResult,
|
|
PluginEntityUpsert,
|
|
PluginEntityRecord,
|
|
PluginEntityQuery,
|
|
PluginWorkspace,
|
|
Company,
|
|
Project,
|
|
Issue,
|
|
IssueComment,
|
|
IssueDocumentSummary,
|
|
Agent,
|
|
Goal,
|
|
PluginDatabaseClient,
|
|
} from "./types.js";
|
|
|
|
// Manifest and constant types re-exported from @paperclipai/shared
|
|
// Plugin authors import manifest types from here so they have a single
|
|
// dependency (@paperclipai/plugin-sdk) for all plugin authoring needs.
|
|
export type {
|
|
PaperclipPluginManifestV1,
|
|
PluginJobDeclaration,
|
|
PluginWebhookDeclaration,
|
|
PluginToolDeclaration,
|
|
PluginEnvironmentDriverDeclaration,
|
|
PluginUiSlotDeclaration,
|
|
PluginUiDeclaration,
|
|
PluginLauncherActionDeclaration,
|
|
PluginLauncherRenderDeclaration,
|
|
PluginLauncherDeclaration,
|
|
PluginMinimumHostVersion,
|
|
PluginDatabaseDeclaration,
|
|
PluginApiRouteCompanyResolution,
|
|
PluginApiRouteDeclaration,
|
|
PluginRecord,
|
|
PluginDatabaseNamespaceRecord,
|
|
PluginMigrationRecord,
|
|
PluginConfig,
|
|
JsonSchema,
|
|
PluginStatus,
|
|
PluginCategory,
|
|
PluginCapability,
|
|
PluginUiSlotType,
|
|
PluginUiSlotEntityType,
|
|
PluginLauncherPlacementZone,
|
|
PluginLauncherAction,
|
|
PluginLauncherBounds,
|
|
PluginLauncherRenderEnvironment,
|
|
PluginStateScopeKind,
|
|
PluginJobStatus,
|
|
PluginJobRunStatus,
|
|
PluginJobRunTrigger,
|
|
PluginWebhookDeliveryStatus,
|
|
PluginDatabaseCoreReadTable,
|
|
PluginDatabaseMigrationStatus,
|
|
PluginDatabaseNamespaceMode,
|
|
PluginDatabaseNamespaceStatus,
|
|
PluginApiRouteAuthMode,
|
|
PluginApiRouteCheckoutPolicy,
|
|
PluginApiRouteMethod,
|
|
PluginEventType,
|
|
PluginBridgeErrorCode,
|
|
} from "./types.js";
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Zod re-export
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Zod is re-exported for plugin authors to use when defining their
|
|
* `instanceConfigSchema` and tool `parametersSchema`.
|
|
*
|
|
* Plugin authors do not need to add a separate `zod` dependency.
|
|
*
|
|
* @see PLUGIN_SPEC.md §14.1 — Example SDK Shape
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* import { z } from "@paperclipai/plugin-sdk";
|
|
*
|
|
* const configSchema = z.object({
|
|
* apiKey: z.string().describe("Your API key"),
|
|
* workspace: z.string().optional(),
|
|
* });
|
|
* ```
|
|
*/
|
|
export { z } from "zod";
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Constants re-exports (for plugin code that needs to check values at runtime)
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
PLUGIN_API_VERSION,
|
|
PLUGIN_STATUSES,
|
|
PLUGIN_CATEGORIES,
|
|
PLUGIN_CAPABILITIES,
|
|
PLUGIN_UI_SLOT_TYPES,
|
|
PLUGIN_UI_SLOT_ENTITY_TYPES,
|
|
PLUGIN_STATE_SCOPE_KINDS,
|
|
PLUGIN_JOB_STATUSES,
|
|
PLUGIN_JOB_RUN_STATUSES,
|
|
PLUGIN_JOB_RUN_TRIGGERS,
|
|
PLUGIN_WEBHOOK_DELIVERY_STATUSES,
|
|
PLUGIN_EVENT_TYPES,
|
|
PLUGIN_BRIDGE_ERROR_CODES,
|
|
} from "@paperclipai/shared";
|