findash-doctor

findash-doctor is a skill for Claude Code from ya5huk/findash. It costs 75 tokens per session (2,629 once invoked), scanned B, original, MIT.

A setup-checking guide for Findash, a finance application. It checks local programs, configuration files, private files, database setup, Google Drive access, and browser profiles.

In plain words
What is it for?
Use it before running Findash or when asking whether its finance data, storage connection, dependencies, and browser access are ready.
Why use it?
It finds missing or unsafe parts of the setup and fixes the local problems it can handle automatically. It also lists exact commands for issues that need a person.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md.

Part of the findash plugin — 5 skills shipped together

Good fit Use it before running Findash or when asking whether its finance data, storage connection, dependencies, and browser access are ready.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ya5huk/findash/findash-doctor
Install

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.

Any agent
npx skills add ya5huk/findash --skill findash-doctor
Clone the repo
git clone --depth 1 https://github.com/ya5huk/findash

Made for: Claude Code.

Or install findash, the plugin that ships this one along with the rest of its 5 skills.

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 findash-doctor

README.md
[![agentmods](https://agentmods.dev/badge/skills/ya5huk/findash/findash-doctor/github.svg)](https://agentmods.dev/skills/ya5huk/findash/findash-doctor)
Your own site
<a href="https://agentmods.dev/skills/ya5huk/findash/findash-doctor"><img src="https://agentmods.dev/badge/skills/ya5huk/findash/findash-doctor/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 findash-doctor

Your own site · 80×15
<a href="https://agentmods.dev/skills/ya5huk/findash/findash-doctor"><img src="https://agentmods.dev/badge/skills/ya5huk/findash/findash-doctor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,629 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00075 $0.02629
Opus 5 $0.00037 $0.01314
Sonnet 5 $0.00015 $0.00526
Haiku 4.5 $0.00007 $0.00263

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

Security

Grade B, and why

findash-doctor scanned grade B 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 11d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

Remediation = exact shell command when possible. Detect OS (`uname -s` → Darwin / Linux) and match install hints (`brew install …` vs `sudo apt install -y …`). For OAuth / `--setup`, name the exact command.
skills/findash-doctor/SKILL.md · 120 lines

How it starts

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

findash-doctor

You audit setup, fix what's safe, print a short scannable report. Diagnose → auto-fix → report. Anything needing the user goes into the report, not into a shell call.

Where things live

  • Run from the project root (the dir holding CLAUDE.md, scripts/, docs/). Paths below are relative.
  • Drive root ID: root_folder_id=… in .secrets/findash under [drive] (chmod 600, gitignored).
  • Seed script: scripts/init-db.sql. npm manifests: scripts/package.json (bank fetch) and dashboard/package.json (React app).

Checks

# Category What Auto-fix?
1 Binaries Python ≥3.10; feature-gated qpdf and Node ≥22.13.0 No
2 Private state local dirs exist at mode 700; files under data/, inbox/, .secrets/, plus browser-profile files, are mode 600 python3 scripts/harden_permissions.py --include-browser-profile
3 Drive connector when [drive] is configured or explicitly selected: the official Google Drive connector's tools are discoverable (ToolSearch by function) in this session No — print the add-connector steps
4 Drive root ID .secrets/findash [drive] has a non-placeholder root_folder_id= Perms only
5 Secrets .secrets/findash exists + mode 600; note which [sections] are filled Perms only
6 Bank npm deps when [hapoalim] or [cal] is configured: scripts/node_modules/ populated and npm ls --omit=dev succeeds scripts/install_node_deps.sh
7 DB data/finance.db exists, passes integrity/FK checks, and is at the current schema version python3 scripts/migrate_db.py --init when missing; python3 scripts/migrate_db.py when outdated
8 Chromium profiles ~/.cache/findash/chromium-profile/{hapoalim,visaCal}/ (only when matching secrets exist) No
9 Drive live + layout with the connector present: the metadata tool reaches the root from python3 scripts/drive_root.py, then every fixed public folder from docs/drive-layout.md exists directly under it Fixed folders only
10 IBKR connector optional — the official Interactive Brokers connector is added in Claude (claude.ai), not findash config; sessions without it skip the investments feed No
11 React dashboard dashboard/node_modules/ populated and npm --prefix dashboard run build succeeds scripts/install_dashboard_deps.sh

Read the full file on GitHub · 120 lines

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. 11d ago First seen · 120 lines · 75 tokens per session scan B aa0a3d28d4ff

Subscribe to this mod's changes

findash-doctor is a skill published in the GitHub repository ya5huk/findash (20 stars, last pushed 18d ago), licensed MIT. It adds 75 tokens to every session and 2,629 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). 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

comptable

Comptabilité, fiscalité et facturation pour entreprises françaises. Gère écritures PCG, déclarations TVA, IS/IR, clôture annuelle, liasse fiscale (2033/2065), FEC, états financiers, et chaîne facturation (mentions obligatoires, numérotation, Factur-X/UBL/CII, plateformes agréées PDP/PA, e-reporting, réforme 2026…

romainsimon/paperasse · 143 tokens

fiscaliste

Fiscaliste IA pour la fiscalité personnelle des particuliers français : optimisation et déclaration de l'impôt sur le revenu, IFI, revenus du capital, revenus fonciers, equity salarial, crypto-actifs et PER. Couvre le calcul de l'IR (barème, quotient familial, décote, PAS, CEHR, revenus exceptionnels), la déclaration…

romainsimon/paperasse · 302 tokens

syndic

Gère un parc de copropriétés en France avec vue portfolio consolidée. Couvre administration, comptabilité (décret 2005, plan comptable copro, 5 annexes), assemblées générales (convocation, PV, notification), appels de fonds, travaux, fournisseurs, recouvrement d'impayés et transition de syndic. Maîtrise les majorités…

romainsimon/paperasse · 194 tokens

financial-statement-analysis

Reads a set of financial statements and establishes what changed and why — fluctuation analysis against prior period and against budget, profitability, liquidity, solvency and efficiency ratios, benchmarking, and the non-GAAP measures presented alongside them. Use this to interpret results, review a counterparty's or…

cbrock84/headcount · 93 tokens

daily-budget-check

Run a daily spend check-in against a daily budget on the Agent Monitor dashboard — today's spend vs the daily target, pace through the day, and the projected overage if the current pace holds. Uses /api/pricing/cost and /api/sessions (grouped by startedat = today). Use for a quick daily spend check-in or a…

hoangsonww/Claude-Code-Agent-Monitor · 81 tokens

ib-collar

Generate tactical collar strategy reports for protecting PMCC positions through earnings or high-risk events. Requires TWS or IB Gateway running locally.

staskh/trading_skills · 30 tokens