From spawn
Spawn a new Claude Code session in a Warp terminal tab. Trigger: "/spawn", "새 세션 띄워줘", "터미널 열어줘", "spawn", "새 탭에서 시작해줘", "별도 세션에서 해줘", "Warp에서 열어줘"
How this skill is triggered — by the user, by Claude, or both
Slash command
/spawn:spawnThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Opens a new Warp terminal tab and starts an interactive Claude Code session.
Opens a new Warp terminal tab and starts an interactive Claude Code session.
claude CLI commandInterpret the user's natural language request and build the appropriate command. The spawned session is always interactive — the user will continue the conversation there.
| User says | Command |
|---|---|
| "태스크 리스트 X로 세션 시작해줘" | CLAUDE_CODE_TASK_LIST_ID=X claude |
| "디버깅 세션 열어줘" | claude --agent debugger |
| "코드 리뷰 세션 띄워줘" | claude --agent code-reviewer |
| "그냥 새 세션 하나 열어줘" | claude |
| "이 작업 새 세션에서 해줘" | claude $'작업 맥락과 지시사항' |
| "Ralph 모드로 띄워줘" / "dangerous mode" / "퍼미션 스킵" | claude --dangerously-skip-permissions |
새 세션에 작업 맥락을 전달해야 할 때, 반드시 $'...' (ANSI-C quoting)을 사용한다.
claude $'작업 배경과 지시사항.\n\n해야 할 것:\n1. 첫 번째\n2. 두 번째'
규칙:
-p 금지 — one-shot 모드라 세션이 바로 종료됨--append-system-prompt 금지 — 유저 프롬프트가 없으면 Claude가 동작 안 함"..." 대신 $'...' 사용 — Conclave 내부 터미널에서 "..."로 전달하면 MCP config 경로로 오해석되는 이슈 있음맥락이 필요 없는 경우만 claude 단독 실행:
If the intent is ambiguous, ask the user to clarify using AskUserQuestion.
Multiple flags can be combined:
CLAUDE_CODE_TASK_LIST_ID=my-tasks claude --agent debugger
claude --dangerously-skip-permissions $'작업 맥락'
CLAUDE_CODE_TASK_LIST_ID=X claude --dangerously-skip-permissions
NON-NEGOTIABLE: Use this exact AppleScript pattern. Do NOT modify it.
osascript -e '
set the clipboard to "<COMMAND_HERE>"
tell application "System Events"
tell process "stable"
click menu item "New Terminal Tab" of menu "File" of menu bar 1
delay 3
click menu item "Paste" of menu "Edit" of menu bar 1
delay 1
keystroke return
end tell
end tell
'
CRITICAL rules:
"stable", NOT "Warp"Edit > Paste menu click, NOT keystroke "v" using command down (Cmd+V doesn't work in Warp)File > New Terminal Tab menu click, NOT keystroke "t" using command downkeystroke return at the end is REQUIRED — it submits the pasted commandTell the user:
Do NOT try to interact with the spawned session. It's independent.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub namho-hong/team-offlight-claude-code-plugins --plugin spawn