用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/theyoungastronauts/polaris --skill verify-django命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Pull just the do-this-yourself steps out of a long answer, so the user doesn't have to read the whole thing.
Hand in-flight work to a fresh session instead of compacting, or pick up from a relay doc.
Close out a session — record what was learned, update any connected stores, and report what's left dirty.
基于 SOC 职业分类
正在显示 SKILL.md
| name | verify-django |
| description | Django/DRF verification checklist — models, serializers, views, security, API contract. |
| disable-model-invocation | true |
Systematic verification checklist for Django/DRF code. Used by the reviewer agent in a separate Claude session after code execution.
Run through each section. Flag issues as PASS, WARN, or FAIL.
pytest passes with no failures__str__ methods are defined__all__)permission_classes set on every viewselect_related/prefetch_related appropriatelySECRET_KEY is set from the environment and not the shipped default (django-insecure-change-me-in-production) in productionDockerfile.dev existsdocker-compose.yml has the services for the project's blueprint tier — minimal: web + db; standard: + redis; full: + celery + celery-beat (check which tier the project was bootstrapped with)Makefile exists and wraps all commands via docker compose execpython manage.py commands used directly on hostProduce a verification-report.md:
# Verification Report: [Feature/Phase]
Date: [date]
Reviewer: Claude (automated)
## Summary: [PASS/WARN/FAIL]
## Details
### Tests: [PASS/WARN/FAIL]
- [notes]
### Models: [PASS/WARN/FAIL]
- [notes]
...
## Issues Found
1. [FAIL] Description + suggested fix
2. [WARN] Description + recommendation
## Recommended Actions
- [ ] Fix: ...
- [ ] Consider: ...