CLI Prompt Management Tool - Guides and Documentation
| English | 日本語 |
Install the required tools for using Iterate Agent.
| Tool | Version | Check Command | Purpose |
|---|---|---|---|
| Deno | 2.x or later | deno --version |
Climpt runtime |
| GitHub CLI (gh) | 2.x or later | gh --version |
GitHub API access |
Deno is a TypeScript/JavaScript runtime required for running Climpt.
curl -fsSL https://deno.land/install.sh | sh
brew install deno
For Windows, run
irm https://deno.land/install.ps1 | iexin PowerShell.
deno --version
GitHub CLI is a command-line tool for interacting with GitHub. Iterate Agent
uses gh to retrieve Issue/Project information.
brew install gh
# Debian/Ubuntu
type -p curl >/dev/null || sudo apt install curl -y
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
sudo chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
sudo apt update
sudo apt install gh -y
For other platforms (Fedora, Windows, etc.), see https://cli.github.com/manual/installation
After installing gh, authenticate with your GitHub account.
gh auth login
Interactive prompts:
GitHub.comHTTPS (recommended)YesLogin with a web browserVerify authentication:
gh auth status
If authentication fails, re-authenticate with gh auth logout && gh auth login,
or refresh with gh auth refresh.
deno --version # Deno 2.x
gh --version # gh 2.x
gh auth status # Logged in