원클릭으로
sce-validation
Use when user wants to Run final plan validation and cleanup with evidence capture.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when user wants to Run final plan validation and cleanup with evidence capture.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Write atomic, repo-style git commits from a change summary or diff. Use when preparing commit messages, splitting work into coherent commits, or reviewing whether a commit is too broad.
Use when user wants to Bootstrap SCE baseline context directory when missing.
Use when user wants to Synchronize context files to match current code behavior after task execution.
Use when user wants to create a structured SCE handover for the current task.
Use when user wants to Create or update an SCE implementation plan with scoped atomic tasks.
Use when user wants to review an existing plan and prepare the next task safely.
| name | sce-validation |
| description | Use when user wants to Run final plan validation and cleanup with evidence capture. |
pytest, npm test, go test ./..., cargo test, make test). Check package.json, Makefile, pyproject.toml, or CI config files to find the right command.eslint, ruff, golangci-lint, cargo clippy, make lint). Check project config files such as .eslintrc, pyproject.toml, or .golangci.yml.ruff --fix, eslint --fix), apply it, then re-run to confirm clean output.Write to context/plans/{plan_name}.md including:
## Validation Report
### Commands run
- `npm test` -> exit 0 (42 tests passed, 0 failed)
- `eslint src/` -> exit 0 (no warnings)
- Removed: `src/debug_patch.js` (temporary scaffolding)
### Success-criteria verification
- [x] All API endpoints return 200 for valid input -> confirmed via test output line 34
- [x] Error responses include structured JSON -> confirmed via `test_error_format.js`
### Residual risks
- None identified.