Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add runwhen-contrib/runwhen-platform-mcp --skill manage-commandsgit clone --depth 1 https://github.com/runwhen-contrib/runwhen-platform-mcpWrote 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.
[](https://agentmods.dev/skills/runwhen-contrib/runwhen-platform-mcp/manage-commands)<a href="https://agentmods.dev/skills/runwhen-contrib/runwhen-platform-mcp/manage-commands"><img src="https://agentmods.dev/badge/skills/runwhen-contrib/runwhen-platform-mcp/manage-commands.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00090 | $0.01576 |
| Opus 5 | $0.00045 | $0.00788 |
| Sonnet 5 | $0.00018 | $0.00315 |
| Haiku 4.5 | $0.00009 | $0.00158 |
Grade A, and why
manage-commands 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 183 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Manage Commands
Commands package multi-step investigations into one named operation. Users invoke
them in workspace chat as /command-name. Every engineer gets the same quality
investigation without crafting perfect prompts.
When to use
- The same diagnostic sequence is repeated by multiple engineers
- "Tribal" investigation steps are known only by senior responders
- Variable quality between responders for the same issue type
- User asks to create an "investigation", "runbook", "procedure", or "workflow" for chat
- Onboarding new engineers who need guided entry points
Key concepts
Scoping
| Scope | Effect | scope_type |
scope_id |
|---|---|---|---|
| Workspace | All users in the workspace can invoke | workspace |
workspace name |
| Persona | Only available when chatting with a specific assistant | persona |
persona name |
Command vs Task
| Concept | What it is | Invoked by |
|---|---|---|
| Command | Instructions for the AI assistant — what to investigate, how to present results | Users typing /name in chat |
| Task (SLX) | A script that runs on a runner against live infrastructure | run_slx or the platform scheduler |
Commands can reference Tasks. Instead of hardcoding diagnostic details, a command can instruct the assistant to run or consult a Task for live data. This keeps commands current without manual updates.
Naming rules
Command names must be alphanumeric, underscore, or hyphen only. No spaces.
Users invoke them as /command-name in workspace chat.
Workflow
1. Audit existing commands
list_chat_commands(scope_type="workspace", scope_id="my-workspace")
2. Identify repeatable patterns
Look for investigation steps your team does repeatedly:
- "Check pods, then events, then logs in namespace X"
- "Compare config between dev and prod"
- "What changed since last deployment?"
3. Create the command
create_chat_command(
name="investigate-namespace",
command_content="""Investigate the health of a Kubernetes namespace. Follow this sequence:
1. **Pod status** — Check for crash loops, pending pods, and recent restarts
2. **Warning events** — Surface Kubernetes warning events from the last hour
3. **Error logs** — Check application logs for error patterns
4. **Resource pressure** — Note any resource quota exhaustion
5. **Dependencies** — Check if upstream/downstream services are healthy
Present findings grouped by severity. For each issue found, include specific next steps.
If the namespace is healthy, confirm it explicitly and note any recent recoveries.""",
scope_type="workspace",
scope_id="my-workspace",
description="Comprehensive namespace health investigation"
)
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.
- 8d ago First seen · 183 lines · 90 tokens per session scan A 2cc2c6779e1e
manage-commands is a skill published in the GitHub repository runwhen-contrib/runwhen-platform-mcp (1 stars, last pushed yesterday), licensed Apache-2.0. It adds 90 tokens to every session and 1,576 once invoked, about $0.0005 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-08-31.
Other skills, from other repositories
hevy-cli
Manage Hevy workouts from the terminal: read and summarize training data, search exercise templates, and create or update workouts, routines, exercises, folders, or body measurements.
help-flow
Help about Rosetta: explains capabilities and usage.
external-lib-flow
Workflow for onboarding an external private library so AI can use it without source access.
memora
Use when working with persistent memory across sessions, storing/retrieving knowledge, managing TODOs/issues, or when context from previous sessions would be helpful.
coding-flow
Light coding workflow: features, fixes, refactors, unit tests, etc.; scales small to large.
coding-agents-prompting-flow
Workflow for authoring and adapting AI-agent prompts: skills, agents, workflows, rules, etc.