-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathskill.json
More file actions
47 lines (47 loc) · 1.26 KB
/
skill.json
File metadata and controls
47 lines (47 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "freeride",
"displayName": "FreeRide - Free AI for OpenClaw",
"version": "1.1.0",
"description": "Unlimited free AI access for OpenClaw via OpenRouter's free models with automatic fallback switching",
"author": "Shaishav Pidadi",
"repository": "https://github.com/Shaivpidadi/FreeRide",
"license": "MIT",
"commands": [
"list",
"switch",
"auto",
"status",
"refresh",
"fallbacks"
],
"binaries": {
"freeride": "main:main",
"freeride-watcher": "watcher:main"
},
"dependencies": {
"requests": ">=2.31.0"
},
"secrets": ["OPENROUTER_API_KEY"],
"requiredEnv": ["OPENROUTER_API_KEY"],
"config": {
"OPENROUTER_API_KEY": {
"description": "Your OpenRouter API key (get free at openrouter.ai/keys)",
"required": true,
"secret": true,
"env": true
}
},
"network": ["openrouter.ai"],
"openclaw": {
"compatible": true,
"minVersion": "1.0.0",
"configPath": "~/.openclaw/openclaw.json",
"configKeys": [
"agents.defaults.model",
"agents.defaults.models"
],
"requiredSecrets": ["OPENROUTER_API_KEY"],
"networkAccess": ["openrouter.ai"]
},
"install": "npx clawhub@latest install free-ride && cd ~/.openclaw/workspace/skills/free-ride && pip install -e ."
}