forked from farhoodlabs/paperclip
534aee66ae
## Thinking Path
> - Paperclip orchestrates AI agents for zero-human companies
> - There are many adapter types, one per agent-runtime product (Claude,
Codex, OpenCode, Cursor local CLI, etc.)
> - Cursor shipped a public TypeScript SDK on 2026-04-29 that exposes
Cursor's full hosted-agent platform (cloud VMs, harness, MCP, skills,
hooks)
> - Paperclip had no first-class adapter for this — agents that wanted
to use Cursor's managed cloud runtime had to fall back to the local CLI
adapter, which loses the cloud session, streaming, and durable run model
> - This PR adds a new `cursor_cloud` adapter built directly on
`@cursor/sdk`, with Paperclip's heartbeat mapped to Cursor's
durable-agent + per-run model
> - The benefit is that any Paperclip agent can now drive a Cursor cloud
agent across heartbeats with native session reuse, streaming, and
cancellation, while Paperclip remains the source of truth for issue/task
state
## What Changed
- New built-in adapter package `packages/adapters/cursor-cloud` (15
files, ~1.7k LOC) backed by `@cursor/sdk` ^1.0.12
- `src/server/execute.ts` — SDK-first lifecycle: `Agent.create` /
`Agent.resume` / `Agent.getRun` / `agent.send` / `run.stream` /
`run.wait`, with session reuse keyed on the (runtime env type, env name,
repo set) tuple
- `src/server/session.ts` — codec for `cursorAgentId` + `latestRunId` +
repo metadata, persisted in `runtime.sessionParams`
- `src/server/test.ts` — environment probe via `Cursor.me()` and
optional model validation via `Cursor.models.list()`
- `src/ui/parse-stdout.ts` + `src/cli/format-event.ts` — normalize
Cursor SDK message types (`status`, `thinking`, `assistant`, `user`,
`tool_call`, `tool_result`, `result`) into Paperclip transcript events
for the UI and CLI
- Registrations: `packages/shared/src/constants.ts`,
`packages/adapter-utils/src/session-compaction.ts`,
`server/src/adapters/{registry,builtin-adapter-types}.ts`,
`ui/src/adapters/{registry,adapter-display-registry}.ts` +
`ui/src/adapters/cursor-cloud/index.ts`, `cli/src/adapters/registry.ts`,
plus workspace deps in `cli`/`server`/`ui` `package.json`
- `ui/src/components/AgentConfigForm.tsx` — hide local-Cursor
`mode`/thinking-effort field for `cursor_cloud` (different config
surface)
- 11 vitest tests covering execute paths (fresh create, matching-resume,
active-run reattach, non-finished result), session codec round-trip,
transcript parsing, and config building
## Verification
Reviewer steps:
```bash
pnpm install
pnpm --filter @paperclipai/adapter-cursor-cloud typecheck # → clean
pnpm vitest run packages/adapters/cursor-cloud # → 11/11 passing
```
End-to-end check against a real Cursor cloud agent (requires
`CURSOR_API_KEY` and Cursor GitHub-app install on the target repo):
1. Create a `cursor_cloud` agent in Paperclip with `repoUrl` set to the
test repo, `repoStartingRef: main`, and `env.CURSOR_API_KEY` set
2. Trigger a heartbeat → adapter calls `Agent.create({ cloud: { env: {
type: "cloud" }, repos: [...] } })`, streams events, terminates on
`finished`
3. Trigger a second heartbeat → adapter calls `Agent.resume` or
`agent.send` follow-up depending on prior-run state, reusing
`cursorAgentId`
4. The Paperclip UI/CLI transcript reflects Cursor `status` / `thinking`
/ `assistant` events as they stream
5. Cancellation from Paperclip maps to `run.cancel()` or Cloud API v1
`cancelRun` for cross-heartbeat cancellation
A direct-SDK smoke run against a real repo (devinfoley/my_test_project @
main) confirmed: `Cursor.me()` ok → `Agent.create` → `agent.send` →
`run.stream()` (30 events) → terminal status `finished` in ~11s.
## Risks
- **New adapter, additive only.** No existing adapter or registry is
replaced; current `cursor` local-CLI adapter is untouched. Default
behavior of any existing agent is unchanged.
- **External dependency on `@cursor/sdk`.** Cursor's SDK is v1.0.x and
may evolve. Mocked unit tests cover the public surface used here; if the
SDK breaks compatibility we update the adapter independently.
- **Cost/budget.** `cursor_cloud` runs on Cursor's billed cloud VMs;
operators must understand they are spending money outside Paperclip's
budget controls when they enable this adapter. Same shape as other
API-billed adapters.
- **No webhook support in V1.** The SDK already provides
stream/wait/cancel/reattach, so V1 does not require a public callback
URL. If a future use case needs out-of-band wakes, we add a Cloud API v1
webhook bridge as a separate change. This is called out in the issue
plan document.
- **Lockfile.** Per repo policy, `pnpm-lock.yaml` is intentionally not
in this PR — CI's lockfile workflow will update it on merge given the
manifest changes.
## Model Used
- Provider: Anthropic Claude (via Claude Code / Paperclip `claude_local`
adapter)
- Model: `claude-opus-4-7` (Claude Opus 4.7), knowledge cutoff January
2026
- Mode: standard tool-use with extended reasoning
- Context: ~200k token window
- Capabilities used: code generation, multi-file edits, shell/test
execution, GitHub PR workflow
## 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 (11/11 in
`packages/adapters/cursor-cloud`)
- [x] I have added or updated tests where applicable (4 new test files,
11 cases)
- [ ] If this change affects the UI, I have included before/after
screenshots (the only UI change is hiding the local-Cursor mode field on
the `cursor_cloud` adapter — happy to attach a screenshot if the
reviewer wants one)
- [x] I have updated relevant documentation to reflect my changes (issue
plan document supersedes the pre-SDK design; tracked in PAPA-203)
- [x] I have considered and documented any risks above
- [x] I will address all Greptile and reviewer comments before
requesting merge
---------
Co-authored-by: Paperclip <noreply@paperclip.ing>
194 lines
6.7 KiB
TypeScript
194 lines
6.7 KiB
TypeScript
export interface SessionCompactionPolicy {
|
|
enabled: boolean;
|
|
maxSessionRuns: number;
|
|
maxRawInputTokens: number;
|
|
maxSessionAgeHours: number;
|
|
}
|
|
|
|
export type NativeContextManagement = "confirmed" | "likely" | "unknown" | "none";
|
|
|
|
export interface AdapterSessionManagement {
|
|
supportsSessionResume: boolean;
|
|
nativeContextManagement: NativeContextManagement;
|
|
defaultSessionCompaction: SessionCompactionPolicy;
|
|
}
|
|
|
|
export interface ResolvedSessionCompactionPolicy {
|
|
policy: SessionCompactionPolicy;
|
|
adapterSessionManagement: AdapterSessionManagement | null;
|
|
explicitOverride: Partial<SessionCompactionPolicy>;
|
|
source: "adapter_default" | "agent_override" | "legacy_fallback";
|
|
}
|
|
|
|
const DEFAULT_SESSION_COMPACTION_POLICY: SessionCompactionPolicy = {
|
|
enabled: true,
|
|
maxSessionRuns: 200,
|
|
maxRawInputTokens: 2_000_000,
|
|
maxSessionAgeHours: 72,
|
|
};
|
|
|
|
// Adapters with native context management still participate in session resume,
|
|
// but Paperclip should not rotate them using threshold-based compaction.
|
|
const ADAPTER_MANAGED_SESSION_POLICY: SessionCompactionPolicy = {
|
|
enabled: true,
|
|
maxSessionRuns: 0,
|
|
maxRawInputTokens: 0,
|
|
maxSessionAgeHours: 0,
|
|
};
|
|
|
|
export const LEGACY_SESSIONED_ADAPTER_TYPES = new Set([
|
|
"acpx_local",
|
|
"claude_local",
|
|
"codex_local",
|
|
"cursor_cloud",
|
|
"cursor",
|
|
"gemini_local",
|
|
"hermes_local",
|
|
"opencode_local",
|
|
"pi_local",
|
|
]);
|
|
|
|
export const ADAPTER_SESSION_MANAGEMENT: Record<string, AdapterSessionManagement> = {
|
|
acpx_local: {
|
|
supportsSessionResume: true,
|
|
nativeContextManagement: "confirmed",
|
|
defaultSessionCompaction: ADAPTER_MANAGED_SESSION_POLICY,
|
|
},
|
|
claude_local: {
|
|
supportsSessionResume: true,
|
|
nativeContextManagement: "confirmed",
|
|
defaultSessionCompaction: ADAPTER_MANAGED_SESSION_POLICY,
|
|
},
|
|
codex_local: {
|
|
supportsSessionResume: true,
|
|
nativeContextManagement: "confirmed",
|
|
defaultSessionCompaction: ADAPTER_MANAGED_SESSION_POLICY,
|
|
},
|
|
cursor_cloud: {
|
|
supportsSessionResume: true,
|
|
nativeContextManagement: "unknown",
|
|
defaultSessionCompaction: DEFAULT_SESSION_COMPACTION_POLICY,
|
|
},
|
|
cursor: {
|
|
supportsSessionResume: true,
|
|
nativeContextManagement: "unknown",
|
|
defaultSessionCompaction: DEFAULT_SESSION_COMPACTION_POLICY,
|
|
},
|
|
gemini_local: {
|
|
supportsSessionResume: true,
|
|
nativeContextManagement: "unknown",
|
|
defaultSessionCompaction: DEFAULT_SESSION_COMPACTION_POLICY,
|
|
},
|
|
opencode_local: {
|
|
supportsSessionResume: true,
|
|
nativeContextManagement: "unknown",
|
|
defaultSessionCompaction: DEFAULT_SESSION_COMPACTION_POLICY,
|
|
},
|
|
pi_local: {
|
|
supportsSessionResume: true,
|
|
nativeContextManagement: "unknown",
|
|
defaultSessionCompaction: DEFAULT_SESSION_COMPACTION_POLICY,
|
|
},
|
|
hermes_local: {
|
|
supportsSessionResume: true,
|
|
nativeContextManagement: "confirmed",
|
|
defaultSessionCompaction: ADAPTER_MANAGED_SESSION_POLICY,
|
|
},
|
|
};
|
|
|
|
function isRecord(value: unknown): value is Record<string, unknown> {
|
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
}
|
|
|
|
function readBoolean(value: unknown): boolean | undefined {
|
|
if (typeof value === "boolean") return value;
|
|
if (typeof value === "number") {
|
|
if (value === 1) return true;
|
|
if (value === 0) return false;
|
|
return undefined;
|
|
}
|
|
if (typeof value !== "string") return undefined;
|
|
const normalized = value.trim().toLowerCase();
|
|
if (normalized === "true" || normalized === "1" || normalized === "yes" || normalized === "on") {
|
|
return true;
|
|
}
|
|
if (normalized === "false" || normalized === "0" || normalized === "no" || normalized === "off") {
|
|
return false;
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
function readNumber(value: unknown): number | undefined {
|
|
if (typeof value === "number" && Number.isFinite(value)) {
|
|
return Math.max(0, Math.floor(value));
|
|
}
|
|
if (typeof value !== "string") return undefined;
|
|
const parsed = Number(value.trim());
|
|
return Number.isFinite(parsed) ? Math.max(0, Math.floor(parsed)) : undefined;
|
|
}
|
|
|
|
export function getAdapterSessionManagement(adapterType: string | null | undefined): AdapterSessionManagement | null {
|
|
if (!adapterType) return null;
|
|
return ADAPTER_SESSION_MANAGEMENT[adapterType] ?? null;
|
|
}
|
|
|
|
export function readSessionCompactionOverride(runtimeConfig: unknown): Partial<SessionCompactionPolicy> {
|
|
const runtime = isRecord(runtimeConfig) ? runtimeConfig : {};
|
|
const heartbeat = isRecord(runtime.heartbeat) ? runtime.heartbeat : {};
|
|
const compaction = isRecord(
|
|
heartbeat.sessionCompaction ?? heartbeat.sessionRotation ?? runtime.sessionCompaction,
|
|
)
|
|
? (heartbeat.sessionCompaction ?? heartbeat.sessionRotation ?? runtime.sessionCompaction) as Record<string, unknown>
|
|
: {};
|
|
|
|
const explicit: Partial<SessionCompactionPolicy> = {};
|
|
const enabled = readBoolean(compaction.enabled);
|
|
const maxSessionRuns = readNumber(compaction.maxSessionRuns);
|
|
const maxRawInputTokens = readNumber(compaction.maxRawInputTokens);
|
|
const maxSessionAgeHours = readNumber(compaction.maxSessionAgeHours);
|
|
|
|
if (enabled !== undefined) explicit.enabled = enabled;
|
|
if (maxSessionRuns !== undefined) explicit.maxSessionRuns = maxSessionRuns;
|
|
if (maxRawInputTokens !== undefined) explicit.maxRawInputTokens = maxRawInputTokens;
|
|
if (maxSessionAgeHours !== undefined) explicit.maxSessionAgeHours = maxSessionAgeHours;
|
|
|
|
return explicit;
|
|
}
|
|
|
|
export function resolveSessionCompactionPolicy(
|
|
adapterType: string | null | undefined,
|
|
runtimeConfig: unknown,
|
|
): ResolvedSessionCompactionPolicy {
|
|
const adapterSessionManagement = getAdapterSessionManagement(adapterType);
|
|
const explicitOverride = readSessionCompactionOverride(runtimeConfig);
|
|
const hasExplicitOverride = Object.keys(explicitOverride).length > 0;
|
|
const fallbackEnabled = Boolean(adapterType && LEGACY_SESSIONED_ADAPTER_TYPES.has(adapterType));
|
|
const basePolicy = adapterSessionManagement?.defaultSessionCompaction ?? {
|
|
...DEFAULT_SESSION_COMPACTION_POLICY,
|
|
enabled: fallbackEnabled,
|
|
};
|
|
|
|
return {
|
|
policy: {
|
|
enabled: explicitOverride.enabled ?? basePolicy.enabled,
|
|
maxSessionRuns: explicitOverride.maxSessionRuns ?? basePolicy.maxSessionRuns,
|
|
maxRawInputTokens: explicitOverride.maxRawInputTokens ?? basePolicy.maxRawInputTokens,
|
|
maxSessionAgeHours: explicitOverride.maxSessionAgeHours ?? basePolicy.maxSessionAgeHours,
|
|
},
|
|
adapterSessionManagement,
|
|
explicitOverride,
|
|
source: hasExplicitOverride
|
|
? "agent_override"
|
|
: adapterSessionManagement
|
|
? "adapter_default"
|
|
: "legacy_fallback",
|
|
};
|
|
}
|
|
|
|
export function hasSessionCompactionThresholds(policy: Pick<
|
|
SessionCompactionPolicy,
|
|
"maxSessionRuns" | "maxRawInputTokens" | "maxSessionAgeHours"
|
|
>) {
|
|
return policy.maxSessionRuns > 0 || policy.maxRawInputTokens > 0 || policy.maxSessionAgeHours > 0;
|
|
}
|