Overview
- Skill Key
- danielsimons1/bill-tracker
- Author
- danielsimons1
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/danielsimons1/bill-tracker
- Latest Commit SHA
- d032db7915ec8be87e001e8e9b6c5808b0df6e96
Access Bill Tracker financial data - upcoming bills, account balances, and affordability checks.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 bill-tracker 技能。 若已安装,则直接安装 bill-tracker 技能。
# Bill Tracker Skill
When the user asks about their bills, account balances, or whether they can afford something, use the `bash` tool to call the Bill Tracker API.
## Required environment
- `BILL_TRACKER_URL` - Base URL (e.g. https://your-server.com or http://localhost:1337)
- `BILL_TRACKER_SESSION_TOKEN` - Session token for authentication (obtained once via POST /api/mcp/token)
## Getting a session token
Bill Tracker uses magic-link auth (no passwords). Two steps:
1. Request a verification code (sent to email):
```bash
curl -s -X POST -H "Content-Type: application/json" \
-d '{"email":"user@example.com"}' \
"${BILL_TRACKER_URL}/api/mcp/request-code"
```
2. Exchange the code from your email for a session token:
```bash
curl -s -X POST -H "Content-Type: application/json" \
-d '{"code":"123456"}' \
"${BILL_TRACKER_URL}/api/mcp/token"
```
Store the returned `sessionToken` in `BILL_TRACKER_SESSION_TOKEN`. Tokens are long-lived; no need to re-verify on every request. (Codes expire in 10 minutes.)
## Endpoints
### 1. Upcoming transactions (bills and income due soon)
```
POST ${BILL_TRACKER_URL}/api/mcp/upcoming-transactions
X-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}
Body: { "days": 3 }
```
Default `days` is 3. Increase for a longer window (e.g. `days=7`).
### 2. Account balances
```
POST ${BILL_TRACKER_URL}/api/mcp/account-balances
X-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}
```
Returns each account with name, type, balance, and a totalBalance (cash minus debt).
### 3. Can I afford X?
```
POST ${BILL_TRACKER_URL}/api/mcp/can-afford
X-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}
Body: { "amount": 500, "horizonDays": 90 }
```
Replace `500` with the amount in dollars. `horizonDays` defaults to 90.
Returns either `canAfford: true` with the date they can afford it, or `canAfford: false` with a message.
## How to call
Use curl with POST. Pass `X-Parse-Session-Token` (or `Authorization: Bearer $BILL_TRACKER_SESSION_TOKEN`) f...
openstockdata
OpenClaw Skill for stock data analysis
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
capgoblin
Access unsecured credit lines for AI agents on the Arc Network using the Credex Protocol. Use for borrowing USDC against reputation, repaying debt to grow credit limits, providing liquidity as an LP, or managing cross-chain USDC via Circle Bridge. Triggers on "borrow from credex", "repay debt", "deposit to pool", "check credit status", "provide liquidity", or any credit/lending task on Arc.
capt-marbles
Control PhantomBuster automation agents via API. List agents, launch automations, get output/results, check status, and abort running agents. Use when the user needs to run LinkedIn scraping, Twitter automation, lead generation phantoms, or any PhantomBuster workflow.
camelsprout
DuckDB CLI specialist for SQL analysis, data processing and file conversion. Use for SQL queries, CSV/Parquet/JSON analysis, database queries, or data conversion. Triggers on "duckdb", "sql", "query", "data analysis", "parquet", "convert data".
camohiddendj
DuckDuckGo HTML search scraper CLI with JSON, CSV, OpenSearch, markdown, and compact outputs.