Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

cursor-ide-agentCursor IDE Agent 搜索

Agent Skill

cursor-ide-agent 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

19,592

周安装

833

GitHub Stars

公开资料未说明

下载量

6,864
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cursor-ide-agent(Cursor IDE Agent 搜索)
来源仓库:https://github.com/xiaoyaner0201/cursor-ide-agent
安装命令:
openclaw skills install cursor-ide-agent
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install cursor-ide-agent

简介

cursor-ide-agent 提供双模式编码支持:本地 CLI 与云端 IDE 路径可选。

  • 适用于 OpenClaw 中灵活切换开发环境以适应不同项目复杂度与团队规范。
  • 本地模式适合轻量级修改,云端模式便于跨设备同步与依赖环境统一。
  • 使用前需分别配置两种环境的认证信息与项目访问权限。
  • 注意两种模式输出格式略有差异,下游流程需做兼容性适配处理。

SKILL.md

name
cursor-agent
version
3.0.2
description
Use Cursor Agent for coding tasks via two paths: (1) Local CLI — run Cursor Agent directly from terminal for fast, general-purpose coding in any project; (2) VS Code Node — control a remote Cursor/VS Code IDE through OpenClaw Node protocol for targeted project work with full IDE intelligence. Prefer CLI for speed; use Node when you need IDE features (diagnostics, references, debugging).
metadata

Cursor Agent Skill

Two ways to use Cursor Agent from OpenClaw, for different scenarios.

Related

Path Selection

ScenarioPathWhy
Quick coding task, bug fix, refactorCLIFast, no setup, works anywhere
Generate code, review PR, write testsCLINon-interactive -p mode is perfect
Fix type errors using real diagnosticsNodediagnostics.get shows actual TS/lint errors
Navigate definitions/references firstNodelang.definition, lang.references
Run project tests and iterateNodetest.run + test.results loop
Debug with breakpointsNodeFull debug protocol
Targeted changes to a specific projectNodeIDE workspace context is precise

Default: CLI. Use Node only when you specifically need IDE intelligence.


Path 1: CLI (Local Cursor Agent)

Prerequisites

# Install
curl https://cursor.com/install -fsS | bash

# Login
agent login

# Verify
agent --version

Modes

ModeFlagUse Case
Agent(default)Full coding — reads, writes, runs commands
Plan--plan or --mode=planDesign approach first, then choose local or cloud execution
Ask--mode=askRead-only codebase exploration, no edits

Interactive Mode

# Start interactive session
agent

# Start with prompt
agent "refactor the auth module to use JWT tokens"

# Start in plan mode
agent --plan "design a caching layer for the API"

# Start in ask mode
agent --mode=ask "explain how the auth middleware works"

Non-Interactive Mode (Automation)

# One-shot task (prints result, exits)
agent -p "find and fix all unused imports in src/"

# With specific model
agent -p "review this code for security issues" --model gpt-5.2

# JSON output for parsing
agent -p "list all TODO comments" --output-format json

# Streaming JSON (real-time)
agent -p "run tests and report" --output-format stream-json --stream-partial-output

# Force mode (auto-apply changes, no confirmation)
agent -p "fix all linting errors" --force

Cloud Agent Handoff

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

# Start directly in cloud
agent -c "refactor the auth module and add comprehensive tests"

# Mid-conversation: prepend & to send to cloud
& refactor the auth module and add comprehensive tests

Pick up at cursor.com/agents.

Session Management

agent ls              # List previous conversations
agent resume          # Resume most recent
agent --continue      # Continue previous session
agent --resume="id"   # Resume specific conversation

Slash Commands (Interactive)

CommandAction
/planSwitch to Plan mode / view current plan
/askSwitch to Ask mode
/modelsSwitch AI model
/compressSummarize conversation, free context
/rulesCreate/edit rules
/commandsCreate/edit custom commands
/mcp enable <name>Enable MCP server
/mcp disable <name>Disable MCP server
/sandboxConfigure sandbox mode
`/max-mode [on\off]`Toggle Max Mode
/resumeResume previous conversation

Keyboard Shortcuts

ShortcutAction
Shift+TabRotate modes (Agent → Plan → Ask)
Shift+EnterInsert newline (multi-line prompt)
Ctrl+RReview changes (i for instructions, arrows to navigate)
Ctrl+DExit (double-press for safety)
ArrowUpCycle previous messages

Context & Rules

The CLI automatically loads:

  • .cursor/rules directory
  • AGENTS.md at project root
  • CLAUDE.md at project root
  • MCP servers from mcp.json

Use @filename or @directory/ in interactive mode to include context.

⚠️ Using CLI from OpenClaw (PTY Required)

Cursor CLI is an interactive TUI — it needs a real terminal. Use pty:true:

# ✅ Correct — with PTY
exec pty:true command:"agent -p 'Your task'" workdir:/path/to/project

