default models, skills cleanup
frdel committed
Feb 9, 2026 at 17:49 UTC
f8048c5e69dcc89c4bcb9a6ccdfae58f2ff09549
2 files changed
+16
-26
python/helpers/settings.py
+2
-2
@@ -490,7 +490,7 @@ def get_default_settings() -> Settings:
490
return Settings(
491
version=_get_version(),
492
chat_model_provider=get_default_value("chat_model_provider", "openrouter"),
493
- chat_model_name=get_default_value("chat_model_name", "openai/gpt-5.2-chat"),
493
+ chat_model_name=get_default_value("chat_model_name", "moonshotai/kimi-k2.5"),
494
chat_model_api_base=get_default_value("chat_model_api_base", ""),
495
chat_model_kwargs=get_default_value("chat_model_kwargs", {"temperature": "0"}),
496
chat_model_ctx_length=get_default_value("chat_model_ctx_length", 100000),
@@ -500,7 +500,7 @@ def get_default_settings() -> Settings:
500
chat_model_rl_input=get_default_value("chat_model_rl_input", 0),
501
chat_model_rl_output=get_default_value("chat_model_rl_output", 0),
502
util_model_provider=get_default_value("util_model_provider", "openrouter"),
503
- util_model_name=get_default_value("util_model_name", "google/gemini-3-flash-preview"),
503
+ util_model_name=get_default_value("util_model_name", "z-ai/glm-4.7-flash"),
504
util_model_api_base=get_default_value("util_model_api_base", ""),
505
util_model_ctx_length=get_default_value("util_model_ctx_length", 100000),
506
util_model_ctx_input=get_default_value("util_model_ctx_input", 0.7),
skills/create-skill/SKILL.md
+14
-24
@@ -67,16 +67,15 @@ Your skill instructions go here...
67
68
```
69
/a0/usr/skills/
70
-└── custom/
71
- └── my-skill/
72
- ├── SKILL.md # Required: Main skill file
73
- ├── scripts/ # Optional: Helper scripts
74
- │ ├── helper.py
75
- │ └── process.sh
76
- ├── templates/ # Optional: Templates
77
- │ └── output.md
78
- └── docs/ # Optional: Additional docs
79
- └── examples.md
70
+└── my-skill/
71
+ ├── SKILL.md # Required: Main skill file
72
+ ├── scripts/ # Optional: Helper scripts
73
+ │ ├── helper.py
74
+ │ └── process.sh
75
+ ├── templates/ # Optional: Templates
76
+ │ └── output.md
77
+ └── docs/ # Optional: Additional docs
78
+ └── examples.md
79
```
80
81
## Writing Good Skill Instructions
@@ -172,7 +171,7 @@ If your skill needs scripts or templates:
171
172
```bash
173
# Create directory structure
175
-mkdir -p usr/skills/my-skill/{scripts,templates,docs}
174
+mkdir -p /a0/usr/skills/my-skill/{scripts,templates,docs}
175
```
176
177
## Example: Complete Skill
@@ -258,12 +257,12 @@ print(f"Took {elapsed:.4f} seconds")
257
258
1. Create skill directory:
259
```bash
261
- mkdir -p usr/skills/my-skill
260
+ mkdir -p /a0/usr/skills/my-skill
261
```
262
263
2. Create SKILL.md:
264
```bash
266
- touch usr/skills/my-skill/SKILL.md
265
+ touch /a0/usr/skills/my-skill/SKILL.md
266
```
267
268
3. Add content and save
@@ -277,7 +276,7 @@ To share skills with others:
276
1. Create a GitHub repository
277
2. Include the skill directory structure
278
3. Add a README with installation instructions
280
-4. Users can copy to their `usr/skills/` directory
279
+4. Users can copy to their `/a0/usr/skills/` directory
280
281
## Testing Your Skill
282
@@ -286,13 +285,4 @@ After creating a skill:
285
1. Start a new conversation
286
2. Use one of your trigger patterns
287
3. Verify the agent follows your instructions
289
-4. Iterate and improve based on results
290
-
291
-## Need Help?
292
-
293
-Use this skill by saying:
294
-- "Help me create a new skill for [purpose]"
295
-- "I want to create a skill that [does something]"
296
-- "Create a skill wizard for [task]"
297
-
298
-I'll guide you through each step!
288
+4. Iterate and improve based on results
\ No newline at end of file