use std::any::Any;
use std::io::Write;
use std::path::{Path, PathBuf};
use serde_json::{Value as JsonValue, json};
use crate::commands::run::PhaseType;
use crate::constants::defaults::DEFAULT_CURSOR_MODEL;
use crate::contracts::{Runner, RunnerSandboxMode};
use crate::fsutil;
use crate::runner::RunnerError;
use super::super::command::RunnerCommandBuilder;
use super::super::plugin_trait::{
PluginCommandParts, ResponseParser, ResumeContext, RunContext, RunnerMetadata, RunnerPlugin,
};
use super::apply_analytics_env;
const CURSOR_SDK_RUNNER: &str = include_str!("../../../../assets/cursor_sdk_runner.mjs");
fn assistant_stream_chunk(content: &JsonValue) -> Option<String> {
match content {
JsonValue::String(text) => {
if text.is_empty() {
None
} else {
Some(text.to_string())
}
}
JsonValue::Array(items) => {
let mut out = String::new();
for item in items {
if let Some(text) = item.get("text").and_then(|t| t.as_str()) {
out.push_str(text);
}
}
if out.is_empty() { None } else { Some(out) }
}
_ => None,
}
}
fn assistant_message(json: &JsonValue) -> Option<&JsonValue> {
json.get("message")
.filter(|message| message.get("role").and_then(|r| r.as_str()) == Some("assistant"))
}
pub struct CursorPlugin;
impl RunnerPlugin for CursorPlugin {
fn metadata(&self) -> RunnerMetadata {
super::BuiltInRunnerPlugin::Cursor.metadata()
}
fn build_run_command(&self, ctx: RunContext<'_>) -> Result<PluginCommandParts, RunnerError> {
let (helper_path, helper_guards) = write_cursor_sdk_helper(ctx.bin)?;
let request = cursor_sdk_request(CursorSdkRequest {
operation: "run",
work_dir: ctx.work_dir,
model: &ctx.model,
message: ctx.prompt,
agent_id: None,
opts: ctx.runner_cli,
phase_type: ctx.phase_type.unwrap_or(PhaseType::Implementation),
force: false,
})?;
let builder = RunnerCommandBuilder::new(ctx.bin, ctx.work_dir)
.args([helper_path.as_os_str()])
.stdin_payload(Some(request));
let builder = apply_analytics_env(builder, &Runner::Cursor, &ctx.model);
Ok(with_additional_guards(builder.build(), helper_guards))
}
fn build_resume_command(
&self,
ctx: ResumeContext<'_>,
) -> Result<PluginCommandParts, RunnerError> {
let (helper_path, helper_guards) = write_cursor_sdk_helper(ctx.bin)?;
let request = cursor_sdk_request(CursorSdkRequest {
operation: "resume",
work_dir: ctx.work_dir,
model: &ctx.model,
message: ctx.message,
agent_id: Some(ctx.session_id),
opts: ctx.runner_cli,
phase_type: ctx.phase_type.unwrap_or(PhaseType::Implementation),
force: ctx.force,
})?;
let builder = RunnerCommandBuilder::new(ctx.bin, ctx.work_dir)
.args([helper_path.as_os_str()])
.stdin_payload(Some(request));
let builder = apply_analytics_env(builder, &Runner::Cursor, &ctx.model);
Ok(with_additional_guards(builder.build(), helper_guards))
}
fn parse_response_line(&self, line: &str, buffer: &mut String) -> Option<String> {
let json = serde_json::from_str(line)
.inspect_err(|e| log::trace!("Cursor response not valid JSON: {}", e))
.ok()?;
CursorResponseParser.parse_json(&json, buffer)
}
}
fn write_cursor_sdk_helper(
bin: &str,
) -> Result<(PathBuf, Vec<Box<dyn Any + Send + Sync>>), RunnerError> {
let temp_dir = fsutil::create_cueloop_temp_dir("cursor-sdk-runner").map_err(|err| {
RunnerError::Other(anyhow::anyhow!(
"Cursor SDK runner setup failed (bin={bin}, step=create_temp_dir): {err}"
))
})?;
let mut helper = tempfile::Builder::new()
.prefix("cursor_sdk_runner_")
.suffix(".mjs")
.tempfile_in(temp_dir.path())
.map_err(|err| {
RunnerError::Other(anyhow::anyhow!(
"Cursor SDK runner setup failed (bin={bin}, step=create_helper_file): {err}"
))
})?;
helper
.write_all(CURSOR_SDK_RUNNER.as_bytes())
.map_err(|err| {
RunnerError::Other(anyhow::anyhow!(
"Cursor SDK runner setup failed (bin={bin}, step=write_helper_file): {err}"
))
})?;
helper.flush().map_err(|err| {
RunnerError::Other(anyhow::anyhow!(
"Cursor SDK runner setup failed (bin={bin}, step=flush_helper_file): {err}"
))
})?;
let helper_path = helper.path().to_path_buf();
Ok((helper_path, vec![Box::new(helper), Box::new(temp_dir)]))
}
struct CursorSdkRequest<'a> {
operation: &'a str,
work_dir: &'a Path,
model: &'a crate::contracts::Model,
message: &'a str,
agent_id: Option<&'a str>,
opts: super::super::cli_options::ResolvedRunnerCliOptions,
phase_type: PhaseType,
force: bool,
}
fn cursor_sdk_request(args: CursorSdkRequest<'_>) -> Result<Vec<u8>, RunnerError> {
let mut request = json!({
"operation": args.operation,
"cwd": args.work_dir.to_string_lossy(),
"model": cursor_sdk_model_id(args.model),
"message": args.message,
"agent_id": args.agent_id,
"sandbox_enabled": cursor_sandbox_enabled(args.opts, args.phase_type),
});
if args.force {
request["force"] = json!(true);
}
serde_json::to_vec(&request).map_err(|err| {
RunnerError::Other(anyhow::anyhow!(
"Cursor SDK runner setup failed (step=serialize_request): {err}"
))
})
}
fn cursor_sdk_model_id(model: &crate::contracts::Model) -> &str {
match model.as_str() {
"auto" | "gpt-5.4" | "gpt-5.3" | "gpt-5.3-codex" | "gpt-5.3-codex-spark" => {
DEFAULT_CURSOR_MODEL
}
other => other,
}
}
fn cursor_sandbox_enabled(
opts: super::super::cli_options::ResolvedRunnerCliOptions,
phase_type: PhaseType,
) -> bool {
match opts.sandbox {
RunnerSandboxMode::Enabled => true,
RunnerSandboxMode::Disabled => false,
RunnerSandboxMode::Default => phase_type == PhaseType::Planning,
}
}
fn with_additional_guards(
mut parts: PluginCommandParts,
mut guards: Vec<Box<dyn Any + Send + Sync>>,
) -> PluginCommandParts {
parts.2.append(&mut guards);
parts
}
pub struct CursorResponseParser;
impl CursorResponseParser {
pub(crate) fn parse_json(&self, json: &JsonValue, buffer: &mut String) -> Option<String> {
match json.get("type").and_then(|t| t.as_str()) {
Some("assistant") if let Some(message) = assistant_message(json) => {
let content = message.get("content")?;
let delta_flag = json
.get("delta")
.or_else(|| message.get("delta"))
.and_then(|d| d.as_bool());
match delta_flag {
Some(false) => {
let text = super::extract_text_content(content)?;
buffer.clear();
buffer.push_str(&text);
Some(buffer.clone())
}
Some(true) | None => {
let chunk = assistant_stream_chunk(content)?;
buffer.push_str(&chunk);
Some(buffer.clone())
}
}
}
Some("assistant") => None,
Some("message_end") if let Some(message) = assistant_message(json) => {
let content = message.get("content")?;
let text = super::extract_text_content(content)?;
buffer.clear();
buffer.push_str(&text);
Some(buffer.clone())
}
Some("message_end") => None,
Some("result") => {
let result = json.get("result")?;
let text = super::extract_text_content(result)?;
buffer.clear();
buffer.push_str(&text);
Some(buffer.clone())
}
_ => None,
}
}
}
impl ResponseParser for CursorResponseParser {
fn parse(&self, json: &JsonValue, buffer: &mut String) -> Option<String> {
self.parse_json(json, buffer)
}
fn runner_id(&self) -> &str {
"cursor"
}
}