Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/pgnzbl-ux/crucible --skill deploy명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | deploy |
| description | 启动基础设施 + 后端 API + Celery worker + 前端 dev server 一条龙 |
按仓库根目录 README.md「快速开始」。宿主 Linux(含 WSL)。虚拟环境在仓库根 .venv/,不要用系统 python。
docker ps 能通)。cd infrastructure && docker compose up -d
docker compose ps # 等 healthy
infrastructure/agent-runner/ / node-skills 之后)
# 必须在仓库根构建
docker build -f infrastructure/agent-runner/Dockerfile -t crucible-agent-runner:base .
python3.12 -m venv .venv && source .venv/bin/activate
cd backend
cp .env.example .env
pip install -e ".[dev]"
pip install -r requirements.txt
source .venv/bin/activate)
# API
cd backend && python -m uvicorn app.main:app --host 0.0.0.0 --port 8010 --reload
# Worker(缺 gitleaks / osv-scanner / 本地 semgrep 规则树时写入当前 .venv)
cd backend && python run_worker.py
# 前端
cd frontend && npm install && npm run dev
数据卷、.env、.venv、Agent 镜像都还在。不要重装依赖、不要重建镜像。
# Docker 起来之后
cd infrastructure && docker compose up -d
source .venv/bin/activate
# 终端 1
cd backend && python -m uvicorn app.main:app --host 0.0.0.0 --port 8010 --reload
# 终端 2
cd backend && python run_worker.py
# 终端 3
cd frontend && npm run dev
curl http://localhost:8010/health
# 控制台 http://localhost:5173
只开 API、不开 Worker 时,任务会停在队列里。
.env / vite.config