# ✅ Background for longer tasks
exec pty:true background:true command:"agent -p 'Build REST API'" workdir:/path/to/project

# ❌ Wrong — will hang
exec command:"agent -p 'Your task'"

For long tasks, use background + poll:

# Start
exec pty:true background:true workdir:~/project command:"agent -p 'Add comprehensive tests for the auth module' --force"

# Check progress
process action:log sessionId:XXX

# Check if done
process action:poll sessionId:XXX

Sandbox Controls

# Start with sandbox enabled
agent --sandbox enabled

# Start with sandbox disabled
agent --sandbox disabled

# Configure interactively
/sandbox

Sandbox supports granular network access controls — define which domains the agent can reach.


Path 2: VS Code / Cursor Node

Remote-control a Cursor/VS Code IDE through the OpenClaw Node protocol. The IDE must have the openclaw-node-vscode extension installed and connected.

Prerequisites

  • Extension installed: VS Code Marketplace
  • Node visible in nodes status
  • Extension status bar shows 🟢

Invocation Pattern

nodes invoke --node "<name>" --invokeCommand "<cmd>" --invokeParamsJson '{"key":"val"}'

Timeout Guide

OperationinvokeTimeoutMsNotes
File/editor/lang15000Fast IDE operations
Git30000May involve disk I/O
Test60000Depends on test suite
Agent plan/ask180000AI thinking time
Agent run300000Full coding task

Command Reference

CategoryPrefixKey Commands
Filevscode.file.*read, write, edit, delete
Directoryvscode.dir.*list
Languagevscode.lang.*definition, references, hover, symbols, rename, codeActions, format
Editorvscode.editor.*context, openFiles, selections
Diagnosticsvscode.diagnostics.*get (errors/warnings)
Gitvscode.git.*status, diff, log, blame, stage, unstage, commit, stash
Testvscode.test.*list, run, results
Debugvscode.debug.*launch, stop, breakpoint, evaluate, stackTrace, variables, status
Agentvscode.agent.*status, run, setup
Workspacevscode.workspace.*info

Quick Examples

# Read a file
nodes invoke --node "my-cursor" --invokeCommand "vscode.file.read" \
  --invokeParamsJson '{"path":"src/main.ts"}'

# Get diagnostics (real type errors!)
nodes invoke --node "my-cursor" --invokeCommand "vscode.diagnostics.get"

# Go to definition
nodes invoke --node "my-cursor" --invokeCommand "vscode.lang.definition" \
  --invokeParamsJson '{"path":"src/main.ts","line":10,"character":5}'

# Git status + commit
nodes invoke --node "my-cursor" --invokeCommand "vscode.git.status"
nodes invoke --node "my-cursor" --invokeCommand "vscode.git.stage" \
  --invokeParamsJson '{"paths":["src/main.ts"]}'
nodes invoke --node "my-cursor" --invokeCommand "vscode.git.commit" \
  --invokeParamsJson '{"message":"fix: resolve type error"}'

# Delegate to Cursor Agent (through IDE)
nodes invoke --node "my-cursor" --invokeCommand "vscode.agent.run" \
  --invokeParamsJson '{"prompt":"Add error handling to all API endpoints","mode":"plan"}' \
  --invokeTimeoutMs 180000

Node Workflow: Fix → Verify → Commit

The real power of Node path — a closed loop with IDE intelligence:

1. diagnostics.get           → Find real errors
2. vscode.agent.run (fix)    → Let Cursor Agent fix them
3. diagnostics.get           → Verify errors resolved
4. test.run                  → Run tests
5. test.results              → Check results
6. git.diff                  → Review changes
7. git.stage + git.commit    → Ship it

No tmux, no TTY hacks — all through VS Code API.


Combined Workflow Example

Use CLI for broad tasks, switch to Node for precision:

1. CLI: agent -p "implement user authentication module" --force
   → Generates the initial code quickly

2. Node: vscode.diagnostics.get
   → Reveals 3 type errors the CLI missed

3. Node: vscode.agent.run '{"prompt":"fix these type errors: ..."}'
   → Fixes with full IDE context

4. Node: vscode.test.run
   → Runs test suite

5. Node: vscode.git.stage + vscode.git.commit
   → Clean commit

Error Handling

ErrorCauseFix
CLI hangsNo PTYAdd pty:true to exec
node not foundExtension disconnectedCheck VS Code status bar
command not allowedGateway whitelistAdd to gateway.nodes.allowCommands
timeoutOperation too longIncrease invokeTimeoutMs
path traversal blockedAbsolute path usedUse relative paths for Node

Security

  • CLI: Respects sandbox mode, command approval, rules
  • Node: All paths relative to workspace, Ed25519 device identity, Gateway approval required
  • Both: No raw shell access by default

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.93%
按下载量换算5,624

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install cursor-ide-agent 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills