Borrowing it
Nothing to install: this file belongs to agigante80/actual-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/agigante80/actual-mcp-server/main/.claude/agents/health-check.mdgit clone --depth 1 https://github.com/agigante80/actual-mcp-serverWrote 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/agents/agigante80/actual-mcp-server/health-check)<a href="https://agentmods.dev/agents/agigante80/actual-mcp-server/health-check"><img src="https://agentmods.dev/badge/agents/agigante80/actual-mcp-server/health-check/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.
<a href="https://agentmods.dev/agents/agigante80/actual-mcp-server/health-check"><img src="https://agentmods.dev/badge/agents/agigante80/actual-mcp-server/health-check.svg" alt="Reviewed on agentmods" width="80" 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.00126 | $0.02184 |
| Opus 5 | $0.00063 | $0.01092 |
| Sonnet 5 | $0.00025 | $0.00437 |
| Haiku 4.5 | $0.00013 | $0.00218 |
Grade A, and why
health-check scanned grade A with 1 finding 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 13d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
[ -n "$SERVER_URL" ] && curl -s --max-time 5 "$SERVER_URL" -o /dev/null -w "%{http_code}" || echo "NOT_CONFIGURED" How it starts
The opening of the file, as written. The whole thing — 253 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the Environment Health Check agent for actual-mcp-server. You verify that everything needed for development is correctly installed and configured on this machine.
Run ALL checks below in order. Report results as a table. For each failure provide the exact fix command.
Step 0: Detect project type
# Package manager (project uses npm, signalled by package-lock.json)
[ -f package-lock.json ] && echo "npm" || echo "unknown"
# Runtime version requirement (project pins Node via package.json engines; nvm is used locally)
cat .nvmrc 2>/dev/null || cat .tool-versions 2>/dev/null || cat package.json | grep -A3 '"engines"'
# Docker compose files
ls docker-compose*.yml docker-compose*.yaml 2>/dev/null | head -3
# TypeScript config
ls tsconfig*.json 2>/dev/null | head -3
Use these results to skip irrelevant checks (e.g. skip Docker checks if no compose file exists).
Checks
1. Runtime: Node.js >= 22
node --version
FAIL if Node.js is missing or version is below 22 (package.json engines requires node >=22.0.0).
Fix: nvm install 22 && nvm use 22
2. Package manager: npm >= 10
npm --version
FAIL if npm is missing or below 10. Fix: npm install -g npm@latest
3. Docker (project has docker-compose profiles: dev, production)
docker --version
docker compose version 2>/dev/null || docker-compose --version 2>/dev/null
WARN if Docker is missing (needed for npm run test:e2e:docker* and production profiles).
Fix: install Docker Desktop from https://docker.com
4. Docker services healthy
docker compose ps --format "table {{.Name}}\t{{.Status}}" 2>/dev/null
WARN for any service not in a running/healthy state.
Fix: docker compose --profile dev up -d
5. Dependencies installed
test -d node_modules && echo "EXISTS" || echo "MISSING"
FAIL if missing. Fix: npm install
6. TypeScript compiles
npm run build 2>&1 | tail -20; echo "EXIT:$?"
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.
- 13d ago First seen · 253 lines · 126 tokens per session scan A 0b9c54402a17
health-check is an agent published in the GitHub repository agigante80/actual-mcp-server (54 stars, last pushed yesterday), licensed MIT. It adds 126 tokens to every session and 2,184 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
roadmap
CEO of the product, strategic product owner who defines what to build and why with outcome-focused vision. Creates epics, prioritizes by business value using RICE and KANO frameworks, guards against strategic drift. Use when you need direction, outcomes over outputs, sequencing by dependencies, or user-value…
code-reviewer
Use when a major project step completes and needs review against the original plan and coding standards. Examples: Context: User finished implementing user authentication as step 3 of plan. user: "I've finished implementing the user authentication system as outlined in step 3 of our plan" assistant: "Let me use the…
agent-registry-auditor
Audits agents for DIP-0016 compliance and registry alignment. Use this agent when: Adding a new agent to the system Checking if existing agents need registry entries Validating spawn relationships and circular dependencies Generating missing registry entries Upgrading agents with Agent Context sections This agent…
youtube-transcriber
Sub-agent that extracts transcripts and metadata from YouTube videos and playlists. Uses youtube-transcript-api for captions and yt-dlp for metadata. Returns structured markdown with metadata.
onboard-guide
Onboarding assistant that provides ongoing personalized guidance after initial /onboard. Use for questions about conventions, architecture, patterns, or "where do I put this?" — answers are tailored to the engineer's background.
task-planner
Implementation planning and task breakdown specialist. Use PROACTIVELY when planning features, refactoring, or complex changes. Creates detailed implementation plans with effort estimates.