Backend conventions
Skill sefaertunc/Worclaude/.claude/skills/backend-conventions
CLI scaffolding tool that generates tailored .claude/ workflow infrastructure for Claude Code projects
npx -y skills add sefaertunc/Worclaude --skill backend-conventionsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
CLI-specific conventions: npm registry interaction, filesystem operations, JSON handling, settings merge, and configuration patterns for worclaude
SKILL.md
4.1 KB, as published. Nobody here has run it
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
parseUserJson() two-pass strategy
Pass 1: JSON.parse(raw) — handles well-formed JSON
Pass 2: JSON.parse(raw.replace(/\\{/g, '{').replace(/\\}/g, '}')) — handles zsh artifacts
Fail: throw Error('Could not parse JSON: clear message')
Template variable substitution
Template files use {variable_name} placeholders (single braces). These are replaced in the parsed object, not in raw JSON strings. Variables: {project_name}, {description}, {tech_stack}, {formatter_command}, {notification_command}.
Configuration Management
workflow-meta.json
The project's state tracker. Created during init, updated during upgrade.
{
"version": "1.3.4",
"installedAt": "ISO timestamp",
"lastUpdated": "ISO timestamp",
"projectTypes": ["cli"],
"techStack": ["node"],
"useDocker": false,
"universalAgents": ["plan-reviewer", ...],
"optionalAgents": ["bug-fixer", ...],
"fileHashes": { "agents/plan-reviewer.md": "sha256", ... }
}
Hash computation: SHA-256 of CRLF-normalized file content. Used by upgrade and diff commands to detect which files the user has customized vs which are unchanged from install.
useDocker field: Added for settings rebuild during upgrade — determines whether docker.json permissions are included.
Scenario detection (detector.js)
No .claude/ AND no CLAUDE.md → Scenario A (fresh)
.claude/ OR CLAUDE.md exists, but no .claude/workflow-meta.json → Scenario B (existing)
.claude/workflow-meta.json exists → Scenario C (upgrade)
Error Handling
CLI-specific error patterns:
- Malformed user JSON:
parseUserJson()throws with clear message naming the file - npm registry errors: return
null, caller shows "(offline)" or skips version check - EACCES on npm install: catch specifically, suggest
sudo npm install -g worclaude - Corrupted settings.json: detected during Scenario B merge, shown as clear error, doesn't crash
All errors surface through display.error() (Chalk-styled red output), never raw console.error.