원클릭으로
linting
Add or extend lint/format tooling and ensure it runs locally (Makefile) and in CI. Lint/build are always required in Gaia.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Add or extend lint/format tooling and ensure it runs locally (Makefile) and in CI. Lint/build are always required in Gaia.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | linting |
| description | Add or extend lint/format tooling and ensure it runs locally (Makefile) and in CI. Lint/build are always required in Gaia. |
Use when:
Lint is required and blocking.
make lint exists and passes/docs/testing/how-to-run.md (or equivalent)Look for:
dart format, dart analyze, flutter analyzeRecord:
Prefer Make targets:
make lint (required)make format (if repo supports auto-fix)
If Makefile missing: create a task to add it (blocking if repo needs to run locally)..editorconfig existsdotnet format (or analyzers) as the canonical lint/format steppython -m ... commands are stable across environmentsdart format + dart analyze (or flutter analyze) as canonical stepsmake lint)/docs/testing/how-to-run.md to include lint commands (Make targets).lint, cibuild (to ensure analyzers/build rules are compatible)Add/extend Playwright E2E/integration specs for web use-case changes. Prefer existing repo naming conventions; include UC ID when introducing new use-case-specific specs.
Ensure GitHub Actions CI exists and is green. CI must run lint/format, build, and tests as applicable. Failing CI is blocking.
Derive comprehensive `/docs` from an existing codebase when docs are missing/stale. This is blocking work before new features.
Add docker-compose for HTTP APIs (required before implementing/changing use cases). Provide .env.example + Make targets: up/down/test/lint/build.
End-to-end Gaia SDLC workflow (Repo Explorer → drift/CI fixes → task graph → gated delivery → QA veto → MCP proof). Use for any work in a repo.
Run curl-style integration checks against the docker-compose stack for HTTP APIs. Required for use-case changes.