Agent Skills
› malpern/VoxClaw
› voxclaw-read-task-summary
voxclaw-read-task-summary
GitHub完成工作后,将任务总结转化为简短口语化文本并通过 VoxClaw 插件朗读。适用于需要语音播报结果、验证状态或阻塞项的场景,帮助开发者快速获知进展。
Trigger Scenarios
用户希望听到工作完成的语音反馈
需要口头汇报任务结果或测试状态
Install
npx skills add malpern/VoxClaw --skill voxclaw-read-task-summary -g -y
SKILL.md
Frontmatter
{
"name": "voxclaw-read-task-summary",
"homepage": "https:\/\/github.com\/malpern\/VoxClaw",
"metadata": {
"requires": {
"bins": [
"bash"
]
}
},
"description": "Speak a concise final task summary aloud with VoxClaw after completing work."
}
VoxClaw Read Task Summary
Use this skill when the user would benefit from hearing the finished result out loud.
Workflow
- Write a short spoken summary first.
- Keep it to 1 to 3 sentences.
- Prefer outcome, verification status, and any blocker.
- Speak it with the plugin helper:
plugins/voxclaw/scripts/voxclaw-say "Task complete. I updated the parser and the tests passed."
You can also pipe generated text:
printf '%s\n' "Task complete. The release build succeeded." | plugins/voxclaw/scripts/voxclaw-say
Style
- Keep spoken text shorter than written text.
- Expand symbols and abbreviations when they would sound awkward aloud.
- Avoid reading file paths unless they matter to the user.
- Mention failed verification clearly when tests were not run or did not pass.
Version History
- 0a1cb0f Current 2026-08-20 08:03


