rad-ui-stop

Stops the rad orchestration dashboard UI by terminating its recorded process.

Updated May 24, 2026
One-click install
npx skills add https://github.com/MetalHexx/rad-orc-marketplace --skill rad-ui-stop-metalhexx
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: rad-ui-stop
Source: https://github.com/MetalHexx/rad-orc-marketplace/tree/main/claude-plugin/skills/rad-ui-stop
Command: npx skills add https://github.com/MetalHexx/rad-orc-marketplace --skill rad-ui-stop-metalhexx

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When the rad orchestration dashboard UI becomes unresponsive or needs to be shut down, users need a reliable way to terminate it cleanly without manually hunting for process IDs. ## Core Features & Use Cases - Graceful Shutdown: Sends SIGTERM to the recorded PID of the running dashboard UI and removes the PID file. - Idempotent Operation: Reports success even if the UI was not running, so it is safe to invoke repeatedly. - Use Case: If the dashboard UI is misbehaving, invoke this skill to stop it, then restart the UI to resolve the issue. ## Quick Start Ask the assistant to stop the rad orchestration dashboard UI and report whether it was running.

Frequently Asked Questions about rad-ui-stop

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I stop the rad orchestration dashboard UI?▼

Invoke this skill, which runs the bundled radorch CLI with the ui stop command. The CLI sends SIGTERM to the recorded PID, removes the PID file, and reports the result.

What happens if I stop the dashboard UI when it is not running?▼

The operation is idempotent. If the UI was not running, the CLI still returns a success envelope with stopped set to true, so no error occurs.

Can stopping the UI help fix dashboard issues?▼

Yes. If the dashboard UI is misbehaving, stopping it and then restarting it is a recommended troubleshooting step to resolve common issues.

Does the stop command force-kill the UI process?▼

No. The CLI sends SIGTERM to the recorded PID, which requests a graceful termination rather than an immediate force kill, and then cleans up the PID file.