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.md
source 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

AspectDetails
InputTemplate name, variable values from ln-750
Output
.claude/commands/{command}.md
file
TemplatesLocated in
references/
directory

Available Templates

TemplateOutput FileRequired
refresh_context_template.md
refresh_context.mdAlways
refresh_infrastructure_template.md
refresh_infrastructure.mdAlways
build_and_test_template.md
build-and-test.mdAlways
ui_testing_template.md
ui-testing.mdIf Playwright
deploy_template.md
deploy.mdIf CI/CD
database_ops_template.md
database-ops.mdIf Database

Workflow

  1. Receive template name and variables from ln-750
  2. Load template from
    references/{template}.md
  3. Substitute all
    {{VARIABLE}}
    placeholders
  4. Write to
    .claude/commands/
    directory
  5. Report success/failure to coordinator

Variable Syntax

All templates use Handlebars-style syntax:

{{VARIABLE_NAME}}

Common variables:

  • {{PROJECT_NAME}}
    — Project name
  • {{FRONTEND_ROOT}}
    — Frontend source path
  • {{BACKEND_ROOT}}
    — Backend source path
  • {{FRONTEND_PORT}}
    — Frontend dev server port
  • {{BACKEND_PORT}}
    — Backend API port
  • {{TECH_STACK}}
    — Technology stack summary

See individual templates in

references/
for full variable lists.


Version: 2.0.0 Last Updated: 2026-01-10