akilint

akilint is a skill for Claude Code from lacvietanh/akidevrule. It costs 114 tokens per session (624 once invoked), scanned A, original, MIT.

A mechanical formatting checker for selected comment and Markdown formatting rules in coding-agent guidance. It reports lines that may be improperly wrapped or unusually long, while leaving content judgement to a person.

In plain words
What is it for?
Running the shared detector on files or directories to find wrapped comments, broken Markdown prose, and oversized comments.
Why use it?
It catches formatting patterns that are easy to miss during review and produces deterministic file-and-line findings. It does not decide whether a long explanation is actually unnecessary.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: reads .claude/ paths.

Good fit Running the shared detector on files or directories to find wrapped comments, broken Markdown prose, and oversized comments.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lacvietanh/akidevrule/akilint
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 lacvietanh/akidevrule --skill akilint
Clone the repo
git clone --depth 1 https://github.com/lacvietanh/akidevrule

Made for: Claude Code.

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 akilint

README.md
[![agentmods](https://agentmods.dev/badge/skills/lacvietanh/akidevrule/akilint/github.svg)](https://agentmods.dev/skills/lacvietanh/akidevrule/akilint)
Your own site
<a href="https://agentmods.dev/skills/lacvietanh/akidevrule/akilint"><img src="https://agentmods.dev/badge/skills/lacvietanh/akidevrule/akilint/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 akilint

Your own site · 80×15
<a href="https://agentmods.dev/skills/lacvietanh/akidevrule/akilint"><img src="https://agentmods.dev/badge/skills/lacvietanh/akidevrule/akilint.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 114 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 624 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00114 $0.00624
Opus 5 $0.00057 $0.00312
Sonnet 5 $0.00023 $0.00125
Haiku 4.5 $0.00011 $0.00062

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

Security

Grade A, and why

akilint 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 11d 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.

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.

skills/akilint/SKILL.md · 30 lines

What it actually says

akilint — penalty-card lint

Runs the shared detector — never a model sweep for what a grep settles:

python3 ~/.claude/skills/akiflow/scripts/scythe.py <file|dir> [...]   # on other CLIs: the same path under that CLI's skills root

The script is the SSoT for these detectors — akiflow's aki-conduct seat runs the same one, so a card name means the same thing everywhere. Exit code: 0 clean, 1 findings — usable from CI or hooks without parsing.

Scope — what the script can and cannot claim

  • [WRAP] — a logical line split across physical lines: a 2-line comment whose second line reads as a lowercase continuation, or a markdown prose line broken mid-sentence. Root rule: agent.C3.
  • [YAP] — a comment block ≥3 lines, or a comment line >200 chars. Always labeled (review): a flag for judgment against coding.B4, never an auto-delete verdict — a legitimate long WHY exists and agent.C3 forbids wrapping it, so length alone convicts nothing.
  • [FLUFF] (density, agent.A4) is content understanding — a script cannot check it and this skill never claims it.

Protocol

  1. Run scythe on the paths in scope. Default scope = the files this session touched or the paths the user named; a repo-wide sweep is proposed in one line first, not assumed (agent.B1).
  2. Report the findings verbatim — they are already dense coordinates; do not re-narrate them.
  3. Fix [WRAP] findings directly: rejoining is mechanical (agent.C3) — but honor C3's atomic-line cautions: never merge frontmatter fields, one-per-line directives, or any line something parses.
  4. Judge each [YAP] finding against coding.B4 before touching it: fix the name/shape first, delete second, keep a genuine WHY (or move an oversize rationale to a doc and leave the reference, docs.B3). State in one line what was kept and why.
  5. False positives (a legitimate docblock, a keyword list): name them as such in the report — do not silently skip, and do not "fix" them.
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. 11d ago First seen · 30 lines · 114 tokens per session scan A a1815ee28aff

Subscribe to this mod's changes

akilint is a skill published in the GitHub repository lacvietanh/akidevrule (9 stars, last pushed 3d ago), licensed MIT. It adds 114 tokens to every session and 624 once invoked, about $0.0006 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-08-31.

Related

Other skills, from other repositories

starfleet-tasks

Task capture, task lifecycle, dashboard topics, and reports via starfleetctl. Load when capturing, working on, or reporting a task, and for all dashboard access.

mpbt-hq/starfleetctl · 39 tokens

starfleet-timer

Set timers instead of blocking a session with sleep/watch-loops (e.g. waiting for a GitHub Actions run): the timer fires a comms directive into the fleet at the scheduled time, and the poller injects it into the owning ship's next turn — no background process, no blocking, survives a session restart.

mpbt-hq/starfleetctl · 42 tokens

starfleet

Fleet coordination core — comms, board status, concurrency/isolation, and pointers to the themed starfleet- skills. Load when handling inter-ship messages, checking the board, or unsure which starfleet skill applies.

mpbt-hq/starfleetctl · 47 tokens

starfleet-github

GitHub PR/CI/backport interaction via starfleetctl (read-only + mutating commands, PR claims, backports). Load when checking PR status/CI, claiming a PR branch, submitting or repairing a PR, or backporting.

mpbt-hq/starfleetctl · 55 tokens

starfleet-sessions

Ship session and workspace management — spawning ships, session attach/stop, git worktrees, web console, deployment. Load when launching/administering ships or managing the fleet web console.

mpbt-hq/starfleetctl · 42 tokens

doubt-driven-review

In-flight adversarial check on a non-trivial decision BEFORE it stands — distinct from post-hoc review of a finished diff. Use on "stress-test this decision", "are we sure about this", "verify before commit", "poke holes in this", when working in unfamiliar code, or before an irreversible step (migration, prod deploy…

BlackBeltTechnology/pi-agent-dashboard · 90 tokens