Help us improve
Share bugs, ideas, or general feedback.
From antigravity-bundle-essentials
Enforces linting (eslint, ruff), type checking (tsc, mypy), and security audits (npm audit, bandit) after every code change in Node.js/TypeScript and Python projects. Ensures error-free code before task completion.
npx claudepluginhub sickn33/antigravity-awesome-skills --plugin antigravity-bundle-essentialsHow this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity-bundle-essentials:lint-and-validateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **MANDATORY:** Run appropriate validation tools after EVERY code change. Do not finish a task until the code is error-free.
Enforces linting (eslint, ruff), type checking (tsc, mypy), and security audits (npm audit, bandit) after every code change in Node.js/TypeScript and Python projects. Ensures error-free code before task completion.
Verifies code after changes with typecheck, lint, tests, build for Node/TS, Python, Go, Rust projects. Auto-fixes errors, detects secrets, circular deps, deadcode, AI slop.
Runs deterministic Python quality checks: linting/formatting (ruff), type checking (ty), tests (pytest), policy validation, and pre-commit workflows. Reports grouped results by category.
Share bugs, ideas, or general feedback.
MANDATORY: Run appropriate validation tools after EVERY code change. Do not finish a task until the code is error-free.
npm run lint or npx eslint "path" --fixnpx tsc --noEmitnpm audit --audit-level=highruff check "path" --fix (Fast & Modern)bandit -r "path" -llmypy "path"npm run lint && npx tsc --noEmitlint fails: Fix the style or syntax issues immediately.tsc fails: Correct type mismatches before proceeding..eslintrc, tsconfig.json, pyproject.toml and suggest creating one.Strict Rule: No code should be committed or reported as "done" without passing these checks.
| Script | Purpose | Command |
|---|---|---|
scripts/lint_runner.py | Unified lint check | python scripts/lint_runner.py <project_path> |
scripts/type_coverage.py | Type coverage analysis | python scripts/type_coverage.py <project_path> |
This skill is applicable to execute the workflow or actions described in the overview.