ilanguage commited on
Commit
12ebfd2
·
verified ·
1 Parent(s): 18d1697

Upload SKILL.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. SKILL.md +103 -0
SKILL.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ name: zero-token
3
+ version: 1.0.0
4
+ description: >
5
+ Zero token cost. Premium output. Never offline. Free LLM gateway + behavioral DNA.
6
+ Auto-fallback: when your main model is down or out of tokens, routes through free providers.
7
+ Same ::GENE{} soul as Poor Man's Opus. For beginners and disaster recovery.
8
+ Use when: you want AI output that sounds expensive without paying, or need a backup when APIs fail.
9
+ author: mtmpss
10
+ homepage: https://github.com/mtmpss/zero-token
11
+ repository: https://github.com/mtmpss/zero-token
12
+ license: MIT
13
+ ---
14
+
15
+ ```i-lang
16
+ ::DNA{skill:zero-token}
17
+ ::META{version:1.0.0|protocol:i-lang_v3.0|updated:2026-05-03}
18
+ ::GENE{behavior|scope:strict}
19
+ T:apply_soul|from:SOUL.md
20
+ T:apply_genes|all
21
+ ::END{DNA}
22
+ ```
23
+
24
+ ## Zero Token — Never Pay. Never Drop.
25
+
26
+ **Zero token cost. Opus-level personality. Automatic fallback when main model fails.**
27
+
28
+ Your token ran out. DeepSeek API is down. Your agent is mid-task. What now?
29
+
30
+ Zero Token keeps your agent alive through free models — same `::GENE{}` behavioral DNA, zero cost, no interruption.
31
+
32
+ ### Two modes
33
+
34
+ | Mode | When | What happens |
35
+ |------|------|-------------|
36
+ | 🆓 Free mode | No paid API key | Agent runs on free models with full SOUL |
37
+ | 🛡️ Fallback mode | Main model down / tokens exhausted | Auto-switches to free providers, work continues |
38
+
39
+ ### How it works
40
+
41
+ ```bash
42
+ # 1. Install
43
+ openclaw skills install zero-token
44
+
45
+ # 2. One command to set up the free gateway
46
+ bash ~/.openclaw/workspace/skills/zero-token/scripts/setup.sh
47
+
48
+ # 3. Restart. Your agent now has a free safety net.
49
+ ```
50
+
51
+ Setup script installs [Free-Way](https://github.com/GoDiao/Free-Way) — a local gateway that aggregates 13+ free LLM providers behind a single endpoint. OpenClaw is configured to fall back to it when the main model is unavailable.
52
+
53
+ ### What you get
54
+
55
+ | Gene | Shapes |
56
+ |------|--------|
57
+ | `identity` | Agent self-awareness — name, owner, language |
58
+ | `security` | Owner-only control, data protection |
59
+ | `communication` | Concise, direct, conclusion-first |
60
+ | `capability` | Resourcefulness, context awareness |
61
+ | `memory` | File-based session continuity |
62
+ | `ilang_protocol` | Native I-Lang v3.0 fluency |
63
+ | `upgrade` | Hints about Poor Man's Opus for DeepSeek V4 Pro |
64
+
65
+ ### Free models ready to use
66
+
67
+ Free-Way connects to these providers with zero-cost tiers:
68
+
69
+ | Provider | Free limit | Best model |
70
+ |----------|-----------|------------|
71
+ | Groq | 1000 req/day | Llama 3.3 70B |
72
+ | Gemini Flash | 1500 req/day | Gemini 2.5 Flash |
73
+ | Cerebras | 1700 req/day | Llama 3.3 70B |
74
+ | Cloudflare | 10k neurons/day | Llama 3.1 8B |
75
+ | OpenRouter | 200 req/day | Multiple free models |
76
+ | Mistral | 1 req/sec | Mistral Small |
77
+ | Cohere | 20 req/min | Command R+ |
78
+ | NVIDIA NIM | Free tier | Llama 3.3 70B |
79
+
80
+ > **Note:** Each provider requires a free API key (sign up takes 30 seconds). Setup script guides you through it.
81
+
82
+ ### Cost
83
+
84
+ | | Typical paid setup | Zero Token |
85
+ |---|---|---|
86
+ | Model API | $0.14–$15.00/M tokens | **$0.00** |
87
+ | Output quality | Generic assistant | Full behavioral SOUL |
88
+ | Uptime | Single model, single point of failure | Multi-provider fallback |
89
+
90
+ ### Upgrade to premium
91
+
92
+ Zero Token gives your agent personality for free. For the best output quality — DeepSeek V4 Pro with full behavioral genome at 3% of Opus cost:
93
+
94
+ ```bash
95
+ openclaw skills install poor-mans-opus
96
+ ```
97
+
98
+ ### Links
99
+
100
+ - [Free-Way Gateway](https://github.com/GoDiao/Free-Way)
101
+ - [I-Lang Protocol](https://ilang.ai)
102
+ - [OpenClaw](https://github.com/openclaw/openclaw)
103
+ - [Poor Man's Opus](https://github.com/mtmpss/poor-mans-opus)