Agent Skills
› openclaw/clawhub
› convex-improve-convex-plugin
convex-improve-convex-plugin
GitHub将编码会话转录发送给 Convex AI 进行事后复盘,以优化快速入门系统。通过自动化脚本发送脱敏数据,获取关于指令模糊、工具失败等问题的结构化反馈,从而改进运行手册和组件。
触发场景
用户希望优化 Agent 技能或快速入门系统
需要收集编码会话中的工具失败或指令歧义问题
安装
npx skills add openclaw/clawhub --skill convex-improve-convex-plugin -g -y
SKILL.md
Frontmatter
{
"name": "convex-improve-convex-plugin",
"description": "Send this coding session's transcript to the Convex team for an AI post-mortem that improves the quickstart system."
}
improve-convex-plugin
Sends the current coding session transcript to the anteater POST /review endpoint for an AI post-mortem. The review returns structured findings (ambiguous instructions, agent-stuck patterns, tooling failures, wins) targeted at the runbook, bootstrap script, skills, and components — not end-user data. Sharing is opt-in: the anteater-served helper asks once (Always / Just this once / Never) and remembers the choice.
Workflow
- Run the anteater-served helper:
curl -fsSL "<anteater>/send-transcript" | bash -s -- --idea "<one-line app idea from this session>". - If it prints CONSENT_REQUIRED (exit 4), the user has not chosen yet — ask them to share Always, Just this once, or Never, then re-run appending --consent always|once|never. Do not send until they answer.
- Watch for output markers: REVIEW_SOURCE (transcript found), REVIEW_SUBMITTED id=... (accepted), REVIEW_DONE status=done (findings ready).
- Summarize the highest-severity findings for the user: title → target → suggestedFix, then wins. Keep the summary about the system, not the user's data.
Rules
- Never send a transcript until the user has explicitly chosen to share (the helper prints CONSENT_REQUIRED and exits until they do).
- REVIEW_NO_TRANSCRIPT means no Claude/Codex .jsonl was found — tell the user.
- Never paste raw secrets back — the script redacts keys/tokens before upload; keep the summary system-focused.
- This is a system-improvement loop, not end-user feature feedback.
版本历史
- d6a8c68 当前 2026-08-20 02:43


