원클릭으로
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.