원클릭으로
responding-to-feedback
Use when replying to feedback on your work (review comments, manuscript revisions, design critique, criticism)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when replying to feedback on your work (review comments, manuscript revisions, design critique, criticism)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when the meta-builder routes to kind=discipline. Generates a discipline spell with the rule, excuses table, warning signs, and hard gates.
Use when the user wants to capture a repeatable task as a reusable spell, or asks "how do I build a workflow / skill / framework for X"
Use when the meta-builder routes to kind=subagent. Generates a spell that dispatches one or more subagents to do work in parallel or in isolation.
Use when the meta-builder routes to kind=workflow. Generates a workflow spell with explicit stages, checkpoints, and loop-back conditions.
Use when composing multiple spells into a chain that runs end-to-end (e.g. brainstorm -> plan -> execute -> verify).
Use when browsing what spells are available - bundled seeds, your personal library, or both. Filter by kind, audience, or update status.
| name | responding-to-feedback |
| description | Use when replying to feedback on your work (review comments, manuscript revisions, design critique, criticism) |
| kind | workflow |
| audience | knowledge-worker |
| ai-tools | any |
| complexity | guided |
| time | 10-30 min |
| version | 1.0.0 |
| source | bundled |
Turns a pile of feedback (comments, edits, critique) into a structured response that addresses each piece explicitly: accept, reject, negotiate, or defer — with reasons.
A response that addresses every atom of feedback with a classification and a decision, plus the implementation plan for accepts.
This is a workflow.
Break the feedback into individual atoms — one issue per atom. A comment that says "this is unclear and the example is wrong" is two atoms.
For each atom, label one of:
For each, decide:
For each atom, write one short paragraph: classification → decision → reasoning. Group by classification: blockers first.
Read the whole response back. Tone target: grateful (without sycophancy), direct, focused on the work not the person.
For accepts, do the actual changes. For negotiates that get agreement, do those too. Don't ship the response without doing the work.
Return to Stage 3 when a negotiation produces a counter that changes the original decision.
Input: Code review with 8 comments on a new feature.
Output (excerpt):
Blockers (2):
- Comment on
auth.ts:42(concurrency bug): Accept. Fixed in commit abc123 with a mutex.- Comment on
api.ts:88(missing test): Accept. Added test in commit def456.Suggestions (3):
- Comment on naming
getUser→fetchUser: Reject. The codebase usesget*for synchronous-feeling reads (seegetOrders); switching one breaks consistency. Keeping as is.- ...
Nits (2): All accepted; bundled in commit ghi789.
Out-of-scope (1): Comment about refactoring the whole module — agreed it's needed; filed as separate ticket #1234.