convex-improve-convex-plugin

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese
<!-- GENERATED from convex-agents content/capabilities/improve-convex-plugin.json — do not edit by hand. -->
<!-- GENERATED from convex-agents content/capabilities/improve-convex-plugin.json — do not edit by hand. -->

improve-convex-plugin

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.
将当前编码会话的记录发送至anteater的POST /review端点,用于AI复盘。复盘会返回针对运行手册、引导脚本、skills和组件的结构化结论(模糊指令、Agent卡顿模式、工具故障、成功点)——不涉及终端用户数据。分享为可选操作:由anteater提供的助手会询问一次(始终允许/仅本次/永不允许)并记住用户的选择。

Workflow

工作流程

  1. Run the anteater-served helper:
    curl -fsSL "<anteater>/send-transcript" | bash -s -- --idea "<one-line app idea from this session>"
    .
  2. 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.
  3. Watch for output markers: REVIEW_SOURCE (transcript found), REVIEW_SUBMITTED id=... (accepted), REVIEW_DONE status=done (findings ready).
  4. Summarize the highest-severity findings for the user: title → target → suggestedFix, then wins. Keep the summary about the system, not the user's data.
  1. 运行anteater提供的助手:
    curl -fsSL "<anteater>/send-transcript" | bash -s -- --idea "<本次会话中的一行应用创意>"
  2. 如果输出显示CONSENT_REQUIRED(退出码4),说明用户尚未做出选择——询问用户选择始终允许、仅本次还是永不允许,然后添加参数--consent always|once|never重新运行。在用户做出答复前不要发送记录。
  3. 关注输出标记:REVIEW_SOURCE(找到会话记录)、REVIEW_SUBMITTED id=...(已接受)、REVIEW_DONE status=done(结论已准备就绪)。
  4. 为用户总结最高优先级的结论:标题 → 目标 → 建议修复方案,然后是成功点。总结内容需聚焦于系统本身,而非用户数据。

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.
  • 在用户明确选择分享前,绝不发送会话记录(助手会输出CONSENT_REQUIRED并退出,直到用户做出选择)。
  • REVIEW_NO_TRANSCRIPT表示未找到Claude/Codex的.jsonl文件——告知用户。
  • 绝不粘贴原始机密信息——脚本在上传前会自动屏蔽密钥/令牌;总结内容需聚焦于系统。
  • 这是一个系统改进循环,而非终端用户功能反馈。