Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/random6913/claude-code-superkit/lintgit clone --depth 1 https://github.com/RaNDoM6913/claude-code-superkitWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/random6913/claude-code-superkit/lint)<a href="https://agentmods.dev/commands/random6913/claude-code-superkit/lint"><img src="https://agentmods.dev/badge/commands/random6913/claude-code-superkit/lint.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00021 | $0.02063 |
| Opus 5 | $0.00010 | $0.01032 |
| Sonnet 5 | $0.00004 | $0.00413 |
| Haiku 4.5 | $0.00002 | $0.00206 |
Grade A, and why
lint scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 138 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Lint
Role
Auto-detect the project's formatters and linters from stack-marker files and run them — optionally scoped to backend or frontend, optionally in --fix mode.
Hard Rules
- Run the formatter before the linter for each stack (format first, then check).
- Prefer a Makefile
lint/fmttarget over the raw tool when one exists — it may carry project-specific setup. - Run only the commands in the Step 2 table (and the Step 4
--fixvariants); never invent linters, flags, or tools not listed there. - Treat
--fixas a modifier combinable with any scope, not as a scope of its own. --fixrewrites files in place — apply it only to the Step 4 format and auto-fix commands, never to check-only commands (go vet,tsc --noEmit,mypy,flake8).- Report every detected in-scope linter, including PASS and unavailable ones; one block per detected in-scope linter.
- Default to scope
allfor empty or unrecognized input — never guess a narrower scope.
Step 1 — Parse Arguments
Read the request and derive two independent values from it. Scope and fix are orthogonal: any scope may carry --fix.
$ARGUMENTS
- scope = the first bare token equal to
backend,frontend, orall. Empty input or any unrecognized token →all. - fix =
trueif the token--fixappears anywhere in the input, elsefalse.
Done-when: scope is exactly one of backend / frontend / all, and fix is true or false.
Step 2 — Detect Linters
Scan the project for stack markers and map each present marker to its commands. Detect with Bash only: test -f <marker> for files, grep -qF '<section>' pyproject.toml for a config section (fixed-string -F so the [...] in section names like [tool.ruff] is matched literally, not as a regex character class), command -v <tool> for a tool on PATH.
| Marker | Format Command | Lint Command | Stack |
|---|---|---|---|
go.mod |
gofmt -w . |
go vet ./... |
Go |
go.mod + golangci-lint in PATH |
gofmt -w . |
golangci-lint run |
Go (extended) |
package.json + .eslintrc* / eslint.config.* |
— | npx eslint . |
ESLint |
package.json + tsconfig.json |
— | npx tsc --noEmit |
TypeScript |
package.json + prettier config (.prettierrc*, prettier.config.*, or a prettier key in package.json) |
npx prettier --write . |
npx prettier --check . |
Prettier |
pyproject.toml + [tool.ruff] |
ruff format . |
ruff check . |
Python (ruff) |
pyproject.toml + [tool.black] |
black . |
— | Python (black) |
pyproject.toml + [tool.flake8] / setup.cfg |
— | flake8 |
Python (flake8) |
pyproject.toml + [tool.mypy] |
— | mypy . |
Python (mypy) |
Cargo.toml |
cargo fmt |
cargo clippy -- -D warnings |
Rust |
Makefile with lint target |
— | make lint |
Makefile |
Makefile with fmt target |
make fmt |
— | Makefile |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today First seen · 138 lines · 21 tokens per session scan A 023fddd2e6ee
lint is a command published in the GitHub repository RaNDoM6913/claude-code-superkit (2 stars, last pushed 1mo ago), licensed MIT. It adds 21 tokens to every session and 2,063 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other commands, from other repositories
copy-ai-context
Export converged workspace context to the clipboard for any AI chat.
learn-workspace-intent
Run Contorium BYOK workspace intent learning when API keys are configured.
setup-mcp-claude-code
Build and register the Contorium MCP server for Claude Code or Cursor Agent.
start-fresh-session
Start a fresh Contorium AI context session after a major task or workspace shift.
setup-mcp-codex
Build Contorium and install the Codex plugin with bundled MCP memory tools.
dmb-resume
Resume DMB context for this session.