lint-skills

lint-skills is a skill for Claude Code, Codex from event4u-app/agent-config. It costs 30 tokens per session (900 once invoked), scanned A, original, MIT.

A linter for checking the structure and execution metadata of all skills and rules in a package.

In plain words
What is it for?
Running the package-wide skill checks and investigating reported lint failures.
Why use it?
It catches malformed frontmatter, missing sections, and invalid runtime settings before they cause validation or execution problems.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Running the package-wide skill checks and investigating reported lint failures.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/event4u-app/agent-config/lint-skills
Install

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.

Any agent
npx skills add event4u-app/agent-config --skill lint-skills
Clone the repo
git clone --depth 1 https://github.com/event4u-app/agent-config

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for lint-skills

README.md
[![agentmods](https://agentmods.dev/badge/skills/event4u-app/agent-config/lint-skills/github.svg)](https://agentmods.dev/skills/event4u-app/agent-config/lint-skills)
Your own site
<a href="https://agentmods.dev/skills/event4u-app/agent-config/lint-skills"><img src="https://agentmods.dev/badge/skills/event4u-app/agent-config/lint-skills/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for lint-skills

Your own site · 80×15
<a href="https://agentmods.dev/skills/event4u-app/agent-config/lint-skills"><img src="https://agentmods.dev/badge/skills/event4u-app/agent-config/lint-skills.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 900 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.00900
Opus 5 $0.00015 $0.00450
Sonnet 5 $0.00006 $0.00180
Haiku 4.5 $0.00003 $0.00090

Measured 8d ago against content hash 2a5eb01dc445, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

lint-skills scanned grade A with 1 finding 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 8d ago.

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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

`subprocess.run` with `shell=False`; only argv form is supported
src/skills/lint-skills/SKILL.md · 104 lines

How it starts

The opening of the file, as written. The whole thing — 104 lines — stays where its author put it; the contents beside it link to each section on GitHub.

lint-skills

When to use

Use this skill when:

  • Validating the shape of every skill and rule in src/
  • Verifying execution metadata (execution.type, handler, command) is well-formed
  • Checking locally before opening a PR that CI's skill-lint job will pass
  • Investigating a reported linter failure on a specific skill or rule

Do NOT use when:

  • Linting only one file — call ./scripts-run src/scripts/skill_linter <path> directly
  • Checking cross-references between files — use check-refs instead
  • Checking condensation freshness — use bash scripts/condense.sh --check instead

Procedure

1. Inspect the environment

Confirm ./scripts-run is executable and the working directory is the agent-config repository root — the linter expects to find src/skills/ and related directories relative to cwd.

2. Dispatch via the runtime layer

Invoke the skill through the runtime dispatcher so the execution: block in this skill's frontmatter governs the call:

./scripts-run src/scripts/runtime_dispatcher run --skill lint-skills

The dispatcher resolves the request, the shell handler runs ./scripts-run src/scripts/skill_linter --all, captures stdout/stderr, and returns a typed ExecutionResult.

3. Verify the result

Check the returned ExecutionResult:

  • status: success and exit_code: 0 → all skills and rules are clean
  • exit_code: 1 → warnings only — review stdout for the listed warnings
  • exit_code: 2 → errors present — fix the flagged files before continuing
  • status: timeout → the linter exceeded timeout_seconds — investigate
  • status: error → the runner could not launch — check that ./scripts-run is on PATH and the repository root is the current working directory

Output format

  1. One-line summary: success | failure | timeout | error, exit code, duration in milliseconds
  2. Count of skills and rules the linter inspected, if known
  3. List of files with errors (first 10), each with code and message
  4. Next action: fix errors, re-run, or surface the raw stdout for review

Read the full file on GitHub · 104 lines

Changes

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.

  1. 8d ago First seen · 104 lines · 30 tokens per session scan A 2a5eb01dc445

Subscribe to this mod's changes

lint-skills is a skill published in the GitHub repository event4u-app/agent-config (10 stars, last pushed today), licensed MIT. It adds 30 tokens to every session and 900 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.

Related

Other skills, from other repositories

diagnose-backend-bug

Diagnose a bounded backend or multi-service failure from GitHub Issues, Jira, Aone, user-provided exports, logs, traces, responses, stack traces, or job records. Use when a service, API, RPC, worker, queue, CLI, or scheduled job bug needs correlation through the project's existing observability route before repair; do…

QoderAI/better-harness · 87 tokens

memorix-troubleshooting

Use when Memorix MCP, setup, project binding, HTTP control plane, hooks, skills, or agent integration is missing, stale, or failing.

AVIDS2/memorix · 36 tokens

Concurrency Testing Patterns

Testing concurrent code including race condition detection, deadlock prevention, thread safety verification, and parallel execution correctness.

PramodDutta/qaskills · 25 tokens

kiro-verify-completion

Verify completion and success claims with fresh evidence. Use before claiming a task is complete, a fix works, tests pass, or a feature is ready for GO.

gotalab/cc-sdd · 39 tokens

chatcrystal-debug-recall

Recall ChatCrystal memories for debugging tasks involving failing tests, compiler errors, runtime exceptions, dependency issues, environment breakage, or performance regressions. Use when historical root causes, fixes, or pitfalls may accelerate diagnosis before proposing a fix.

ZengLiangYi/ChatCrystal · 54 tokens

monte-carlo-performance-diagnosis

Diagnoses pipeline performance issues -- slow jobs, expensive queries, latency trends -- using Monte Carlo's cross-platform observability. Uses a tiered investigation approach: discover problems, bridge to affected tables, then drill into root causes. Activates when a user asks about slow pipelines, expensive queries…

monte-carlo-data/mc-agent-toolkit · 75 tokens