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 sefaertunc/Worclaude --skill backend-conventionsgit clone --depth 1 https://github.com/sefaertunc/WorclaudeWrote 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/sefaertunc/worclaude/backend-conventions)<a href="https://agentmods.dev/skills/sefaertunc/worclaude/backend-conventions"><img src="https://agentmods.dev/badge/skills/sefaertunc/worclaude/backend-conventions.svg" alt="Measured on agentmods" 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.00024 | $0.00948 |
| Opus 5 | $0.00012 | $0.00474 |
| Sonnet 5 | $0.00005 | $0.00190 |
| Haiku 4.5 | $0.00002 | $0.00095 |
Grade B, and why
backend-conventions scanned grade B with 1 finding 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- **EACCES on npm install:** catch specifically, suggest `sudo npm install -g worclaude` How it starts
The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLI & Data Conventions
worclaude is a CLI tool, not a backend service. This skill covers the patterns that serve a similar role to backend conventions: data access (filesystem), external service interaction (npm registry), configuration management, and data format handling (JSON).
Filesystem Access Patterns
All file operations use fs-extra (not raw fs):
fs.ensureDir()for creating directories (idempotent)fs.copy()for template-to-project file copyingfs.readJson()/fs.writeJson()for JSON filesfs.pathExists()for existence checks before operations
Cross-platform rules:
- Always
path.join()— never concatenate with/ - Normalize CRLF before hashing (
content.replace(/\r\n/g, '\n')) - Use
os.platform()for OS-specific behavior (notification commands)
File utilities live in src/utils/file.js: copyDirectory(), removeDirectory().
npm Registry Interaction
Single external dependency: https://registry.npmjs.org/worclaude
// Shared utility: src/utils/npm.js — getLatestNpmVersion()
// - 5-second timeout (AbortController)
// - Returns null on any error (offline, timeout, 404)
// - Used by: upgrade command (self-update check), status command (version display)
No auth tokens. No environment variables. Plain HTTPS fetch. Graceful degradation — every caller handles null return.
JSON Handling
Settings builder flow
Read template JSON → JSON.parse() → merge objects → replaceHookCommands() → JSON.stringify()
Critical: replaceHookCommands() operates on the parsed object's string values, not on the full JSON string. The formatter command and notification command are replaced inside individual hook command strings after parsing.
Settings merge (append-only)
mergeSettingsPermissionsAndHooks():
- Permissions: append new rules to existing array, deduplicate by string equality
- Hooks: append new hooks, check for matcher conflicts before adding
- Never removes or replaces existing user rules
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.
- 8d ago First seen · 101 lines · 24 tokens per session scan B 471b0d5d88af
backend-conventions is a skill published in the GitHub repository sefaertunc/Worclaude (4 stars, last pushed 29d ago), licensed MIT. It adds 24 tokens to every session and 948 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
unicli-repair
Evidence-driven repair workflow for a broken Uni-CLI adapter. Trigger on a failed unicli envelope, a quarantined adapter, or an explicit adapter-repair request. Classifies non-source failures, edits only the reported adapter path, and uses the original command as a bounded oracle.
autonomous-run
Prepare, start, inspect, resume, or stop a finite local overnight coding run after a human has accepted a Wayfinder terminal spec; coordinates a declared Claude/Codex maker and independent checker without pushing, merging, or writing to external systems.
authentication-patterns
OAuth 2.0, JWT, SSO, MFA, NextAuth/Clerk/Supabase Auth implementation patterns.
case-interview-practice
Interactive consulting case interview practice with structured frameworks, feedback mechanisms, and progressive difficulty. Use when preparing for management consulting interviews, case competitions, or business problem-solving exercises.
i18n-localization
Internationalization and localization for global applications. Use when adding multi-language support, handling regional formats, or preparing apps for global markets.
content-repurposer
Adapt content across platforms with tone/format shifting — blog to social, long to short, text to visual outline. Use when repurposing content for different channels, audiences, or formats.