sounio-lint

sounio-lint is a skill for Claude Code from Sounio-lang/sounio. It costs 23 tokens per session (420 once invoked), scanned A, original, Apache-2.0.

A checker for Sounio source files that finds Rust syntax patterns that do not belong in Sounio. Sounio is a programming language, while Rust is a different programming language.

In plain words
What is it for?
Use it to scan one .sio file or all .sio files, report findings with line numbers, and apply requested fixes such as changing Rust macros, mutable-variable syntax, attributes, closures, and semicolons.
Why use it?
It helps catch syntax copied from Rust before it causes Sounio compilation or style problems.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash scripts/sounio-lint.sh <file>.

Good fit Use it to scan one .sio file or all .sio files, report findings with line numbers, and apply requested fixes such as changing Rust macros, mutable-variable syntax, attributes, closures, and semicolons.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Sounio-lang/sounio
agentmods
npx agentmods add skills/sounio-lang/sounio/sounio-lint

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 sounio-lint

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/sounio-lang/sounio/sounio-lint"><img src="https://agentmods.dev/badge/skills/sounio-lang/sounio/sounio-lint.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 420 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.00023 $0.00420
Opus 5 $0.00012 $0.00210
Sonnet 5 $0.00005 $0.00084
Haiku 4.5 $0.00002 $0.00042

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

Security

Grade A, and why

sounio-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 12d 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.

ecosystem/claude-code-sounio/skills/sounio-lint/SKILL.md · 43 lines

What it actually says

Sounio Lint — Rust-ism Detector

Scan Sounio source files for common Rust syntax that doesn't belong.

Instructions

  1. If a file argument is given, lint that file. Otherwise, lint all .sio files in the current directory.

  2. Run the lint script:

    bash scripts/sounio-lint.sh <file>
    
  3. If the script is not available, perform manual grep-based detection for these patterns:

    Pattern Rule Fix
    println! or assert! rust-macro Remove !println(), assert()
    &mut rust-borrow Replace with &!
    let mut rust-let-mut Replace with var
    #[ rust-attr Remove attribute, use //@ annotation if testing
    Trailing ; on statements semicolons Remove the semicolon
    |x| lambda syntax rust-closure Extract to named function + fn ref
  4. Report findings with line numbers in file:line: error: rule: description format

  5. If --fix is requested (or user asks to fix), apply corrections using the Edit tool:

    • println!(...)println(...)
    • assert!(...)assert(...)
    • &mut&!
    • let mutvar
    • Remove trailing semicolons
    • Remove #[...] attribute lines
  6. After fixing, run /sounio-check to verify the fixes compile

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. 12d ago First seen · 43 lines · 23 tokens per session scan A c5f1cea78d0a

Subscribe to this mod's changes

sounio-lint is a skill published in the GitHub repository Sounio-lang/sounio (6 stars, last pushed today), licensed Apache-2.0. It adds 23 tokens to every session and 420 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-08-31.

Related

Other skills, from other repositories

vera-language

Write programs in the Vera programming language. Use when asked to write, edit, debug, or review Vera code (.vera files). Vera is a statically typed, purely functional language with algebraic effects, mandatory contracts, and typed slot references (@T.n) instead of variable names.

aallan/vera · 61 tokens

vera-language

Write programs in the Vera programming language. Use when asked to write, edit, debug, or review Vera code (.vera files). Vera is a statically typed, purely functional language with algebraic effects, mandatory contracts, and typed slot references (@T.n) instead of variable names.

aallan/vera · 61 tokens

dotnet-reverse

A guide for analyzing compiled .NET and C# programs, including managed Windows executables and libraries. Reverse engineering means studying compiled software to understand how it works, and decompiling turns it back into readable approximate source code.

zhaoxuya520/reverse-skill · 144 tokens

migrate-oxlint

Guide for migrating a project from ESLint to Oxlint. Use when asked to migrate, convert, or switch a JavaScript/TypeScript project's linter from ESLint to Oxlint.

oxc-project/oxc · 44 tokens

dart-run-static-analysis

Execute dart analyze to identify warnings and errors, and use dart fix --apply to automatically resolve mechanical lint issues. Use during development to ensure code quality and before committing changes.

flutter/agent-plugins · 43 tokens

agents-sdk-dotnet-debugging

Use when troubleshooting an agent built with the Microsoft Agents SDK (Microsoft.Agents.Hosting.AspNetCore and related packages) in C# / .NET. Trigger on any of these symptoms: build or C# compile errors, crashes on startup, 401 or auth errors on incoming requests, the bot not responding to messages, appsettings.json…

microsoft/Agents · 136 tokens