rad-ui-status

Checks the radorch dashboard UI status and reports its running state and URL.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When working with the rad orchestration dashboard UI, it can be unclear whether the UI is actually running, what URL it is served on, or whether a stale process record is misleading you. This Skill gives you a quick, reliable way to check the dashboard's status and troubleshoot UI issues. ## Core Features & Use Cases - Status Checking: Invokes the bundled radorch CLI to determine whether the dashboard UI process is alive. - URL Reporting: Returns the dashboard URL when the UI is running so you can open it immediately. - Stale PID Cleanup: Automatically cleans stale PID files so outdated process records do not produce false positives. - Use Case: You suspect the rad orchestration dashboard crashed after a restart. Run this Skill to confirm whether the recorded PID is still alive, get the current URL if it is running, and relay the result to decide whether to restart the UI. ## Quick Start Ask the assistant to check the status of the rad orchestration dashboard UI and tell you whether it is running and on what URL.

Frequently Asked Questions about rad-ui-status

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

FAQPage Schema
How do I check if the rad orchestration dashboard UI is running?▼

Run the radorch CLI with the ui status command via node radorch.mjs ui status. It returns running: true with the URL when the recorded PID is alive, otherwise running: false.

How do I find the URL of the radorch dashboard UI?▼

The ui status command returns the dashboard URL in its output whenever the UI process is running. If the process is not alive, no URL is reported and you should restart the UI.

Why does the dashboard status show a stale or dead process?▼

The UI tracks its process via a PID file, which can become stale if the process exits unexpectedly. The CLI automatically cleans stale PID files, so a dead process correctly reports running: false.

What do I need installed to run the radorch UI status check?▼

You need Node.js available on the system, since the check executes the bundled radorch.mjs script with node. No additional packages are required beyond the plugin's bundled CLI.

What are the limitations of the radorch UI status check?▼

It only reports whether the recorded PID is alive and the associated URL; it does not restart the UI, diagnose why it stopped, or verify that the dashboard responds to HTTP requests.