← ClaudeAtlas

statisticslisted

Browse a financial sector's statistics catalog from FISIS and its list_no codes. Holds no logic of its own -- it calls the fisis package's CLI (`fisis statistics`) and shows the result to the user. Use this to turn a sector into the statistic code the accounts and data skills need. Trigger phrases: FISIS 통계 목록, 통계표 코드, list_no 찾아, 재무현황 통계, 주요경영지표 목록, browse FISIS statistics, statistics catalog, list_no for, financial-statistics tables.
seokhoonj/fisis · ★ 0 · Data & Documents · score 72
Install: claude install-skill seokhoonj/fisis
# fisis -- statistics (a sector's statistics catalog) Discover the statistic code a FISIS series is stored under. FISIS keys a time series by a company (`finance_cd`), a statistic (`list_no`), and optionally an account item (`account_cd`); `fisis statistics` browses one sector's statistics catalog so you can pick the `list_no`. The listing and parsing live in the fisis package (on PyPI); this skill is a thin wrapper that calls its CLI and relays the result. A rejected key or a vendor error comes back as a one-line `fisis: <message>` -- relay it as-is rather than throwing a stack trace at the user. (A missing or malformed argument is caught earlier by argparse, which prints usage and exits 2.) ## Prerequisite This plugin calls the `fisis` CLI, so the package must be installed and an API key set: ``` pipx install fisis # or: pip install fisis export FISIS_API_KEY=... # a free key from https://fisis.fss.or.kr/openapi/ ``` The key can also be stored in `~/.config/fisis/credentials.json` as `{"FISIS_API_KEY": "..."}`. Without a key the CLI exits with `fisis: no FISIS API key ...`; relay that and point the user at the FISIS site. **Never print, log, quote, or echo the `FISIS_API_KEY` value itself** -- confirm only that a key is set. ## Running ``` fisis statistics --sector <SECTOR> [--category CATEGORY] [--lang kr|en] [--json] ``` - `--sector` (required) -- the financial sector, by name (`life`, `bank`, ...) or by the vendor one-letter code (`H`, `A`, ..