Cursor IDE Agent

ReviewAudited by ClawScan on May 10, 2026.

Overview

This is a legitimate Cursor integration, but it includes no-confirm, background, and cloud-agent workflows that can let Cursor modify projects or run commands with limited review.

Install only if you intend to let Cursor Agent work on your code. Prefer plan/ask mode first, keep changes in version control, review project instruction files and MCP config, and avoid --force, background execution, or cloud handoff unless you explicitly want unattended code changes.

Findings (6)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If used carelessly, Cursor Agent could change many files or run project commands without the user reviewing each change first.

Why it was flagged

The skill tells OpenClaw how to run an external coding agent that can read, write, and execute commands, including force/no-confirm and background examples. This is purpose-aligned but materially risky without explicit approval boundaries.

Skill content
| **Agent** | (default) | Full coding — reads, writes, runs commands | ... # Force mode (auto-apply changes, no confirmation)
agent -p "fix all linting errors" --force ... exec pty:true background:true ... --force
Recommendation

Use plan or ask mode first, keep projects under version control, enable sandboxing where possible, and require explicit user approval before using --force or background execution.

What this means

Work may continue in Cursor's cloud under the user's account after handoff.

Why it was flagged

The cloud handoff is disclosed and purpose-aligned, but it allows an agentic coding task to continue remotely after the immediate local interaction.

Skill content
Push work to Cursor's cloud to continue running while you're away:

agent -c "refactor the auth module and add comprehensive tests"
Recommendation

Use cloud handoff only when intended, monitor the Cursor agents page, and stop or review cloud tasks before merging or deploying changes.

What this means

Cursor CLI and cloud-agent actions may use the privileges, quotas, and workspace access associated with the logged-in Cursor account.

Why it was flagged

The skill relies on a Cursor account/session. This is expected for Cursor, but actions will occur under the user's Cursor identity.

Skill content
# Login
agent login
Recommendation

Log in with the intended account and understand what repositories, workspaces, and cloud features that account can access.

What this means

Installing the CLI runs code downloaded from Cursor's site on the local machine.

Why it was flagged

The setup instructions use a remote installer script. This appears to be the official Cursor installer and is central to the skill, but it is external code not included in the reviewed artifacts.

Skill content
curl https://cursor.com/install -fsS | bash
Recommendation

Verify the installer URL, use official Cursor installation methods, and avoid running the command in a privileged shell unless necessary.

What this means

A repository can steer the agent's behavior through local rule or instruction files.

Why it was flagged

Project-local instruction files are automatically loaded into the coding agent's context. That is normal for agentic coding workflows, but untrusted repositories can contain instructions that influence behavior.

Skill content
The CLI automatically loads:
- `.cursor/rules` directory
- `AGENTS.md` at project root
- `CLAUDE.md` at project root
- MCP servers from `mcp.json`
Recommendation

Review `.cursor/rules`, `AGENTS.md`, `CLAUDE.md`, and `mcp.json` before using the skill in unfamiliar projects.

What this means

The agent may interact with an IDE workspace, diagnostics, tests, debugging features, and related project context.

Why it was flagged

The Node path uses an IDE control channel. This is disclosed and aligned with the skill, but it means workspace state and IDE actions cross a protocol boundary.

Skill content
Remote-control a Cursor/VS Code IDE through the OpenClaw Node protocol.
Recommendation

Use the Node path only with trusted IDE extensions and trusted workspaces, and confirm which workspace is connected before running actions.