ワンクリックで
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 職業分類に基づく
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.
| 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: