hktitan/cursor-sdk · Archived

cursor-cloud

Cloud runtime for Cursor SDK — dedicated VMs, repo-bound runs, auto-PR creation, artifacts, and reattachment. Use when running long, review-oriented, or repo-modifying agents off the local machine.

First seen May 3, 2026

Installation

$ npx skills add hktitan/cursor-sdk --skill cursor-cloud

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from hktitan/cursor-sdk · top by installs.

npx skills add hktitan/cursor-sdk

Browse all from hktitan/cursor-sdk

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
internal
source
https://cursor.com/docs/sdk/typescript

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,605 B
  • docs SUMMARY.md 219 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 4 installs

SKILL.md

cursor-cloud

The cloud runtime gives each agent its own VM, persists across network drops, and can open PRs directly. Pass cloud (instead of local) on Agent.create.

When to use

  • Long-running tasks (CI bots, scheduled refactors, kanban-driven PRs)
  • Tasks that mutate a remote repo and produce a PR
  • Multi-process orchestration where you reattach to a run from a different worker

Configuration

  • [[references/cloud-options]] — full CloudOptions shape
  • [[references/repos]] — repo refs, startingRef, existing-PR mode
  • [[references/environments]] — env.type: "cloud", "pool", "machine"
  • [[references/env-vars]] — session envVars
  • [[references/auto-pr]] — autoCreatePR, workOnCurrentBranch, skipReviewerRequest

Outputs

  • [[references/git-info]] — run.git branches and PR URLs
  • [[references/artifacts]] — agent.listArtifacts() and downloadArtifact()

Lifecycle

  • [[references/reattach]] — Agent.getRun(runId, { runtime: "cloud", agentId })
  • [[references/durable-runs]] — runs survive disconnects; reattach with agentId+runId

Cross-links

  • Local mode → [[../cursor-sdk/references/local-options]]
  • Run interface → [[../cursor-runs/references/run-interface]]
  • Errors → [[../cursor-errors/SKILL]]