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.
npx skills add ncaq/konoka --skill naming-conventiongit clone --depth 1 https://github.com/ncaq/konokaWrote 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.
[](https://agentmods.dev/skills/ncaq/konoka/naming-convention)<a href="https://agentmods.dev/skills/ncaq/konoka/naming-convention"><img src="https://agentmods.dev/badge/skills/ncaq/konoka/naming-convention/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.
<a href="https://agentmods.dev/skills/ncaq/konoka/naming-convention"><img src="https://agentmods.dev/badge/skills/ncaq/konoka/naming-convention.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00039 | $0.01010 |
| Opus 5 | $0.00019 | $0.00505 |
| Sonnet 5 | $0.00008 | $0.00202 |
| Haiku 4.5 | $0.00004 | $0.00101 |
Grade A, and why
naming-convention 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Nix命名規則
nixpkgsの公式コーディング規約に基づきます。
ファイル名・ディレクトリ名
kebab-caseを使用します。
例: all-packages.nix, claude-code.nix
変数名・属性名
| 種類 | スタイル | 例 |
|---|---|---|
| 単純な変数・関数・設定値 | lowerCamelCase | hostName, removePrefix |
| パッケージ・derivation | kebab-case | github-mcp-server, claude-code |
| Flake input等の外部ソース参照 | 参照先の名前に従う | nixpkgs-unstable, treefmt-nix |
| システム識別子 | Nixの規定形式 | x86_64-linux, aarch64-linux |
単純な識別子はlowerCamelCaseを使用します。
パッケージやプログラムを示す変数は、 pnameと同様にkebab-caseを使用します。 2012年以降、 Nix言語では識別子にハイフンを使用できます。
Flake inputなど外部ソースを参照する変数は、 参照先のリポジトリ名やチャンネル名をそのまま使用します。 多くの場合はkebab-caseですが、 参照先の命名に従うのが原則です。
.emacs.d -> dot-emacsのような例外もあります。
システム識別子は<arch>-<os>の形式で、
x86_64-linux, aarch64-linux, aarch64-darwinなどNixが規定する文字列をそのまま使用します。
Flake outputのpackagesやdevShellsの属性名として頻出します。
NixOSオプション
原則camelCaseを使用します。
例:
environment.systemPackagessecurity.tpm2.tctiEnvironment.enable
例外:
- パッケージ名を参照する場合はkebab-case:
services.nix-serve nix.settingsなど外部設定ファイルをマッピングするオプションは、その設定ファイルの命名規則に従う(nix.confはkebab-case)
booleanオプションのenableプレフィックス
booleanオプションにはenableプレフィックスを使用します。
enabled, isEnabled, useXxxなどは使用しません。
例:
services.nginx.enableprograms.git.enable
ヘルパー関数
データを生成するヘルパー関数はmkプレフィックスを使用します。
例:
mkDefaultmkEnableOptionmkForcemkIfmkMergemkOptionmkOverride
データ生成系ではない場合mkプレフィックスのないこともあります。
lib.types, lib.attrsets, lib.stringsなどのモジュールに属する関数はlowerCamelCaseです。
例:
concatStringsSepfilterAttrsmapAttrsoptionalString
overlay引数
overlayの引数名はfinal/prevが現在の推奨です。
final: prev: {
myPackage = prev.myPackage.overrideAttrs (oldAttrs: { });
}
旧来のself/superは非推奨です。
selfはFlakeのselfと紛らわしいため避けてください。
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.
- 9d ago First seen · 112 lines · 39 tokens per session scan A 2f0b5f32e67e
naming-convention is a skill published in the GitHub repository ncaq/konoka (3 stars, last pushed 2d ago), licensed Apache-2.0. It adds 39 tokens to every session and 1,010 once invoked, about $0.0002 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.
Other skills, from other repositories
cloudflare-email-routing
Cloudflare Email Routing for receiving/sending emails via Workers. Use for email workers, forwarding, allowlists, or encountering Email Trigger errors, worker call failures, SPF issues.
bun-http-server
Use when building HTTP servers with Bun.serve, handling requests/responses, implementing routing, creating REST APIs, or configuring fetch handlers.
bun-sqlite
Use for bun:sqlite, SQLite operations, prepared statements, transactions, and queries.
api-testing
HTTP API testing for TypeScript (Supertest) and Python (httpx, pytest). Test REST APIs, GraphQL, request/response validation, authentication, and error handling.
bun-jest-migration
Use when migrating from Jest to Bun's test runner, import compatibility, mocks, and config.
cloudflare-workers-migration
Migrate to Cloudflare Workers from AWS Lambda, Vercel, Express, and Node.js. Use when porting existing applications to the edge, adapting serverless functions, or resolving Node.js API compatibility issues.