ワンクリックで
cursor-agent
Wrapper around cursor-agent CLI for non-interactive runs (prompt via args/file/stdin) with resume support.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Wrapper around cursor-agent CLI for non-interactive runs (prompt via args/file/stdin) with resume support.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Wrapper around codex CLI for non-interactive runs (prompt via args/file/stdin) with resume support. Outputs session_id for conversation continuation.
Multi-agent debate orchestrator. Use when you want multiple AI perspectives on a question, plan review, or architectural decision. Runs parallel agent panels with a Chair synthesizing responses.
Wrapper around gemini CLI for non-interactive runs (prompt via args/file/stdin) with resume support. Outputs session_id for conversation continuation.
SDK-based Claude agent with full Task tool access. Use for executing handoff prompts or spawning nested sub-agents.
This skill should be used when the user asks to "implement this plan", "generate execution prompts", "super implement", "create handoff from plan", or wants to transform a large plan into self-contained execution-ready prompt artifacts.
ALWAYS use this skill instead of Read when reading Claude Code transcript files (.jsonl in ~/.claude/projects/, ~/.claude/history.jsonl, or paths containing 'transcript'). Token-efficient format that extracts USER/ASSISTANT exchanges and tool summaries, strips metadata.
| name | cursor-agent |
| description | Wrapper around cursor-agent CLI for non-interactive runs (prompt via args/file/stdin) with resume support. |
| allowed-tools | Bash |
Thin wrapper around cursor-agent CLI:
PROMPT_FILE, or stdin--resume or CURSOR_SESSION env var--force, --approve-mcps, --browser# Arguments
.claude/skills/cursor-agent/scripts/cursor-agent Your prompt here
# File via env var
PROMPT_FILE=task.md .claude/skills/cursor-agent/scripts/cursor-agent
# Stdin
cat task.md | .claude/skills/cursor-agent/scripts/cursor-agent
# Resume by session ID (returned from previous run)
.claude/skills/cursor-agent/scripts/cursor-agent --resume <session-id> "Follow-up question"
# Via environment variable
CURSOR_SESSION=<session-id> .claude/skills/cursor-agent/scripts/cursor-agent "Follow-up"
# Via environment variable
CURSOR_AGENT_MODEL=gpt-5 .claude/skills/cursor-agent/scripts/cursor-agent "Your prompt"
| Variable | Description |
|---|---|
PROMPT_FILE | Read prompt from this file |
CURSOR_AGENT_MODEL | Passed as --model |
CURSOR_SESSION | Session ID to resume (fallback: CHAT_ID, SESSION_ID) |
Returns the response followed by the session ID:
<response text>
[session_id: <uuid>]
Capture the session ID to continue the conversation in subsequent calls.
cursor-agent --print --output-format json in non-interactive mode--fork/-f and CHAT_ID/SESSION_ID still work