ワンクリックで
start-dev
Iniciar ambiente de desenvolvimento completo (backend + mobile). Usar quando quiser subir os servicos para desenvolvimento.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Iniciar ambiente de desenvolvimento completo (backend + mobile). Usar quando quiser subir os servicos para desenvolvimento.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Check for drift between spec.md, plan.md, tasks.md, and the actual code. Reports the gaps; does not fix them.
Run a category-specific quality pass (security / performance / accessibility / i18n / privacy / observability) against the current plan and code.
Surface [NEEDS CLARIFICATION] markers in spec.md (or plan.md) to the user, one at a time, and edit the file with the answers.
Bootstrap or amend constitution.md (framework, preset, or project). Inspects existing project context first; enforces the amendment process: issue first, one article per PR, reviewer non-author.
Print the pipeline quick-reference — a one-screen summary of every /aia:* command and its hand-offs, prefixed by a state-aware "Próximo passo" line.
Execute an approved plan + tasks list by dispatching one fresh subagent per task and applying two-stage review (spec compliance, then code quality) before moving on.
| name | start-dev |
| description | Iniciar ambiente de desenvolvimento completo (backend + mobile). Usar quando quiser subir os servicos para desenvolvimento. |
| disable-model-invocation | true |
| allowed-tools | Bash, Read |
| argument-hint | [backend|mobile|all] |
Iniciar servicos de desenvolvimento do StiveX.
/start-dev ou /start-dev all — Inicia backend + mobile/start-dev backend — Apenas backend (Daphne + auto-reload)/start-dev mobile — Apenas Expo dev servercd {{BACKEND_DIR}} && source venv/bin/activate
# Verificar se ja esta rodando
lsof -ti:8003 && echo "Backend ja rodando na porta 8003" || watchfiles 'daphne -b 0.0.0.0 -p 8003 {{BACKEND_ASGI_MODULE}}:application' .
cd {{MOBILE_DIR}} && npm start
# Redis (necessario para Celery)
docker run -d --name redis -p 6379:6379 redis:alpine 2>/dev/null || docker start redis
# Celery Worker (push notifications)
cd {{BACKEND_DIR}} && source venv/bin/activate && celery -A {{CELERY_APP}} worker -l info
# Celery Beat (notificacoes agendadas - opcional)
cd {{BACKEND_DIR}} && source venv/bin/activate && celery -A {{CELERY_APP}} beat -l info
http://0.0.0.0:8003http://localhost:8082http://localhost:5174localhost:6379$ARGUMENTS