WealthWise-Finance-Tracker: Skill for Codex

.agents/skills/docker-up/SKILL.md

docker-up is a skill for Codex from hoangsonww/WealthWise-Finance-Tracker. It costs 56 tokens per session (842 once invoked), scanned A, original, MIT.

A development-environment skill for starting, stopping, restarting, and viewing logs from WealthWise services running in Docker or Podman containers.

In plain words
What is it for?
Use it to start development or production containers, stop them, remove their volumes, or follow logs for the whole environment or one service.
Why use it?
It provides the correct container commands for the available runtime and makes the difference between stopping services and deleting their stored data clear.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is hoangsonww/WealthWise-Finance-Tracker's own configuration. It tells 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/docker-up/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/hoangsonww/WealthWise-Finance-Tracker

Made for: 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 docker-up

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/hoangsonww/wealthwise-finance-tracker/docker-up"><img src="https://agentmods.dev/badge/skills/hoangsonww/wealthwise-finance-tracker/docker-up.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 842 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.00056 $0.00842
Opus 5 $0.00028 $0.00421
Sonnet 5 $0.00011 $0.00168
Haiku 4.5 $0.00006 $0.00084

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

Security

Grade A, and why

docker-up 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 10d 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.

.agents/skills/docker-up/SKILL.md · 76 lines

How it starts

The opening of the file, as written. The whole thing — 76 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Manage the WealthWise container development environment (Docker or Podman).

Runtime detection

Detect which container runtime is available:

  1. docker info 2>/dev/null | head -1 — if it succeeds, use docker compose
  2. Else podman info 2>/dev/null | head -1 — if it succeeds, use podman-compose
  3. If neither is available, report the error and stop

Commands by argument

Docker:

Argument Action Command
(none) or dev Start dev environment docker compose up --build -d
prod Start production stack docker compose -f docker-compose.prod.yml up --build -d
down Stop containers (preserve data) docker compose down
down --volumes Stop + wipe all volumes (data destroyed) docker compose down -v
logs Tail all service logs docker compose logs -f
logs api or logs web Tail one service docker compose logs -f <service>

Podman:

Argument Action Command
(none) or dev Start dev environment podman-compose -f podman-compose.yml up --build -d
prod Start production stack podman-compose -f podman-compose.prod.yml up --build -d
down Stop containers (preserve data) podman-compose -f podman-compose.yml down
down --volumes Stop + wipe all volumes (data destroyed) podman-compose -f podman-compose.yml down -v
logs Tail all service logs podman-compose -f podman-compose.yml logs -f
logs api or logs web Tail one service podman-compose -f podman-compose.yml logs -f <service>

Services and ports (dev):

  • api → port 4000
  • web → port 3000
  • mongodb → port 27017
  • mcp → port 5100
  • agentic-ai → port 5200

Pre-flight checks (before starting)

  1. Docker or Podman daemon is running (see runtime detection)
  2. .env exists in apps/api/: test -f apps/api/.env. Never read it.
  3. .env exists in apps/web/: test -f apps/web/.env. Never read it.
  4. Port conflicts: check if 4000, 3000, or 27017 are already bound.

Read the full file on GitHub · 76 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 76 lines · 56 tokens per session scan A 4cd3ac8024ee

Subscribe to this mod's changes

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