一键导入
just
Intelligent just target wrapper with context-aware suggestions for CineMatch
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Intelligent just target wrapper with context-aware suggestions for CineMatch
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Onboard a new contributor to the CineMatch project - setup environment, verify tools, and explain the project
Backlog workflow management - new, start, done commands for incremental delivery. Supports both admin (main branch) and contributor (feature branch) workflows.
Accept a new contributor with write access and close their request issue
TDD cycle helper - run test, check result, update increment file
Force just check before commit, block if failures
Generate conventional commit messages with emoji, ensure no Co-Authored-By
| name | just |
| description | Intelligent just target wrapper with context-aware suggestions for CineMatch |
Smart wrapper for just targets with context detection for CineMatch.
/just [target]Without target: detects context and suggests appropriate target. With target: runs just , verifies target exists first.
| Context | Suggested Target |
|---|---|
| Modified tests/ | just test tests/<modified> -v |
| Modified justfile | just check |
| No changes staged | just check (full verification) |
| On feature branch, pre-commit | just check |
| After git add | just check before commit |
| Need to start dev | just dev-local |
| Check if services running | just dev-local-status |
/justAnalyze context and suggest:
Detected: Modified backend tests
Suggested: just test tests/test_rooms.py -v
Run? [Y/n/custom target]
/just <target>Verify target exists in justfile, then run:
/just dev-local
→ Running: just dev-local...
/just listShow all available targets with descriptions.
/just statusCheck if dev services are running.
just check - Full check suite (backend + frontend)just test - Run backend tests onlyjust dev-local - Start dev environment (PostgreSQL + backend + frontend)just dev-local-status - Check if services are runningjust dev-local-logs - View combined logsjust dev-local-stop - Stop all servicesjust check - lint + fmt + typecheck + test + auditjust test - Run testsjust lint - ruff checkjust fmt - ruff formatjust typecheck - ty checkjust dev-local - Start backend onlyjust sync - Sync dependenciesjust check - lint + typecheckjust lint - eslintjust typecheck - tscjust dev - Start dev serverjust build - Build for production