用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill screen-narrator命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
基于 SOC 职业分类
正在显示 SKILL.md
| name | screen-narrator |
| description | Live narration of your macOS screen activity with Gemini vision + ElevenLabs speech. |
| homepage | https://github.com/buddyh/narrator |
| metadata | {"openclaw":{"emoji":"🎙️","requires":{"bins":["python3","tmux","peekaboo"],"env":["GEMINI_API_KEY","ELEVENLABS_API_KEY"]}}} |
This skill maps to the upstream narrator repo implementation.
It runs Gemini-vision narration styles (sports, nature, horror, noir, reality_tv, asmr, wrestling) and ElevenLabs TTS, with optional dual-lane narration and live control via JSON files.
Use the repo install:
cd /Users/buddy/narrator
/Users/buddy/narrator/.venv/bin/python -m narrator sports --help
cd /Users/buddy/narrator
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Required environment:
GEMINI_API_KEYELEVENLABS_API_KEYELEVENLABS_VOICE_IDStart live narration in a tmux session (preferred):
tmux new-session -d -s narrator "cd /Users/buddy/narrator && /Users/buddy/narrator/.venv/bin/python -m narrator sports --control-file /tmp/narrator-ctl.json --status-file /tmp/narrator-status.json"
Start with timer:
tmux new-session -d -s narrator "cd /Users/buddy/narrator && /Users/buddy/narrator/.venv/bin/python -m narrator wrestling --time 5m --control-file /tmp/narrator-ctl.json --status-file /tmp/narrator-status.json"
Change style on the fly:
echo '{"command": "style", "value": "horror"}' > /tmp/narrator-ctl.json
Set profanity:
echo '{"command": "profanity", "value": "low"}' > /tmp/narrator-ctl.json
Pause / resume:
echo '{"command": "pause"}' > /tmp/narrator-ctl.json
echo '{"command": "resume"}' > /tmp/narrator-ctl.json
Stop:
tmux kill-session -t narrator
Check status:
cat /tmp/narrator-status.json
/Users/buddy/narrator implementation to avoid drift between docs and runtime.