| name | post-edit |
| description | 코드 수정 후 lint, 빌드, 검증, 테스트 파이프라인 실행 |
| allowed-tools | ["Bash"] |
Run the post-edit pipeline after code modifications.
Steps (run sequentially, stop on failure):
npm run lint:fix-js — ESLint auto-fix
npm run ts-build — type generation (includes check:inject)
npm run check:arch — dependency architecture check
npm run check:exports — export sync check
npm run test — unit tests
Note: check:langs is excluded (requires Google API key).
Report results as a summary table:
| Step | Result |
|---|
| lint:fix-js | pass/fail |
| ts-build | pass/fail |
| check:arch | pass/fail |
| check:exports | pass/fail |
| test | pass/fail (N passed, N failed) |