dev-conventions

dev-conventions is a skill for Claude Code from RashadAnsari/myagents. It costs 76 tokens per session (1,646 once invoked), scanned A, original, MIT.

General rules for writing, reviewing and refactoring software. They emphasise understanding the task first, keeping changes small, reusing existing code and checking the result.

In plain words
What is it for?
Use them during coding, code review or refactoring to guide decisions about scope, design, localization, UI consistency and validation.
Why use it?
They reduce unnecessary complexity, duplicated code, inconsistent interfaces and changes that are difficult to verify.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the albino plugin — 8 skills, 9 commands, 13 agents, 3 MCP servers 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 skills/rashadansari/myagents/dev-conventions
Any agent
npx skills add RashadAnsari/myagents --skill dev-conventions
Clone the repo
git clone --depth 1 https://github.com/RashadAnsari/myagents

Made for: Claude Code.

Or install albino, the plugin that ships this one along with the rest of its 8 skills, 9 commands, 13 agents, 3 MCP servers.

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 dev-conventions

README.md
[![agentmods](https://agentmods.dev/badge/skills/rashadansari/myagents/dev-conventions.svg)](https://agentmods.dev/skills/rashadansari/myagents/dev-conventions)
Your own site
<a href="https://agentmods.dev/skills/rashadansari/myagents/dev-conventions"><img src="https://agentmods.dev/badge/skills/rashadansari/myagents/dev-conventions.svg" alt="Measured on agentmods" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,646 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.1 $0.00076 $0.01646
Opus 5 $0.00038 $0.00823
Sonnet 5 $0.00015 $0.00329
Haiku 4.5 $0.00008 $0.00165

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

Security

Grade A, and why

dev-conventions 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 6d 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.

plugins/albino/skills/dev-conventions/SKILL.md · 159 lines

How it starts

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

Development Conventions

General rules that apply across all projects. Read and follow before making any code change.

Tradeoff: These rules bias toward caution over speed. For trivial tasks, use judgment.

Think Before Coding

Don't assume. Don't hide confusion. Surface tradeoffs.

Before implementing:

  • State your assumptions explicitly. If uncertain, ask.
  • If multiple interpretations exist, present them - don't pick silently.
  • If a simpler approach exists, say so. Push back when warranted.
  • If something is unclear, stop. Name what's confusing. Ask.

Simplicity First

Minimum code that solves the problem. Nothing speculative.

  • No features beyond what was asked.
  • No abstractions for single-use code.
  • No "flexibility" or "configurability" that wasn't requested.
  • No error handling for impossible scenarios.
  • If you write 200 lines and it could be 50, rewrite it.

Ask yourself: "Would a senior engineer say this is overcomplicated?" If yes, simplify.

Reuse Before Creating

  • Before adding a component, helper, constant, service, or utility: search the codebase first
  • If an equivalent already exists, import and reuse it
  • Extend existing components with props or small local composition before creating variants
  • Only add a helper, service, or shared constant when logic is reused across files or clearly belongs to an existing shared module
  • If logic is local to one screen or form, keep it as a private local helper: do not extract prematurely

No Duplication

  • Shared business logic belongs in the project's shared service or domain layer
  • Shared UI belongs in the project's shared widget or component layer
  • Shared constants belong in the relevant domain file: not scattered per file
  • Do not create a variant of something that already exists: parameterize or extend instead

When you spot duplication, apply the matching pattern:

Signal Pattern
Same logic in 2+ places Extract function / Extract module
Same logic with minor variation Parameterize: add argument instead of copying
Same group of values always together Introduce value object or struct
Same multi-step process repeated Extract class or service
Same conditional type-switching Replace with polymorphism or strategy
Same object built ad-hoc everywhere Factory or builder function
Same config value hardcoded in N places Named constant or config key
Same validation rule written per handler Extract to single validator
Same error mapping repeated per handler Extract to shared mapper
Same test setup repeated per file Extract to shared factory or fixture

Read the full file on GitHub · 159 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. 6d ago First seen · 159 lines · 76 tokens per session scan A e50668ff47a3

Subscribe to this mod's changes

dev-conventions is a skill published in the GitHub repository RashadAnsari/myagents (6 stars, last pushed 29d ago), licensed MIT. It adds 76 tokens to every session and 1,646 once invoked, about $0.0004 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

parallel-feature-development

Coordinate parallel feature development with file ownership strategies, conflict avoidance rules, and integration patterns for multi-agent implementation. Use this skill when decomposing a large feature into independent work streams, when two or more agents need to implement different layers of the same system…

wshobson/agents · 105 tokens

nft-standards

Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementing digital asset systems.

wshobson/agents · 48 tokens

cost-optimization

Optimize cloud costs across AWS, Azure, GCP, and OCI through resource rightsizing, tagging strategies, reserved instances, and spending analysis. Use when reducing cloud expenses, analyzing infrastructure costs, or implementing cost governance policies.

wshobson/agents · 48 tokens

istio-traffic-management

Configure Istio traffic management including routing, load balancing, circuit breakers, and canary deployments. Use when implementing service mesh traffic policies, progressive delivery, or resilience patterns.

wshobson/agents · 40 tokens

postgresql-table-design

Use this skill when designing or reviewing a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features.

wshobson/agents · 37 tokens

event-store-design

Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.

wshobson/agents · 33 tokens