Logician is a local-first coding agent with a streaming terminal UI. SSH-ready, thinking-visible, and built for real code editing workflows.
Most agent frameworks hide what they're doing. Logician makes every tool call, trace, and reasoning step visible and inspectable.
Clone, install, launch. The TUI connects to any OpenAI-compatible backend — configure once, start reasoning.
Skills are plain Markdown with YAML frontmatter. Add domain expertise without touching the agent core.
---
name: code-review
description: Review code changes for correctness, risks, and missing tests.
aliases:
- code review
- review code
triggers:
- review the code
- review changes
- check this PR
- code review
preferred_tools:
- read_file
- grep
- git
- file_diff
example_queries:
- review the latest changes
- check this PR for bugs
when_not_to_use:
- the user wants a style/formatting review only
next_skills:
- cpp-code-review
- python-code-review
- javascript-code-review
---
# Code Review
Inspect changed files for bugs, regressions, and quality issues.
## Workflow
1. Identify changed files using `git diff` or `file_diff`
2. Read each changed file to understand context
3. Check for logic errors, missing error handling, and performance issues
4. Report findings prioritized by severity
Every design decision prioritises inspectability, local operation, and composability over convenience magic.