with one click
feedback-writer
记录用户反馈到进化系统。接收反馈信号,结构化写入 feedback/store.json。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
记录用户反馈到进化系统。接收反馈信号,结构化写入 feedback/store.json。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
构建验证、版本管理与发布上线。多轮确认发布目标与推送路径后执行门禁与发布,写入状态与 release notes。用户提到发布、上线、deploy、打 tag、发版、merge 到 main、推远程、构建生产包、创建 PR 时,即使未说 release 也必须使用本 skill。
技术架构设计。调研技术方案、评估开源项目、输出架构决策记录,写入 Tech-Arch.md。在 dev-planner 之前调用。
设计执行。基于 Design-Brief.md 产出原型、设计稿或设计系统。支持 Figma、Pencil、HTML/CSS 原型等多种输出方式。
需求收集与问题澄清。新建或迭代 PRD,通过交互式澄清生成结构化产品需求文档。
系统化调试修复 Bug。五阶段:收集证据→重现用例→分析(含根因归因)→假设→修复→进化记录。支持触发 code-review 和 feedback-writer。
代码审查和质量检查。调度 code-reviewer sub-agent 审查代码,检查是否符合计划和编码标准。
| name | feedback-writer |
| description | 记录用户反馈到进化系统。接收反馈信号,结构化写入 feedback/store.json。 |
接收用户反馈信号(修正、不满、偏好、建议),结构化为标准格式写入 feedback/store.json。维护进化系统的数据基础。
确定以下信息:
读取 feedback/store.json,检查是否已有相似的反馈记录:
更新 feedback/store.json 中的 entries 和 skill_scores。
删除 .claude/feedback/.signal.tmp(如果存在)。
{
"feedback_entries": [
{
"id": "fb-001",
"timestamp": "2026-04-28T10:30:00",
"type": "correction",
"skill": "dev-builder",
"summary": "反馈摘要",
"context": "当前任务上下文描述",
"issue": "用户指出的具体问题",
"resolution": "采用的解决方式",
"frequency_count": 1,
"evolution_tag": "L1_RAW",
"confidence_score": 0.85
}
],
"skill_scores": {
"dev-builder": {
"positive": 10,
"negative": 2,
"score": 83.3,
"status": "healthy"
}
},
"evolution_rules": [
{
"id": "rule-001",
"source_feedback": ["fb-001", "fb-003", "fb-007"],
"rule_summary": "规则描述",
"target_file": ".claude/CLAUDE.md",
"status": "active",
"effective_date": "2026-04-28"
}
]
}
feedback/store.json