Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
An investment portfolio tracker that runs entirely locally. All data stays in ~/.portfolio-tracker/.
An investment portfolio tracker that runs entirely locally. All data stays in ~/.portfolio-tracker/.
This item is timing out or returning errors right now. Review the source page and try again later.
Use the source page and any available docs to guide the install because the item is currently unstable or timing out.
I tried to install a skill package from Yavira, but the item is currently unstable or timing out. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.
I tried to upgrade a skill package from Yavira, but the item is currently unstable or timing out. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.
An investment portfolio tracker that runs entirely locally. All data stays in ~/.portfolio-tracker/.
Data: ~/.portfolio-tracker/data.json (portfolios, assets, prices) Config: ~/.portfolio-tracker/config.json (API keys, wallet addresses, user profile) Scripts: TypeScript CLI tools in <skill-path>/scripts/, run via npx tsx
Before running any script, ensure dependencies are installed: npm install --prefix <skill-path>/scripts Replace <skill-path> with the actual installed path of this skill.
Each script is a standalone CLI tool. Run them with: npx tsx <skill-path>/scripts/<script>.ts <command> [args] Scripts read from stdin when needed and output JSON to stdout.
load โ Read portfolio data (creates default if missing) save โ Write portfolio data (JSON from stdin) load-config โ Read config save-config โ Write config (JSON from stdin)
crypto <symbol> โ Get crypto price (Binance โ CoinGecko) stock <symbol> โ Get stock price (Yahoo Finance) fx โ Get USD/CNY/HKD exchange rates historical <symbol> โ Get 3yr monthly historical data search <query> โ Search for assets by name/symbol refresh โ Batch refresh prices (assets JSON from stdin)
sync <apiKey> <apiSecret> โ Fetch all Binance balances (6 account types) validate <apiKey> <apiSecret> โ Validate API credentials
sync <token> <queryId> โ Fetch IBKR positions via Flex Query validate <token> <queryId> โ Validate IBKR credentials
sync <address> [chain] โ Fetch wallet balances (single chain or all 5 EVM chains) validate <address> โ Validate EVM address
{ "id": "unique-id", "type": "CRYPTO | USSTOCK | HKSTOCK | ASHARE | CASH", "symbol": "BTC", "name": "Bitcoin", "quantity": 1.5, "avgPrice": 40000, "currentPrice": 50000, "currency": "USD | CNY | HKD", "transactions": [], "source": { "type": "manual | binance | wallet | ibkr" } }
{ "id": "unique-id", "name": "Main", "assets": [...] }
Load data via data-store.ts load Find current portfolio by currentPortfolioId Calculate total value using quantity * currentPrice per asset Convert to display currency using exchangeRates Present as a formatted table
Load data Search for the asset using fetch-prices.ts search <query> Get current price via fetch-prices.ts crypto/stock <symbol> Add asset to current portfolio with a generated unique ID Save data
Load data Pipe current portfolio assets to fetch-prices.ts refresh via stdin Also run fetch-prices.ts fx for exchange rates Update each asset's currentPrice and the exchangeRates Set lastPriceRefresh to current ISO timestamp Save data
Load config to get credentials Run the appropriate sync script Merge results: update existing assets (match by symbol+source), add new ones Save data
Available user commands: /portfolio โ View and manage portfolios /prices โ Refresh all prices /setup โ Configure API keys and wallets /sync-binance โ Sync from Binance /sync-ibkr โ Sync from Interactive Brokers /sync-wallet โ Sync from blockchain wallet /advise โ Get AI investment advice
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.