code-conventions

code-conventions is a skill for Claude Code, Codex from arch3rPro/dsh-skills. It costs 81 tokens per session (1,216 once invoked), scanned A, original, MIT.

A set of coding rules for keeping a software project predictable, especially in typed codebases such as TypeScript projects. The rules cover reversible side effects, explicit decisions, configuration, identifiers, type boundaries, and error handling.

In plain words
What is it for?
Use it while writing, reviewing, or refactoring code that crosses module boundaries, registers shared resources, handles configuration, or processes typed data.
Why use it?
It reduces recurring mistakes caused by hidden behavior, hardcoded settings, unclear branching, and errors that are silently ignored.

Skill for Claude CodeCodex

Part of the dsh-skills plugin — 15 skills 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/arch3rpro/dsh-skills/code-conventions
Any agent
npx skills add arch3rPro/dsh-skills --skill code-conventions
Clone the repo
git clone --depth 1 https://github.com/arch3rPro/dsh-skills

Made for: Claude Code, Codex.

Or install dsh-skills, the plugin that ships this one along with the rest of its 15 skills.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/arch3rpro/dsh-skills/code-conventions.svg)](https://agentmods.dev/skills/arch3rpro/dsh-skills/code-conventions)
Your own site
<a href="https://agentmods.dev/skills/arch3rpro/dsh-skills/code-conventions"><img src="https://agentmods.dev/badge/skills/arch3rpro/dsh-skills/code-conventions.svg" alt="Measured on agentmods" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,216 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.00081 $0.01216
Opus 5 $0.00041 $0.00608
Sonnet 5 $0.00016 $0.00243
Haiku 4.5 $0.00008 $0.00122

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

Security

Grade A, and why

code-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 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.

skills/architecture/code-conventions/SKILL.md · 69 lines

How it starts

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

Code Conventions

A set of conventions distilled from a large, heavily-gated TypeScript codebase. Each one prevents a recurring class of mistake. They are not style preferences; they are rules that keep behavior explicit, reversible, and checked at the right boundary. Apply the ones that fit your codebase's shape; most assume a typed language and module/package boundaries.

The defining constraint: every convention makes one thing unambiguous — where a side effect can be undone, where a decision is made, where a value is validated, and what a swallow actually swallowed.

Reversible side effects

Registrations and contributions are effects, and every effect has a disposer. When a plugin, module, or service contributes something to a shared context — a listener, a schema, a provider, a slot — the registration path returns the function that undoes it. This makes reload and teardown unwind predictably. If a contribution cannot be undone, that is a design gap to name, not something to hide.

Switch on discriminant tags

When a union is closed, exhaustiveness is checked by ending the switch in assertNever. When the union is deliberately open to extension, fall through a documented default rather than a bare default that silently does nothing. The reader should always be able to tell "every case handled and proven" from "unknown case falls through on purpose."

Explicit over implicit at boundaries

Defaulting and choice-making happen at one named step, never hidden inside a downstream call. If a request carries optional fields that must resolve to concrete values, the resolution is an explicit resolve(request) → spec step in the owning implementation — not a ?? default tucked inside run(). A caller reading run() should never have to hunt for the default it applied.

Configuration over hardcoded tunables

Anything that varies by deployment is a validated configuration field, changeable by the operator — not a hardcoded constant or a test-only hook. A DEFAULT_* constant is a code smell for a choice that belongs in config. The inverse also holds: protocol constants, external specifications, and security invariants stay fixed in code; they are not configurable because someone might someday want to change them.

Read the full file on GitHub · 69 lines

Files

What ships with it

1 file 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. 3d ago First seen · 69 lines · 81 tokens per session scan A ef3d6184fe67

Subscribe to this mod's changes

code-conventions is a skill published in the GitHub repository arch3rPro/dsh-skills (4 stars, last pushed 16d ago), licensed MIT. It adds 81 tokens to every session and 1,216 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

codex-dsh-orchestrator

Orchestrate bounded Codex-to-DSH collaboration through the existing dshagentlink MCP bridge, including delegation decisions, compact handoff, semantic Flash/Pro/ModLens routing, task follow-up, supervision, and final Codex review. Use whenever the user invokes $codex-dsh-orchestrator, says “请委派给 DSH”, “交给 DSH”, “让…

Fly2Kiana/Codex-DSH-Orchestrator · 141 tokens

sol-foreman

Orchestrate quality-first work across native Codex subagents, model-pinned Codex CLI workers, and Claude CLI agents. Use when the user explicitly asks Codex to delegate, parallelize, use agents or subagents, act as a foreman, coordinate a multi-ticket or long-running agent program, recover stalled delegated work…

olsenbrands/sol-foreman · 86 tokens

agency-chief-of-staff

内容优先的复杂项目协调与跨对话生命周期。用于多阶段复杂任务、先讨论需求再执行、根据讨论创建任务执行清单、创建新的 Codex 对话或 Task 执行、跨对话进度管理、角色化团队安排、Codex Thread/Worktree 调度、任务归档、长期知识沉淀、Goal/长期项目及验证审核交付闭环。自然触发包括“这件事比较复杂,先跟我把目标和边界聊清楚,之后再做执行计划”“先讨论需求”“先把需求聊清楚”“根据以上讨论创建执行清单”“整理成任务清单”“开一个新对话执行”“单独创建任务执行”“安排团队来做”“安排几个专业角色”“持续更新进度”“归档任务”“沉淀长期资产”“总结到已有文档”。Pre-read: choose only the…

papperrollinggery/zhijuan-codex-agency-chief-of-staf · 374 tokens

claude-code-dsh

Delegate bounded work from Claude Code to the user's existing official DSH Web Host while preserving typed supervision, task cursors, follow-up, and safe cancellation.

Fly2Kiana/Codex-DSH-Orchestrator · 37 tokens

agency-discuss-plan-execute-progress-archive

Discovery bridge for complex staged projects: discuss goals and boundaries before planning, create an execution checklist, launch a separate task/team, track progress, verify, archive, and retain reusable knowledge. Before any notice, read, lookup, or tool call, choose only the value after = for the user's intent as…

papperrollinggery/zhijuan-codex-agency-chief-of-staf · 233 tokens

codex-dsh

Delegate bounded work from Codex to the user's existing official DSH Web Host while preserving typed supervision, task cursors, follow-up, and safe cancellation.

Fly2Kiana/Codex-DSH-Orchestrator · 36 tokens