Claude-skill-registry ln-751-command-templates
Generates individual .claude/commands files from templates
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/levn-ln-751-command-templates" ~/.claude/skills/majiayu000-claude-skill-registry-ln-751-command-templates && rm -rf "$T"
manifest:
skills/data/levn-ln-751-command-templates/SKILL.mdsource content
ln-751-command-templates
Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-750-commands-generator
Generates Claude Code commands from templates with variable substitution.
Overview
| Aspect | Details |
|---|---|
| Input | Template name, variable values from ln-750 |
| Output | file |
| Templates | Located in directory |
Available Templates
| Template | Output File | Required |
|---|---|---|
| refresh_context.md | Always |
| refresh_infrastructure.md | Always |
| build-and-test.md | Always |
| ui-testing.md | If Playwright |
| deploy.md | If CI/CD |
| database-ops.md | If Database |
Workflow
- Receive template name and variables from ln-750
- Load template from
references/{template}.md - Substitute all
placeholders{{VARIABLE}} - Write to
directory.claude/commands/ - Report success/failure to coordinator
Variable Syntax
All templates use Handlebars-style syntax:
{{VARIABLE_NAME}}
Common variables:
— Project name{{PROJECT_NAME}}
— Frontend source path{{FRONTEND_ROOT}}
— Backend source path{{BACKEND_ROOT}}
— Frontend dev server port{{FRONTEND_PORT}}
— Backend API port{{BACKEND_PORT}}
— Technology stack summary{{TECH_STACK}}
See individual templates in
references/ for full variable lists.
Version: 2.0.0 Last Updated: 2026-01-10