Files
youlu-openclaw-workspace/TOOLS.md

73 lines
2.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# TOOLS.md - Local Notes
Skills define _how_ tools work. This file is for _your_ specifics — the stuff that's unique to your setup.
### Ollama 本地模型使用规则
**通用规则**
- 只用已下载的模型,绝不自动下载新模型
- 需要未下载的模型时,先询问用户
**默认模型kamekichi128/qwen3-4b-instruct-2507**
- 用途:邮件摘要、轻量分析
- 速度:快(~5秒
- 无需额外参数,直接调用即可
**备选模型**
- `ministral-3:3b` - 速度快,格式清晰
- `gemma3:4b` - 适中速度
- `qwen3:4b` - 较慢,仅备用
### agent-browser 浏览器自动化
**注意agent-browser 是独立的 CLI 工具,不是 OpenClaw 内置功能**
- 文档见 `~/.openclaw/workspace/skills/agent-browser/SKILL.md`
- 依赖 Chrome/Chromium已安装于 `/usr/bin/google-chrome`
### himalaya 邮件客户端
**本地配置:**
- 二进制:`~/.local/bin/himalaya`
- 配置:`~/.config/himalaya/config.toml`
- 文档:`~/.openclaw/workspace/skills/himalaya/SKILL.md`
**核心用法:**
```bash
himalaya envelope list --page-size 20 # 列出邮件
himalaya message read <id> # 读取邮件
himalaya message delete <id> # 删除邮件
himalaya message write # 写新邮件(交互式)
```
**邮件发送规则:**
- **youlu@luyanxin.com → lu@luyx.org**: 直接发送,无需确认
- 其他所有对外邮件: 仍需确认
### News Digest 新闻摘要
**自动任务Cron + Subagent**
- 时间:每天早上 5:00 AM (PST)
- Cron ID: `cc95dcf3-0d6c-44f4-90af-76b836ca0c87`
- 模式isolated subagentthinking=lowtimeout=5min
**本地配置:**
- 目录:`~/.openclaw/workspace/scripts/news_digest/`
- 主脚本:`send_digest.py`
- 配置:`config.json`
- 数据库:`news_digest.db`
- 日志:`news_digest.log`
**详细用法:**`~/.openclaw/workspace/scripts/news_digest/README.md`
**手动运行:**
```bash
cd ~/.openclaw/workspace/scripts/news_digest
./send_digest.py
```
**功能:** RSS 抓取 → Ollama 摘要 → 邮件发送到 lu@luyx.org
---
Add whatever helps you do your job. This is your cheat sheet.