TrustMeImWorking
by @pengtianhao48-lab
Automatically consume your AI API token quota on a schedule so your usage metrics always look healthy. Supports work-simulation, spread, and immediate modes...
clawhub install trustmeimworking๐ About This Skill
name: trust-me-im-working description: Automatically consume your AI API token quota on a schedule so your usage metrics always look healthy. Supports work-simulation, spread, and immediate modes with a real-time dashboard. version: 1.0.0 metadata: openclaw: emoji: "๐ค" homepage: https://github.com/pengtianhao48-lab/TrustMeImWorking requires: bins: - python3 anyBins: - python3 - python install: - kind: uv package: rich bins: [rich] - kind: uv package: openai bins: [] - kind: uv package: requests bins: []
TrustMeImWorking
Automatically consume your AI API token quota on a schedule โ so your usage metrics always look healthy.
What it does
TrustMeImWorking runs as a background daemon that calls your configured LLM API at controlled intervals, consuming tokens according to your daily/weekly budget. It supports three run modes:
| Mode | Behaviour | |------|-----------| | โญ Work Simulation (recommended) | Fires during working hours on weekdays, using realistic job-related prompts (code review, architecture design, data analysisโฆ). Looks exactly like real usage. | | Spread | Distributes today's budget evenly across the remaining hours, so consumption is smooth and natural-looking. | | Immediate | Starts consuming right now; resets at 00:00 each day. |
Quick start
# 1. Clone
git clone https://github.com/pengtianhao48-lab/TrustMeImWorking
cd TrustMeImWorking2. Install dependencies
pip install -r requirements.txt3. Configure (interactive wizard)
python3 tmw.py wizard4. Start (real-time dashboard)
python3 tmw.py start
Wizard
The interactive wizard (python3 tmw.py wizard) walks you through:
1. Language โ English or ไธญๆ
2. Platform โ OpenAI, DeepSeek, Anthropic, Gemini, Groq, or Custom
3. Base URL โ official endpoint or a third-party relay / company gateway
4. Model โ with platform defaults pre-filled
5. API Key โ stored only in local config.json, never committed
6. Weekly budget โ min/max token range
7. Job description โ used to generate realistic work-simulation prompts
8. Run mode โ work / spread / immediate
9. Work hours โ start/end time, timezone (work mode only)
10. Enterprise gateway โ custom headers, proxy, mTLS, JWT (optional)
Dashboard
python3 tmw.py start opens a live dashboard that refreshes every 2 seconds:
โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ TrustMeImWorking Platform: DeepSeek Mode: Work-Simulation โ
โ Uptime: 01m 23s Config: config.json โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
โญโโโโโโโโโโโโโโโโโโโโโโโโโโโ Consumption โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ Today โโโโโโโโโโโโโโโโโโโโโโโโโโโโ 12,345 / 14,000 (88%) โ
โ This week โโโโโโโโโโโโโโโโโโโโโโโโโโโโ 67,890 / 50,000โ80,000 โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโ Session โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ ACTIVE This session: 1,234 / 8,800 (14%) โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ Today's progress: 5,200 / 14,000 (37%) โ
โ Prompt: How does Kubernetes handle container orchestrationโฆ โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
Press Ctrl+C to stop
Commands
| Command | Description |
|---------|-------------|
| python3 tmw.py wizard | Interactive setup wizard |
| python3 tmw.py start | Start daemon with live dashboard |
| python3 tmw.py start -b | Start as background daemon (silent) |
| python3 tmw.py stop | Stop background daemon |
| python3 tmw.py logs | View recent log (last 50 lines) |
| python3 tmw.py logs -n 200 | View more log lines |
| python3 tmw.py status | Show consumption stats |
| python3 tmw.py run | Run one session immediately |
| python3 tmw.py run --dry-run | Simulate without calling the API |
Requirements
pip install -r requirements.txt (rich, openai, requests)Configuration
All settings are stored in config.json (auto-generated by the wizard). The file is listed in .gitignore and never committed.
Supported platforms
OpenAI ยท DeepSeek ยท Anthropic ยท Google Gemini ยท Groq ยท Any OpenAI-compatible endpoint (Ollama, vLLM, LM Studio, SiliconFlow, company gateways, etc.)
๐ก Examples
# 1. Clone
git clone https://github.com/pengtianhao48-lab/TrustMeImWorking
cd TrustMeImWorking2. Install dependencies
pip install -r requirements.txt3. Configure (interactive wizard)
python3 tmw.py wizard4. Start (real-time dashboard)
python3 tmw.py start
โ๏ธ Configuration
All settings are stored in config.json (auto-generated by the wizard). The file is listed in .gitignore and never committed.