Back to Skills

call-cursor-agent

verified

Call cursor-agent to perform a task.

View on GitHub

Marketplace

dotneet-marketplace

dotneet/claude-code-marketplace

Plugin

agent-call

Repository

dotneet/claude-code-marketplace

agent-call/skills/call-cursor-agent/SKILL.md

Last Verified

January 23, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/dotneet/claude-code-marketplace/blob/main/agent-call/skills/call-cursor-agent/SKILL.md -a claude-code --skill call-cursor-agent

Installation paths:

Claude
.claude/skills/call-cursor-agent/
Powered by add-skill CLI

Instructions

# Call cursor-agent to perform a task

This skill requests a task to cursor-agent.

## Checking for the Existence of cursor-agent

```bash
# 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

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

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
551 chars