Files
AIGlobalConfig/skills/code-review/SKILL.md
T
TrochtaOndrej df0baeff36 feat: initial commit — global Claude Code config
Tracked: CLAUDE.md, agents, skills, settings, memory.
Ephemeral data (sessions, history, telemetry, tasks) excluded via .gitignore.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-18 14:32:21 +01:00

940 B

name, description
name description
code-review Performs thorough code review checking quality, security, patterns, and best practices for trading bot code

Code Review Skill

Performs comprehensive code review for the OTCryptoRobot trading bot.

Trigger

When user asks to review code, check changes, or review a PR.

Process

  1. Identify Changes - Run git diff to see changes
  2. Review Each File - Check against patterns in CLAUDE.md
  3. Check Categories
    • Generic <C, F> pattern compliance
    • Async/await correctness (critical for real-time trading)
    • CancellationToken propagation
    • EF Core patterns (AsNoTracking, DbContextFactory)
    • DI registration in RegisterService.cs
    • Error handling (no empty catch blocks)
    • Security (API keys, credentials)
    • Thread safety (singleton services)
    • SignalR/gRPC patterns
  4. Output - Summary with severity-rated issues