call-cursor-agent

📁 dotneet/claude-code-marketplace 📅 Jan 21, 2026
32
总安装量
16
周安装量
#11515
全站排名
安装命令
npx skills add https://github.com/dotneet/claude-code-marketplace --skill call-cursor-agent

Agent 安装分布

claude-code 12
codex 11
opencode 11
antigravity 9
cursor 8

Skill 文档

Call cursor-agent to perform a task

This skill requests a task to cursor-agent.

Checking for the Existence of cursor-agent

# Check if cursor-agent is installed. Exit code 0 means success, 1 means failure.
# If not installed, skip the subsequent steps of the skill.
which cursor-agent
if [ $? -ne 0 ]; then
  echo "cursor-agent is not installed"
fi

Requesting a Task to cursor-agent

# If the model is not specified, the default model is composer-1.
model=composer-1
cursor-agent --model=$model <<EOT
{task_description}
EOT