| name | fix |
| description | Run the fix-and-verify suite for the client workspace (build, auto-fix lint/format/headers). IMPORTANT - Proactively invoke this skill after completing any code changes to the client (new features, bug fixes, refactors) before reporting completion. Re-run it after manually addressing anything it could not auto-fix. |
Run the auto-fix and validation suite for the GLSP Eclipse Integration client monorepo. All commands run from the client/ directory (the pnpm workspace root):
cd client
- Build first (compiles all TypeScript packages and bundles the workflow webapp). This is a hard gate: if the build fails, stop immediately, report the build errors, and do not run any of the following steps.
The build must pass before anything else runs.
pnpm build
- Auto-fix lint, formatting, and copyright headers. Run all three even if an earlier one reports remaining problems (they are independent):
pnpm lint:fix
pnpm format
pnpm headers:fix
Then:
- If
pnpm build failed, fix the compile errors and re-run this skill.
- If
pnpm lint:fix reported lint errors it could not fix, fix them manually and re-run this skill.
- Otherwise if everything is clean (compile succeeds, formatting and headers are corrected in place, lint has no remaining errors) — report completion.