
file-review-install
by desplega-ai
AI toolbox, intended to be developed and used by agents!
SKILL.md
name: file-review-install description: Install the file-review tool. Use when user needs to install file-review on a new machine or asks how to set it up.
Install File Review
Guide for installing the file-review tool.
Quick Install (Homebrew)
For macOS and Linux with Homebrew installed:
brew tap desplega-ai/tap
brew install file-review
Verify installation:
which file-review
If Homebrew is not available on the platform, use the manual installation below.
Manual Installation (from source)
Use this method if Homebrew is unavailable or you prefer building from source.
Prerequisites
Ensure the user has:
- bun - JavaScript runtime
- Rust - Rust toolchain with cargo
If missing, provide installation commands:
# Install bun
curl -fsSL https://bun.sh/install | bash
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Installation Steps
-
Clone the repository:
git clone https://github.com/desplega-ai/ai-toolbox.git cd ai-toolbox/file-review -
Install dependencies:
bun install -
Build and install the binary:
bun run install:appThis builds the Tauri app and symlinks it to
~/.local/bin/file-review. -
Ensure ~/.local/bin is in PATH (add to
~/.zshrcif needed):export PATH="$HOME/.local/bin:$PATH" -
Verify installation:
which file-review
Troubleshooting
- Command not found after install: Ensure
~/.local/binis in your PATH and restart terminal - Rust not found: Restart terminal after installing Rust
- Build fails on macOS: Install Xcode Command Line Tools:
xcode-select --install
Uninstall
cd ai-toolbox/file-review
bun run uninstall:app
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
1ヶ月以内に更新
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon

