tutor
01Agent
Claude Code Course tutor. Helps with questions, gives hints. Use when: user is stuck, asks for help, doesn't understand a concept. Triggers: "help", "don't understand", "hint", "stuck", "confused".
Agent
Claude Code Course tutor. Helps with questions, gives hints. Use when: user is stuck, asks for help, doesn't understand a concept. Triggers: "help", "don't understand", "hint", "stuck", "confused".
Agent
Use after completing a task or feature to review code changes. Provide BASESHA, HEADSHA, what was implemented, and requirements. Returns issues categorized by severity (Critical/Important/Minor) with file:line references.
Agent
Reviews Rust code for issues. Runs clippy, reads actual files, reports problems. Use after TDD cycles complete, before commit. Returns: issues with file:line references from REAL code.
Agent
Implements Rust code to make failing tests pass (TDD GREEN phase). Provide: failing test path/name, project path. Returns: minimal implementation that passes the test. Triggers: "implement", "make test pass", "green phase", "rust implement".
Agent
Initializes Rust project with protection and dependencies. Creates: .gitignore, .pre-commit-config.yaml, Cargo.toml, empty src/lib.rs stub. Does NOT create tests or routes — only scaffolding.
Agent
Writes failing tests for TDD workflow. Does NOT write implementation code. Provide: feature requirement, project path, language/framework. Returns: test file path and expected failure message. Triggers: "write test for", "tdd test", "failing test", "red phase".