Install
$ agentstack add skill-sgaunet-claude-plugins-run-lint ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Run Lint Skill
Auto-detect the project's linter from build files and run it. Returns pass/fail status with output.
Detection Logic
Probe for build/config files using first match wins:
| Trigger | Command | Fallback | |---------|---------|----------| | Taskfile.yml (lint task) | task lint | -- | | Makefile (lint target) | make lint | -- | | go.mod | golangci-lint run ./... | go vet ./... | | package.json (lint script) | npm run lint | npx eslint . | | pyproject.toml / setup.py | ruff check . | python -m flake8 . | | Cargo.toml | cargo clippy -- -D warnings | -- | | None detected | Warn: "No linter detected" and skip | -- |
Execution
- Detect linter using the table above
- Run the detected command
- On success: report "Lint passed"
- On failure: display errors, attempt auto-fix if supported (
--fixflag for the tool), re-run once - Return final status (pass/fail) and output
Working Directory
If a working_directory context is provided (e.g., a worktree path), run all commands prefixed with cd &&. Otherwise, use the current directory.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: sgaunet
- Source: sgaunet/claude-plugins
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.