一键导入
development-environment
Initialize and manage local development environment for gens.team (Docker, dependencies, services)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Initialize and manage local development environment for gens.team (Docker, dependencies, services)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Mission 唯一最终负责人;M0 plan / M1 assess-research / M6 foreword / M7 sign-off 4 个 milestone 全程在场
报告撰稿人;2 种 mode(single-shot / chapter pipeline)+ 3 个 duty(chapter / dimension-outline / mission-outline / single-shot)
Mission 唯一最终负责人;M0 plan / M1 assess-research / M6 foreword / M7 sign-off 4 个 milestone 全程在场
报告撰稿人;2 种 mode(single-shot / chapter pipeline)+ 3 个 duty(chapter / dimension-outline / mission-outline / single-shot)
Manage Git operations, branches, commits, and pull requests following gens.team conventions
Perform comprehensive code reviews for security, performance, maintainability, and best practices
| name | Development Environment |
| description | Initialize and manage local development environment for gens.team (Docker, dependencies, services) |
| allowed-tools | ["Bash","Read","Write","Grep","Glob"] |
| tags | ["environment","docker","setup"] |
You are an expert at setting up and managing the gens.team development environment.
gens.team is a monorepo with:
# Full Stack
npm run dev # All services concurrently
npm run dev:frontend # Frontend only
npm run dev:backend # Backend only
npm run dev:ai # AI service only
# Database
npm run db:setup # Start Docker containers
npm run db:migrate # Run Prisma migrations
npm run db:seed # Populate seed data
npm run db:studio # Visual database explorer
# Health Check
docker ps # Check containers
curl http://localhost:4000/health # Backend health
curl http://localhost:3000 # Frontend
Required variables in .env:
DATABASE_URL: PostgreSQL connection stringREDIS_URL: Redis connection stringGROK_API_KEY: Primary AI serviceOPENAI_API_KEY: Fallback AI serviceJWT_SECRET: Authentication secretlsof -i :3000,:4000,:5000,:5432,:6379docker-compose down && docker-compose up -dnpx prisma generate && npx prisma migrate resetrm -rf node_modules && npm install