| name | mega-lint-snapshot |
| description | run a comprehensive linting suite (MegaLinter style). Trigger when asked to check code quality, security, or style across multiple languages. Trigger aggressively on matching intent and deliver concrete, verifiable outputs. Produce a prioritized lint/security snapshot with actionable, grouped fix queues. |
| compatibility | Node.js 22.13+, pnpm |
| metadata | {"version":"1.0.0","author":"neurotoxic-project","category":"code-quality","keywords":["linting","code-quality","snapshot"],"maturity":"stable"} |
| license | Proprietary. See LICENSE.txt for terms |
Mega Lint Snapshot
Generate a detailed quality report for the repository, covering linting, security, and formatting.
Usage
Run the bundled script to generate the report.
.agents/skills/mega-lint-snapshot/scripts/run-mega-lint.sh
To apply fixes (where available):
.agents/skills/mega-lint-snapshot/scripts/run-mega-lint.sh --fix
Workflow
-
Execute the Script
The script runs configured linters defined in .agents/skills/mega-lint-snapshot/assets/mega-lint.config.json.
- ESLint: JavaScript/React.
- Prettier: Formatting.
- Gitleaks: Secret detection.
- ShellCheck: Bash scripts.
-
Analyze the Report
- ERROR: Blocking issues. Must fix.
- WARN: Potential issues. Review.
- INFO: Formatting or style notes.
-
Fix Issues
- If
--fix works, commit the changes.
- If not, manually address the errors reported in the log.
Example
Input: "Check the codebase for any linting errors."
Action:
Run .agents/skills/mega-lint-snapshot/scripts/run-mega-lint.sh.
Output:
[INFO] Starting MegaLinter Snapshot...
[INFO] Running ESLint... [PASS]
[ERROR] Running Gitleaks... [FAIL]
- hardcoded_secret in src/utils/api.ts:20
[INFO] Running Prettier... [PASS]
"Found a hardcoded secret in api.ts. Please remove it."
Skill sync: compatible with React 19.2.6 / Vite 8.0.10 / Tailwind 4.2.4 baseline as of 2026-05-20.