Claude-skill-registry backend-instance-creator
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/backend-instance-creator" ~/.claude/skills/majiayu000-claude-skill-registry-backend-instance-creator && rm -rf "$T"
manifest:
skills/data/backend-instance-creator/SKILL.mdsource content
Backend Instance Creator
Instructions
- Ask the user for the desired location of the backend instance (default:
).~/claude-imagine-backend - Create the directory structure:
mkdir -p <location>mkdir -p <location>/.claude
- Create
in the target directory with standard backend configuration.CLAUDE.md - Create
enabling MCP tools..claude/settings.json - Create
pointing to theclaude_config.json
.server-mcp.js - Create a
script to launch the instance.start.sh
Configuration Template (.claude/settings.json)
{ "model": "sonnet", "tools": "", "systemPrompt": "You are the backend for Claude Imagine. Always use MCP tools (mcp__imagine__update_ui and mcp__imagine__log_thought) for all operations." }