一键导入
collect-my-feedback
Document confirmed coding mistakes from the current session in the project's coding standards.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Document confirmed coding mistakes from the current session in the project's coding standards.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | collect-my-feedback |
| description | Document confirmed coding mistakes from the current session in the project's coding standards. |
Document all coding mistakes accumulated over the current session as new entries in docs/code-base/<project>/coding-standards.md. Agents frequently mischaracterize their own mistakes, so this command includes an explicit confirmation step before writing anything.
$ARGUMENTS
Review the entire conversation and identify every coding mistake the human corrected. Present them as a concise numbered list:
Mistakes I made this session:
1. <high-level mistake> — <explicit form the mistake took> (instead of <correct action>)
2. ...
For example:
Mistakes I made this session:
- Duplicated code — wrote `_write_bundled_standard` as a copy of `_write_bundled_command` (instead of refactoring out their common logic)
Ask: "Does this list accurately capture your corrections? Agents often mischaracterize their own errors — please add, remove, or correct anything before I write the entries."
Wait for confirmation. Update the list based on any corrections. Do not write to the file until the user has approved.
For each confirmed mistake, append an entry in the format used by docs/code-base/<project>/coding-standards.md:
## <Principle>
### Example: <brief description of the specific mistake>
**Agent's solution:** ... <include the code or architecture that demonstrates the problem> ...
**Why this is wrong:** ...
**Human-provided fix:** ...
Focus on:
Merges completed work back to main through a protected-branch pull request workflow.
Set up a new git worktree and install dependencies.
Merges completed work back to main through a protected-branch pull request workflow.
Set up a new git worktree and install dependencies.
Prepares a Python package for PyPI release by updating the version, building, and verifying the distribution.
Prepare a release by updating the version, building, and verifying the distribution.