agentic-workflows-that-read-the-room: Command for Claude Code

.github/prompts/manage-mona-site.prompt.md

manage-mona-site is a command for Claude Code, GitHub Copilot from skills/agentic-workflows-that-read-the-room. It costs 22 tokens per session (421 once invoked), scanned A, original, MIT.

A set of commands for starting, stopping, and restarting an Astro website during local development or in GitHub Codespaces. Astro is a web framework for building websites.

In plain words
What is it for?
Use it to run the repository's site on port 4321, verify its homepage, or safely stop and restart the development server.
Why use it?
It avoids manually finding the right project directory, process, and port, while checking that the site responds and avoiding unsafe process termination.

Command for Claude CodeGitHub Copilot

Written for Claude Code and GitHub Copilot: argument-hint in frontmatter, but also a Copilot chat mode or prompt. Also seen: agent in frontmatter.

This is skills/agentic-workflows-that-read-the-room's own configuration. It tells Claude Code and GitHub Copilot how to work on agentic-workflows-that-read-the-room itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything agentic-workflows-that-read-the-room configures →

Reuse

Borrowing it

Nothing to install: this file belongs to skills/agentic-workflows-that-read-the-room. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/skills/agentic-workflows-that-read-the-room/main/.github/prompts/manage-mona-site.prompt.md
Clone the repo
git clone --depth 1 https://github.com/skills/agentic-workflows-that-read-the-room

Made for: Claude Code, GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for manage-mona-site

README.md
[![agentmods](https://agentmods.dev/badge/commands/skills/agentic-workflows-that-read-the-room/manage-mona-site/github.svg)](https://agentmods.dev/commands/skills/agentic-workflows-that-read-the-room/manage-mona-site)
Your own site
<a href="https://agentmods.dev/commands/skills/agentic-workflows-that-read-the-room/manage-mona-site"><img src="https://agentmods.dev/badge/commands/skills/agentic-workflows-that-read-the-room/manage-mona-site/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for manage-mona-site

Your own site · 80×15
<a href="https://agentmods.dev/commands/skills/agentic-workflows-that-read-the-room/manage-mona-site"><img src="https://agentmods.dev/badge/commands/skills/agentic-workflows-that-read-the-room/manage-mona-site.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 22 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 421 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00022 $0.00421
Opus 5 $0.00011 $0.00211
Sonnet 5 $0.00004 $0.00084
Haiku 4.5 $0.00002 $0.00042

Measured 5d ago against content hash b7f9039e424e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-14, from the pricing page.

Security

Grade A, and why

manage-mona-site scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/prompts/manage-mona-site.prompt.md · 53 lines

What it actually says

Manage Mona's Astro site

Manage the Astro website in the site/ directory for this repository.

Inputs

  • The first argument should be one of: start, stop, or restart.
  • Use port 4321 unless I explicitly provide another port.

Shared rules

  • Only act inside this repository.
  • Use host 0.0.0.0 when starting the site so it works locally and in GitHub Codespaces.
  • Only stop a process when you have the exact PID.
  • Never use pkill, killall, or other name-based process termination.
  • If a process on the requested port does not appear to be this repository's Astro site, stop and ask me before killing it.

Behavior

If I ask for start

  1. Check whether the site is already running on the requested port.
  2. If it is already this Astro site, tell me it is running and report the URL.
  3. Otherwise, start the Astro dev server from site/.
  4. Verify the homepage responds over HTTP.

If I ask for stop

  1. Find the exact PID listening on the requested port.
  2. If nothing is listening, tell me the site is already stopped.
  3. If the listener is this Astro site, stop it.
  4. Verify the port is no longer listening.

If I ask for restart

  1. Find and stop the exact PID currently listening on the requested port, if any.
  2. Start the Astro dev server again from site/.
  3. Verify the homepage responds over HTTP.

Response format

  • Keep the response short.
  • Always say what action you took.
  • If the site is running, include the exact URL to open.
  • If you used a PID, mention it.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 53 lines · 22 tokens per session scan A b7f9039e424e

Subscribe to this mod's changes

manage-mona-site is a command published in the GitHub repository skills/agentic-workflows-that-read-the-room (70 stars, last pushed yesterday), licensed MIT. It adds 22 tokens to every session and 421 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-10.