원클릭으로
linear-move-issue
Move a Linear issue to a different project via LocalApiServer
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Move a Linear issue to a different project via LocalApiServer
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
When planning, flag uncertain assumptions and supply a ready-to-run web-research prompt to confirm them.
Local Switchboard management console — drive the board when the VS Code extension is running
Implement with high accuracy and self-review (invest effort up front to minimize rework)
Reconcile and restructure a feature's subtasks — improve each, then merge/delete/rewrite/split to make the set coherent
Deep planning, dependency checks, and adversarial review
Cloud-VM planning mode — plan first, do not auto-code in a remote VM
| name | linear-move-issue |
| description | Move a Linear issue to a different project via LocalApiServer |
| allowed-tools | Bash |
| disable-model-invocation | true |
VS Code setting switchboard.apiToken must be configured.
CUR="$PWD"
while [ "$CUR" != "/" ] && [ ! -d "$CUR/.agents/skills" ]; do CUR=$(dirname "$CUR"); done
source "$CUR/.agents/skills/_lib/sb_api_call.sh"
sb_api_call PUT "/task/linear/$ISSUE_ID/move" \
-H "Content-Type: application/json" \
-d '{
"targetProjectId": "project-uuid-here"
}'
{
"success": true,
"issueId": "...",
"targetProjectId": "..."
}