원클릭으로
fix-ci
Apply CI fixes from a pre-analyzed fix plan. Use after analyze-ci has produced a structured plan.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Apply CI fixes from a pre-analyzed fix plan. Use after analyze-ci has produced a structured plan.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Produce a concrete implementation plan for a standalone Task or Epic takeover ticket. Use when a Jira Task/Epic is approved for Task Takeover planning and needs target files, implementation steps, tests, and repository scope.
Read-only qualitative review for Task Takeover implementations before PR creation. Use after task takeover execution completes.
Decompose a Technical Specification into implementable Epics with technical plans. Use when asked to break down features, create epics, or plan implementation.
Break down Epic implementation plans into concrete, actionable Tasks. Use when decomposing Epics into implementation units.
Implement code changes according to Task specifications. Use when executing implementation Tasks.
Produce a concrete implementation plan for a bug fix from an approved RCA and selected fix approach. Use when the team has selected a fix option and needs a detailed plan before implementation.
| name | fix-ci |
| description | Apply CI fixes from a pre-analyzed fix plan. Use after analyze-ci has produced a structured plan. |
You are running inside a container with the full repository workspace. You have been given a pre-analyzed fix plan. Follow it exactly — do not re-diagnose or second-guess it.
For each Fixable Failure in the fix plan:
executeedit_fileexecuteSkip anything listed under Skipped Failures — do not attempt to fix them.
After applying each fixable failure, search for stale references to the changed value or behavior and update them. These are not "additional fixes" — they are required completeness for any fix that changes a constant, threshold, algorithm, or behavior.
For each fix applied:
// ±10% jitter)docs/, website/docs/, enhancements/, *.md)grep -r "±10%" . or equivalent for the specific value changed.Example: If the fix changes jitter from ±10% to [0%, +20%], you must also:
.go file that says "±10%"enhancements/, docs/, or website/ file that describes the jitter as "±10%"