# Backend Instance Creator

> Creates a permanent backend instance for Claude Imagine. Use this skill when the user wants to set up a new persistent backend server.

- Skill: `majiayu000/backend-instance-creator` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/backend-instance-creator`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/backend-instance-creator/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/backend-instance-creator

---

# Backend Instance Creator

## Instructions
1. Ask the user for the desired location of the backend instance (default: `~/claude-imagine-backend`).
2. Create the directory structure:
   - `mkdir -p <location>`
   - `mkdir -p <location>/.claude`
3. Create `CLAUDE.md` in the target directory with standard backend configuration.
4. Create `.claude/settings.json` enabling MCP tools.
5. Create `claude_config.json` pointing to the `server-mcp.js`.
6. Create a `start.sh` script to launch the instance.

## Configuration Template (.claude/settings.json)
```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."
}
```


