Install
$ agentstack add skill-understudylabs-understudy-agent-tools-check-routing-health ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Check Routing Health
Use this worker when the developer wants to know whether Understudy routing is causing errors, which workloads are routed, or what the current provider health looks like. These are read-only hosted endpoints that answer "is this us?" without asking the team.
Checked against existing skills: use-understudy-gateway owns auth, routing setup, and route writes; ramp-and-verify owns production traffic changes. This skill owns read-only diagnostic queries against the reporting surface and does not write routes or change traffic.
Safety Gates
These endpoints are read-only and carry no side effects. They do not change routes, traffic percentages, or provider configuration. Do not print the full sk_* key in output — mask it to the last 4 characters. Use understudy run to inject credentials into child processes instead of pasting keys into shell commands.
Prerequisites
The developer must be signed in (understudy status --json shows signed_in: true) and have a project configured. If not, route to [../use-understudy-gateway/SKILL.md](../use-understudy-gateway/SKILL.md) for auth setup first.
Resolve CLI
Prefer the installed understudy binary. If it is unavailable inside a repo checkout, run through the package script:
npm run build
node dist/bin.js status --json
Flow
- Confirm auth and project:
``sh understudy status --json ``
Extract org_id and project_slug from the output. Resolve the project slug to a project id via understudy projects list --json if needed — the API path requires the proj_... id, not the slug. If not signed in, route to [../use-understudy-gateway/SKILL.md](../use-understudy-gateway/SKILL.md).
- For a quick overview, call the compact status endpoint:
``sh understudy run -- curl -s \ -H "Authorization: Bearer \$UNDERSTUDY_API_KEY" \ "https://api.understudylabs.com/admin/v1/orgs/\$UNDERSTUDY_ORG_ID/projects//status?window=30m" ``
- Print the
linesarray first — it is the dense human-readable summary.
- If the developer needs details, call the individual endpoints
(routing-status, provider-health) — see [reference.md](reference.md).
- If
example_request_idsare present, offer to look them up:
``sh understudy captures get --project ``
- Interpret the results:
error_5xx_rateabove ~2% is worth investigating.- Non-zero
timeout_countorfallback_countindicates upstream instability. passthroughworkloads with errors are provider-side, not Understudy-caused.understudyorprimaryworkloads with errors may be route-related — check
provider_label and model to identify the upstream.
- If issues are found and the developer wants to roll back, route to
[../ramp-and-verify/SKILL.md](../ramp-and-verify/SKILL.md) or clear the route immediately with understudy routes clear --project .
Output Standard
End with:
- project/org context (without revealing the full key);
- compact status lines or the specific diagnostic answer;
- whether any workloads show elevated error rates;
- the window queried and when the data was generated;
- recommended next action (investigate a request ID, adjust the window, roll
back a route, or confirm healthy).
References
- [
reference.md](reference.md) — endpoint details, response shapes, field
descriptions, and the individual routing-status and provider-health surfaces.
- [
../use-understudy-gateway/SKILL.md](../use-understudy-gateway/SKILL.md) —
auth setup, route writes, and gateway inference.
- [
../ramp-and-verify/SKILL.md](../ramp-and-verify/SKILL.md) — production
ramp/rollback when diagnostics reveal a problem.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: understudylabs
- Source: understudylabs/understudy-agent-tools
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.