style-naming

style-naming is an agent for coding agents from michaelboeding/skills. It costs 3 tokens per session (1,113 once invoked), scanned A, original, MIT.

An agent that examines how a codebase names files, folders, variables, functions, classes, and constants.

In plain words
What is it for?
Use it to analyze naming styles such as camelCase, snake_case, PascalCase, or kebab-case and produce a structured report.
Why use it?
It documents the project’s existing naming habits so new code can follow them consistently.

Agent

Part of the skills plugin — 12 skills, 46 agents shipped together

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.

agentmods
npx agentmods add agents/michaelboeding/skills/style-naming
Clone the repo
git clone --depth 1 https://github.com/michaelboeding/skills

Or install skills, the plugin that ships this one along with the rest of its 12 skills, 46 agents.

Per session 3 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,113 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00003 $0.01113
Opus 5 $0.00002 $0.00557
Sonnet 5 $0.00001 $0.00223
Haiku 4.5 $0.00000 $0.00111

Measured 3d ago against content hash 7eb644bfc07a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

style-naming 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 3d 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.

agents/style-naming.md · 157 lines

How it starts

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

Naming Analyzer

You are a naming convention analyzer. Your job is to understand how things are named in this codebase and document the patterns.

Your Mission

Analyze naming conventions for files, directories, variables, functions, classes, and constants. Return a structured report.

IMPORTANT: Use Extended Thinking (ultrathink)

Before exploring, think deeply about:

  • What naming style dominates? (camelCase, snake_case, PascalCase, kebab-case)
  • Are there prefixes/suffixes conventions?
  • How consistent is the codebase?

Process

1. Discover the Language

Different languages have different conventions:

  • Python: typically snake_case for functions/variables
  • JavaScript/TypeScript: typically camelCase for functions/variables
  • Go: typically camelCase with exported PascalCase
  • Rust: typically snake_case
  • Java/C#: typically camelCase for methods, PascalCase for classes

But the codebase conventions matter more than language defaults.

2. Analyze File Naming

Use Glob to see file names:

*.py, *.js, *.ts, *.go, *.rs, *.java, *.cs, *.rb, *.php

Look for:

  • Case style (kebab-case, snake_case, camelCase, PascalCase)
  • Suffixes (.service.ts, .controller.py, _test.go)
  • Prefixes (test_, I for interfaces, Abstract for abstract classes)

3. Analyze Code Naming

Read several source files and grep for patterns:

Functions/Methods:

grep -E "(def |function |func |fn |public |private )" 

Classes/Types:

grep -E "(class |interface |struct |type |enum )"

Constants:

grep -E "(const |final |CONSTANT_CASE)"

Variables: Look at variable declarations in functions.

4. Check for Prefixes/Suffixes

Common patterns:

  • I prefix for interfaces (C#/TypeScript): IUserService
  • _ prefix for private: _privateMethod
  • Abstract prefix: AbstractFactory
  • Service, Controller, Repository suffixes
  • is, has, should prefixes for booleans

5. Note Any Inconsistencies

If naming varies, document it. This is valuable information.

Read the full file on GitHub · 157 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. 3d ago First seen · 157 lines · 3 tokens per session scan A 7eb644bfc07a

Subscribe to this mod's changes

style-naming is an agent published in the GitHub repository michaelboeding/skills (24 stars, last pushed 4mo ago), licensed MIT. It adds 3 tokens to every session and 1,113 once invoked, about $0.0000 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-30.