Claude-skill-registry init-rules
Initialize Rails coding conventions for a project by detecting dependencies and copying matching rules with examples to .claude/rules/hustler-rails/. Use when setting up Rails conventions for a new project or updating existing rules. Trigger with phrases like "initialize rails rules", "setup rails conventions", "init hustler-rails".
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/init-rules" ~/.claude/skills/majiayu000-claude-skill-registry-init-rules && rm -rf "$T"
manifest:
skills/data/init-rules/SKILL.mdsource content
Step 1: Check for Existing Rules
Check if
.claude/rules/hustler-rails/ has files:
ls .claude/rules/hustler-rails/ 2>/dev/null | wc -l
If count > 0, use AskUserQuestion tool:
{ "questions": [ { "question": "hustler-rails rules already exist. How should I proceed?", "header": "Existing rules", "multiSelect": false, "options": [ { "label": "Backup and recreate", "description": "Renames existing to .backup-[timestamp]" }, { "label": "Merge new files", "description": "Keep existing, add new only" }, { "label": "Cancel", "description": "Exit without changes" } ] } ] }
Handle response:
- Backup and recreate:
mv .claude/rules/hustler-rails .claude/rules/hustler-rails.backup-$(date +%Y%m%d-%H%M%S) - Merge new files: Proceed to Step 2 (script won't overwrite)
- Cancel: Exit
Step 2: Run Init Script
Execute:
ruby {baseDir}/scripts/init-rules.rb {baseDir}
Step 3: Show Results
Present the script's output to the user. If errors occurred, explain them.