local-up
- Repo stars 0
- Author updated Live
- Author repo skills-registry
- Domain
- DevOps
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @tomevault-io · no license declared
- Token usage
- Lean
- Setup complexity
- Guided setup
- External API key
- Not required
- Operating systems
- Docker
- Runtime requirements
- Docker
- Permissions
-
- Read-only
- Write / modify
- Env read
- Network behavior
- Local-only
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: local-up
description: Start the local Docker Compose stack (backend + frontend) for development. Use when the user wan…
category: devops
runtime: Docker
---
# local-up output preview
## PART A: Task fit
- Use case: Start the local Docker Compose stack (backend + frontend) for development. Use when the user wants to spin the app up locally, test a feature in a browser, or bring the stack back after changes. Use when this capability is needed..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “Steps / Troubleshooting / Shutting down” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Start the local Docker Compose stack (backend + frontend) for development. Use when the user wants to spin the app up locally, test a feature in a browser, or bring the stack back after changes. Use when this capability is needed.”.
- **02** When the source has headings, the agent prioritizes “Steps / Troubleshooting / Shutting down” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files, read environment variables; mostly runs locally; usually needs no extra API key.
## Running Rules
- read files, write/modify files, read environment variables; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source mentions slash commands such as `/data`; use them first when your agent supports command triggers.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files, read environment variables.
Start with a small task and check whether the result follows “Steps / Troubleshooting / Shutting down”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: local-up
description: Start the local Docker Compose stack (backend + frontend) for development. Use when the user wan…
category: devops
source: tomevault-io/skills-registry
---
# local-up
## When to use
- Start the local Docker Compose stack (backend + frontend) for development. Use when the user wants to spin the app up…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “Steps / Troubleshooting / Shutting down” and keep inference separate from source facts.
- read files, write/modify files, read environment variables; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "local-up" {
input -> user goal + target files + boundaries + acceptance criteria
context -> Steps / Troubleshooting / Shutting down
rules -> SKILL.md triggers / order / output contract
runtime -> Docker | read files, write/modify files, read environment variables | mostly runs locally
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} Start the local dev stack
The local stack is defined in docker/docker-compose.local.yml. It already sets AUTH_MODE=none and ALLOW_INSECURE_LOCAL=true on the backend, so no extra env vars are needed.
Steps
Check whether containers are already running:
docker compose -f docker/docker-compose.local.yml psIf nothing is up, start the stack in the background:
docker compose -f docker/docker-compose.local.yml up -d --buildUse
--buildso code changes since the last run are picked up. Omit it if the user explicitly wants a fast restart without rebuilding.After
upreturns, confirm both services are healthy:docker compose -f docker/docker-compose.local.yml psPrint the URLs:
- Frontend: http://localhost:3000
- Backend API: http://localhost:8000
- Backend docs (FastAPI Swagger): http://localhost:8000/docs
If the user wants live logs, tail them:
docker compose -f docker/docker-compose.local.yml logs -f
Troubleshooting
- Port 3000 or 8000 already in use: identify the holder with
lsof -i :3000/lsof -i :8000and ask the user before killing anything. - Backend can't write to
/data/db: the named volumedolls_dbis docker-managed — no host path needed. Don't propose bind-mounts unless the user asks. - Frontend hot reload not working:
Dockerfile.devrunsvitewithhost: 0.0.0.0; confirm the container has the source mounted if someone customized the compose file. - Auth errors despite
AUTH_MODE=none:ALLOW_INSECURE_LOCAL=truemust also be set — the backend refusesnonewithout it. Both are already indocker-compose.local.yml; if missing, the file was edited.
Shutting down
docker compose -f docker/docker-compose.local.yml down
Add -v only if the user explicitly wants to wipe the SQLite DB and uploaded photos.
Source: bronweg/doll-inventory — distributed by TomeVault.
Decide Fit First
Design Intent
How To Use It
Boundaries And Review