$npx -y skills add evan043/claude-cli-advanced-starter-pack --skill panelLaunch the CCASP Control Panel in a new terminal window for persistent command access.
| 1 | # CCASP Control Panel |
| 2 | |
| 3 | Launch the CCASP Control Panel in a new terminal window for persistent command access. |
| 4 | |
| 5 | ## Instructions for Claude |
| 6 | |
| 7 | **EXECUTE IMMEDIATELY**: Launch the panel in a new terminal window using the appropriate command for the detected platform. |
| 8 | |
| 9 | ### Platform Detection |
| 10 | |
| 11 | Check the platform and run the appropriate command: |
| 12 | |
| 13 | **Windows** (default - check for `COMSPEC` or `windir` environment variable): |
| 14 | ```bash |
| 15 | start powershell -NoExit -Command "ccasp panel" |
| 16 | ``` |
| 17 | |
| 18 | **macOS** (check for `TERM_PROGRAM=Apple_Terminal` or Darwin): |
| 19 | ```bash |
| 20 | osascript -e 'tell application "Terminal" to do script "ccasp panel"' |
| 21 | ``` |
| 22 | |
| 23 | **Linux** (gnome-terminal): |
| 24 | ```bash |
| 25 | gnome-terminal -- ccasp panel & |
| 26 | ``` |
| 27 | |
| 28 | ### After Launch |
| 29 | |
| 30 | Display this confirmation: |
| 31 | |
| 32 | ``` |
| 33 | ✅ CCASP Control Panel launched in a new terminal window! |
| 34 | |
| 35 | ┌─────────────────────────────────────────────────────────────────┐ |
| 36 | │ CCASP Control Panel (NEW WINDOW) │ |
| 37 | ├─────────────────────────────────────────────────────────────────┤ |
| 38 | │ │ |
| 39 | │ Agents & Skills: │ |
| 40 | │ [A] Create Agent [H] Create Hook [S] Create Skill │ |
| 41 | │ [M] Explore MCP [C] Claude Audit [E] Explore Code │ |
| 42 | │ │ |
| 43 | │ Quick Actions: │ |
| 44 | │ [P] Phase Dev Plan [G] GitHub Task [T] Run E2E Tests │ |
| 45 | │ [U] Update Check │ |
| 46 | │ │ |
| 47 | │ Controls: │ |
| 48 | │ [Q] Quit [R] Refresh [X] Clear Queue [?] Help │ |
| 49 | │ │ |
| 50 | └─────────────────────────────────────────────────────────────────┘ |
| 51 | |
| 52 | How to use: |
| 53 | 1. Switch to the new terminal window with the panel |
| 54 | 2. Press a single key to select a command (e.g., 'A' for Create Agent) |
| 55 | 3. Return to this Claude Code session |
| 56 | 4. Press Enter on an empty prompt - the command will execute automatically |
| 57 | |
| 58 | Note: If commands don't auto-execute, run: ccasp install-panel-hook --global |
| 59 | ``` |
| 60 | |
| 61 | ### First-Time Setup |
| 62 | |
| 63 | If the user hasn't used the panel before, also mention: |
| 64 | |
| 65 | ``` |
| 66 | First time using the panel? Install the hook for auto-execution: |
| 67 | ccasp install-panel-hook --global |
| 68 | |
| 69 | Then restart Claude Code CLI for the hook to take effect. |
| 70 | ``` |
| 71 | |
| 72 | ## How It Works |
| 73 | |
| 74 | ``` |
| 75 | ┌─────────────────────────────────────────────────────────────────┐ |
| 76 | │ Panel (NEW terminal) │ Claude Code (THIS terminal) │ |
| 77 | ├───────────────────────────────┼─────────────────────────────────┤ |
| 78 | │ User presses 'A' │ │ |
| 79 | │ ↓ │ │ |
| 80 | │ Queue: /create-agent │ │ |
| 81 | │ ↓ │ │ |
| 82 | │ │ User presses Enter │ |
| 83 | │ │ ↓ │ |
| 84 | │ │ Hook reads queue │ |
| 85 | │ │ ↓ │ |
| 86 | │ │ Executes /create-agent │ |
| 87 | └───────────────────────────────┴─────────────────────────────────┘ |
| 88 | |
| 89 | Queue file: ~/.claude/ccasp-panel/command-queue.json |
| 90 | ``` |