WealthWise-Finance-Tracker: Skill for Claude Code

.agents/skills/health-check/SKILL.md

health-check is a skill for Claude Code, Codex from hoangsonww/WealthWise-Finance-Tracker. It costs 53 tokens per session (422 once invoked), scanned A, original, MIT.

A health check for the WealthWise API, web app, and MongoDB database. It checks whether the services respond and whether containers are running.

In plain words
What is it for?
Checking API and web availability, confirming database connectivity through the API, viewing Docker or Podman container status, and finding recent logs when something is down.
Why use it?
It quickly shows which part of the local application is unavailable instead of leaving you to inspect each service separately.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); $skill-name invocation.

This is hoangsonww/WealthWise-Finance-Tracker's own configuration. It tells Claude Code and Codex how to work on WealthWise-Finance-Tracker 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 WealthWise-Finance-Tracker configures →

Reuse

Borrowing it

Nothing to install: this file belongs to hoangsonww/WealthWise-Finance-Tracker. 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/hoangsonww/WealthWise-Finance-Tracker/master/.agents/skills/health-check/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/hoangsonww/WealthWise-Finance-Tracker

Made for: Claude Code, Codex.

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 health-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/hoangsonww/wealthwise-finance-tracker/health-check/github.svg)](https://agentmods.dev/skills/hoangsonww/wealthwise-finance-tracker/health-check)
Your own site
<a href="https://agentmods.dev/skills/hoangsonww/wealthwise-finance-tracker/health-check"><img src="https://agentmods.dev/badge/skills/hoangsonww/wealthwise-finance-tracker/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.

agentmods 80×15 button for health-check

Your own site · 80×15
<a href="https://agentmods.dev/skills/hoangsonww/wealthwise-finance-tracker/health-check"><img src="https://agentmods.dev/badge/skills/hoangsonww/wealthwise-finance-tracker/health-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 422 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00053 $0.00422
Opus 5 $0.00026 $0.00211
Sonnet 5 $0.00011 $0.00084
Haiku 4.5 $0.00005 $0.00042

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

Security

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 12d 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.

curl -sf http://localhost:4000/api/health
.agents/skills/health-check/SKILL.md · 55 lines

What it actually says

Check the health of the running WealthWise services.

Checks

1. API health

curl -sf http://localhost:4000/api/health

Expected: HTTP 200 with { "status": "ok" }.

2. Web app

curl -sf -o /dev/null -w "%{http_code}" http://localhost:3000/

Expected: HTTP 200.

3. Containers (if running in Docker or Podman)

# Try Docker first
docker compose ps 2>/dev/null

# If Docker is not available, try Podman
podman ps --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}" 2>/dev/null

4. MongoDB (inferred from API health)

The API health endpoint reflects DB connectivity. HTTP 503 from the health endpoint typically means MongoDB is unreachable.

Report format

Service          Status    Notes
─────────────────────────────────────────
API (port 4000)  ✓ up   |  ✗ unreachable
Web (port 3000)  ✓ up   |  ✗ unreachable
MongoDB          ✓ connected | ✗ disconnected (via API health)
Docker/Podman    ✓ running X/N containers | ✗ daemon not running

On failure

If a service is down:

  1. Check container status: docker compose ps or podman ps
  2. Show recent logs: docker compose logs --tail=30 <service> or podman logs --tail=30 <container>
  3. Check for port conflicts
  4. Suggest the correct command to start: $docker-up
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. 12d ago First seen · 55 lines · 53 tokens per session scan A f85e7490d9b5

Subscribe to this mod's changes

health-check is a skill published in the GitHub repository hoangsonww/WealthWise-Finance-Tracker (24 stars, last pushed 4d ago), licensed MIT. It adds 53 tokens to every session and 422 once invoked, about $0.0003 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.

Related

Other skills, from other repositories

cis-aws-compute-3.8

Ensure Amazon ECS Fargate services are using the latest Fargate platform version.

CyberStrikeus/CyberStrike · 26 tokens

aws-cli

CLI-first AWS orchestration skill for Lambda, ECS/Fargate, and S3 workflows rooted in .☁️ runbooks.

elasticdotventures/_b00t_ · 31 tokens

agentcore-investigation

Investigate Bedrock AgentCore runtime sessions via CloudWatch Logs Insights — resolve session/trace IDs, query OTEL spans, filter noise, build timelines. Use when debugging AgentCore agent sessions, tracing tool calls, or analyzing latency.

awslabs/mcp · 52 tokens

postgresql-indexing

PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing…

prowler-cloud/prowler · 108 tokens

gh-aw

Create and maintain GitHub Agentic Workflows (gh-aw) for Prowler. Trigger: When creating agentic workflows, modifying gh-aw frontmatter, configuring safe-outputs, setting up MCP servers in workflows, importing Copilot Custom Agents, or debugging gh-aw compilation.

prowler-cloud/prowler · 59 tokens

competition-container-runtime

Internal downstream skill for ctf-sandbox-orchestrator. CTF-sandbox workflow for live container runtime analysis, mounted secrets, sidecars, namespaces, init containers, entrypoint drift, and route-to-container resolution. Use when the user asks why a live container differs from manifests, where a mounted secret is…

zhaoxuya520/reverse-skill · 109 tokens