en un clic
code-reviewer
Code review and refactoring guidelines
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Code review and refactoring guidelines
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Generate a structured pre-consultation patient briefing. Use when the physician asks for a briefing, a pre-consultation summary, or sends /briefing.
Search the live web or read a specific web page for recency-sensitive clinical information — drug recalls, newly published guidance, FDA/EMA safety communications — that the local clinical guidelines corpus does not cover. Use when the physician asks to "search the web", "look up the latest", or asks about something the guidelines search returned no results for.
Claude Agent SDK patterns and best practices
FastAPI backend patterns for AI Doctor Assistant
React frontend development patterns for AI Doctor Assistant
Architecture guidance for AI Doctor Assistant
| name | code-reviewer |
| description | Code review and refactoring guidelines |
Any types without justificationsource: "rule" | "ai" tag# Bad: Hardcoded secret
api_key = "sk-xxx..."
# Bad: Patient data in logs
print(f"Processing patient: {patient.name}")
# Bad: Missing await
def get_patient(id): # Should be async
return db.query(...)
# Bad: Pydantic v1 pattern
obj = Model.parse_obj(data) # Use model_validate()
# Bad: Direct anthropic import
from anthropic import Anthropic # Use claude_agent_sdk
uv run ruff check .