stelow-workflow-coding-standards

stelow-workflow-coding-standards is a skill for Claude Code, Codex from calionauta/stelow. It costs 61 tokens per session (1,554 once invoked), scanned A, original, MIT.

A set of coding rules that favours simple, conventional, self-contained code and limits excessive length, nesting, complexity, and repetition. It is guidance for how code should be structured and maintained.

In plain words
What is it for?
Use it when writing or reviewing code to keep functions and files manageable, follow existing conventions, and introduce abstractions only when repetition justifies them.
Why use it?
It reduces the amount of clever or duplicated code that developers and coding agents must understand and maintain.

Skill for Claude CodeCodex

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

Good fit Use it when writing or reviewing code to keep functions and files manageable, follow existing conventions, and introduce abstractions only when repetition justifies them.

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

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 stelow-workflow-coding-standards

README.md
[![agentmods](https://agentmods.dev/badge/skills/calionauta/stelow/stelow-workflow-coding-standards.svg)](https://agentmods.dev/skills/calionauta/stelow/stelow-workflow-coding-standards)
Your own site
<a href="https://agentmods.dev/skills/calionauta/stelow/stelow-workflow-coding-standards"><img src="https://agentmods.dev/badge/skills/calionauta/stelow/stelow-workflow-coding-standards.svg" alt="Measured on agentmods" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,554 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. 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.00061 $0.01554
Opus 5 $0.00030 $0.00777
Sonnet 5 $0.00012 $0.00311
Haiku 4.5 $0.00006 $0.00155

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

Security

Grade A, and why

stelow-workflow-coding-standards 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 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.

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/stelow-workflow-coding-standards/SKILL.md · 202 lines

How it starts

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

Product Coding Standards

Self-contained. This skill includes universal coding principles — no external prerequisite skills needed.


Core Principles

1. KISS — Keep It Simple, Stupid

Prefer the boring solution. Clever code is a liability for both humans and LLMs.

  • No function >50 lines (Go: 100 lines)
  • No file >400 lines (Go: 500 lines)
  • Cyclomatic complexity per function <10
  • Max 3 indentation levels (use early returns / guard clauses)

2. DRY — Don't Repeat Yourself

Wait for the third repetition before abstracting. Premature DRY creates the wrong abstraction.

  • Logic duplication → extract shared function
  • Configuration duplication → centralize in constant/config
  • Template duplication → create partial/component
  • Duplication >5% of file is a warning sign

3. Convention over Configuration

Follow established conventions of the language/framework before introducing custom config.

  • Sensible defaults, standardized names, predictable directory structure
  • Explicit configuration only when deviating from convention
  • Predictable patterns are a force multiplier for LLMs and developers

4. Progressive Disclosure

Simple by default, complexity behind toggles.

  • Essentials first, advanced later
  • Skills should structure content in 3 tiers: metadata → instructions → references
  • Avoid overwhelming with options upfront

5. Polymorphism When Useful

Interfaces for extensibility only when it adds real value.

  • Prefer concrete types over premature abstractions
  • Don't create interfaces for a single implementation
  • Add interfaces when you have 2+ concrete implementations

6. Locality of Behavior (LoB)

Behavior lives close to where it's used — in the template/view that owns it.

  • Use the framework's native declarative attributes before custom JavaScript
  • Inline JS only when framework doesn't offer native behavior
  • Frontend is a dumb reactive terminal — minimum possible logic on the client

7. Separation of Concerns (SoC)

For backend code and multi-layer frameworks.

Read the full file on GitHub · 202 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 202 lines · 61 tokens per session scan A ee8732530826

Subscribe to this mod's changes

stelow-workflow-coding-standards is a skill published in the GitHub repository calionauta/stelow (10 stars, last pushed today), licensed MIT. It adds 61 tokens to every session and 1,554 once invoked, about $0.0003 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.