review_skill
- TypeScript
0
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill philipp-spiess/ai --skill review- SKILL.md519 B
Overview
This skill runs a non-interactive review of uncommitted changes in the current repository using the Codex CLI. It helps surface code quality issues, potential bugs, and improvement suggestions before you commit. Use it as a quick safety check or pre-commit gate for TypeScript and other code in the repo.
How this skill works
The skill invokes the Codex CLI review command against the working tree to analyze changed files that are not yet committed. It inspects diffs, performs static analysis, and generates plain-language feedback on correctness, style, and maintainability. Results are returned in the terminal so you can apply fixes immediately or include them in your next commit.
When to use it
- Before committing a feature or fix to catch regressions early
- When asking for an automated code review from CI or a peer
- After running tests to find issues tests may not cover
- During pair programming to get a second automated opinion
- When preparing a pull request to reduce review churn
Best practices
- Run the review locally before making commits to avoid pushing obvious issues
- Address high-confidence bug warnings first, then follow style and optimization suggestions
- Review the output file-by-file and apply minimal, focused fixes
- Combine with unit tests and linters for broader coverage
- Re-run after fixes to confirm issues are resolved
Example use cases
- A developer runs the review before pushing a feature branch to catch logic errors
- A maintainer uses the tool to validate refactors across TypeScript modules
- Use the review as part of a pre-commit hook to block commits with obvious bugs
- Run the command in CI to produce automated feedback for pull requests
- Run the review when you want quick suggestions for code clarity and API use
FAQ
Run codex review --uncommitted from the repository root to analyze all unstaged and staged-but-uncommitted changes.
Does it modify my files automatically?
No. The review only analyzes changes and outputs recommendations. You must edit files yourself or apply suggested fixes manually.
Will it catch type errors in TypeScript?
Yes, it flags many type-related issues and incorrect API usage, but you should still run tsc and your test suite for complete verification.