resource-dashboard-stop

Stop the Resource Manager dashboard via HTTP shutdown or PID file fallback.

3|Updated Apr 1, 2026
One-click install
npx skills add https://github.com/anthril/official-claude-plugins --skill resource-dashboard-stop
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: resource-dashboard-stop
Source: https://github.com/anthril/official-claude-plugins/tree/main/plugins/resource-manager/skills/resource-dashboard-stop
Command: npx skills add https://github.com/anthril/official-claude-plugins --skill resource-dashboard-stop

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Shuts down the Resource Manager localhost dashboard in a controlled, predictable way by attempting a graceful HTTP shutdown and then falling back to process termination if needed.

Core Features & Use Cases

  • Graceful HTTP shutdown via POST /api/shutdown to allow in-flight requests to complete.
  • Fallback mechanism that kills the dashboard PID from the pid-file when the HTTP shutdown fails.
  • Idempotent operation safe to run repeatedly during maintenance or shutdown workflows.

Quick Start

Issue /resource-dashboard-stop to gracefully shut down the dashboard, optionally specifying a port with --port.

Frequently Asked Questions about resource-dashboard-stop

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

FAQPage Schema
How do I gracefully shut down a localhost dashboard server using bash?

To gracefully shut down a localhost dashboard, you can post an HTTP request to the /api/shutdown endpoint. This allows in-flight requests to complete before the server stops.

What happens if an HTTP graceful shutdown fails for a local server?

If the HTTP graceful shutdown fails, the process termination falls back to killing the server process ID recorded in the pid-file, ensuring reliable and complete server termination.

Do I need curl to automate stopping a resource dashboard in bash?

Yes, you need curl support in your Bash environment to automate the HTTP POST request for the graceful shutdown mechanism of the resource dashboard server.

Is it safe to run a dashboard shutdown script multiple times during maintenance?

Yes, running the dashboard shutdown script multiple times is safe because it performs idempotent operations, meaning repeated executions during maintenance workflows will not cause errors.

Where does the fallback process termination find the PID to kill the dashboard?

The fallback process termination finds the PID to kill the dashboard by reading the pid-file located at CLAUDE_PLUGIN_DATA/dashboard.pid or a default fallback path.