← スキル一覧に戻る

start-pixel-detective
by rm2thaddeus
A repository for the Pixel Detective project.
⭐ 14🍴 3📅 2026年1月15日
SKILL.md
name: start-pixel-detective description: Start, stop, or check Pixel Detective services on this machine. Use when the user asks to start Pixel Detective, start backend only, start full stack, restart, stop, or check Docker, Qdrant, ML, UMAP, or frontend status, or to provide a specific Pixel Detective page URL.
Start Pixel Detective
Use this skill to run Pixel Detective locally with the right subset of services.
Quickstart
- Full stack:
powershell -ExecutionPolicy Bypass -File skills\\start-pixel-detective\\scripts\\start_pixel_detective.ps1 -Mode full - Backend only (+ optional GPU UMAP):
powershell -ExecutionPolicy Bypass -File skills\\start-pixel-detective\\scripts\\start_pixel_detective.ps1 -Mode backend -UseGpuUmap
Workflow
- Confirm repo root
- Require
frontend/package.jsonandstart_pixel_detective.ps1. - If missing, stop and ask for the correct working directory.
- Decide the requested mode
- full: all services plus frontend
- backend: Qdrant + ML + ingestion (optional UMAP)
- services: just Docker services (Qdrant and optional GPU UMAP)
- frontend: only Next.js dev server
- status: report what is running
- stop: stop Docker services and list any remaining processes
- Docker preflight
- Check Docker CLI and Docker Compose:
docker versiondocker compose version
- If Docker is installed but not running, say so and stop.
- Start sequence
- full: run
.\start_pixel_detective.ps1 - backend:
docker compose up -d qdrant_db- optional GPU UMAP:
docker compose -f backend/gpu_umap_service/docker-compose.dev.yml up -d --build - start ML service:
uvicorn backend.ml_inference_fastapi_app.main:app --port 8001 --reload - start ingestion:
uvicorn backend.ingestion_orchestration_fastapi_app.main:app --port 8002 --reload
- services:
docker compose up -d qdrant_db- optional GPU UMAP (same command as above)
- frontend:
cd frontendthennpm run dev
When launching uvicorn or npm, use new terminal windows so the main session stays responsive.
- Status checks
docker compose ps- The script prints a port readiness summary (6333/8001/8002/8003/3000).
- Report URLs:
- Stop sequence
docker compose down- The script attempts to close uvicorn and npm windows tied to this repo.
Notes
- The GPU UMAP service can fail without blocking the rest. Treat it as optional.
- Use existing startup scripts whenever possible to stay aligned with repo behavior.
- Qdrant is the only required Docker service for Pixel Detective; ML and ingestion run on the host.
- If port 3000 is already in use, Next.js will choose 3001 or another port; report the actual port from the terminal output.
- If the ML or ingestion uvicorn process exits immediately, check for missing Python dependencies or a virtualenv not being activated.
Script
- Run:
powershell -ExecutionPolicy Bypass -File skills\\start-pixel-detective\\scripts\\start_pixel_detective.ps1 -Mode full - Backend only:
-Mode backend -UseGpuUmap - Frontend + open page:
-Mode frontend -Open -Page /search - Note:
-Openis required to open a browser;-Pagealone will not open anything.
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です