Overview
- Skill Key
- deeqyaqub1-cmd/zero-rules
- Author
- deeqyaqub1-cmd
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/deeqyaqub1-cmd/zero-rules
- Latest Commit SHA
- 15698d122319c80174678975cf3ba1cb99fa126c
Intercept deterministic tasks (math, time, currency, files, scheduling) BEFORE they hit the LLM. Saves 50-70% on token costs by resolving simple queries locally with zero API calls.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 zero-rules 技能。 若已安装,则直接安装 zero-rules 技能。
# ZeroRules — Deterministic Task Interceptor
## What this skill does
ZeroRules eliminates wasted LLM tokens on tasks that **don't need AI at all**.
Before you send a query to the model, check if ZeroRules can handle it instantly
with zero tokens. Math, time zones, currency conversion, file listing, and
date/scheduling queries all have deterministic answers that cost $0.
**This is not model routing.** Model routing sends simple queries to cheaper models.
ZeroRules skips the model entirely.
## When to use ZeroRules
ALWAYS attempt ZeroRules first when the user's message matches ANY of these patterns:
1. **Math/calculations**: Any arithmetic, percentages, unit conversions
2. **Time queries**: "What time is it in [city]?", "Current time in [timezone]"
3. **Currency conversion**: "$X to EUR", "convert [amount] [from] to [to]"
4. **File operations**: "List files in [dir]", "What's in [folder]?"
5. **Date/scheduling**: "What day is [date]?", "Days until [event]", "Add meeting [details]"
## How to use
Run the ZeroRules engine script at `{baseDir}/rules.js` using Node.js via the
exec tool. Pass the user's message as a single argument:
```bash
node {baseDir}/rules.js "<user message>"
```
### Interpreting the output
The script returns JSON:
- **Rule matched** → `{"matched": true, "rule": "math", "result": "4446", "saved_tokens_est": 850, "session_total_saved": 12.47}`
Use the `result` value as your response. Do NOT call the LLM for this query.
Include the savings badge: `🔥 ZeroRules | <rule> | ~<saved_tokens_est> tokens saved | Session: $<session_total_saved> saved`
- **No match** → `{"matched": false}`
Proceed normally with the LLM. ZeroRules doesn't interfere.
### Examples
User: "What's 247 × 18?"
→ Run: `node {baseDir}/rules.js "What's 247 × 18?"`
→ Output: `{"matched":true,"rule":"math","result":"4,446","saved_tokens_est":850,"session_total_saved":0.02}`
→ Reply: **4,446** 🔥 ZeroRules | math | ~850 tokens saved
User: "What time is it in Tokyo?"
→ Run...
# 🔥 ZeroRules — Stop the API Wallet Assassin **Intercept deterministic tasks before they burn tokens. Math, time, currency, files, dates → $0.** Every time your OpenClaw uses Claude Opus to calculate `247 × 18`, you pay ~$0.01 for something a calculator does in 0ms. ZeroRules catches these queries and resolves them locally. Zero tokens. Zero latency. ## The Problem OpenClaw sends *everything* to your LLM — including tasks that don't need AI: | Query | Without ZeroRules | With ZeroRules | |-------|-------------------|----------------| | "247 × 18" | ~850 tokens, ~$0.01 | **0 tokens, $0** | | "Time in Tokyo" | ~1,200 tokens, ~$0.01 | **0 tokens, $0** | | "$100 to EUR" | ~1,500 tokens, ~$0.01 | **0 tokens, $0** | | "List ~/projects" | ~900 tokens, ~$0.01 | **0 tokens, $0** | | "Days until Christmas" | ~1,000 tokens, ~$0.01 | **0 tokens, $0** | These add up. 50 deterministic queries/day × 30 days = **1,500 intercepted calls/month = ~$12-18 saved** just from the built-in rules. ## Install (30 seconds) ### Option 1: ClawHub (recommended) ```bash clawhub install zero-rules ``` ### Option 2: Manual ```bash cd ~/clawd/skills # or ~/.openclaw/skills git clone https://github.com/deeqyaqub1-cmd/zero-rules-openclaw zero-rules ``` ### Option 3: Copy-paste Create `~/clawd/skills/zero-rules/` and copy `SKILL.md` + `rules.js` into it. That's it. **No dependencies. No API keys. No config. Just Node.js (which OpenClaw already requires).** ## How It Works 1. You ask OpenClaw: *"What's 247 × 18?"* 2. OpenClaw sees ZeroRules is active → runs `rules.js` with your query 3. `rules.js` matches the math pattern → computes `4,446` in 2ms 4. OpenClaw returns the result **without calling the LLM** 5. You see: **4,446** 🔥 ZeroRules | math | ~850 tokens saved If ZeroRules can't handle it (e.g., *"Write a proposal for Sarah"*), it returns `matched: false` and OpenClaw proceeds with the LLM normally. Zero interference. ## 5 Bui...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
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.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.