Claude Skill
basecamp/basecamp-cli
Basecamp CLI is an open-source Go tool for managing Basecamp projects, messages, and to-dos via terminal or AI agents. Supports agent skill integration.
Overview
Repository
Install this Skill
git clone https://github.com/basecamp/basecamp-cli.gitRegistry
Summary
Basecamp CLI is a command-line tool and agent skill framework that enables developers to interact with Basecamp projects, messages, and to-dos directly from the terminal or via AI agents.
Basecamp CLI 与代理技能(Agent Skills)
Key features
- Command-line interface for Basecamp operations
- Agent skill integration for AI assistants
- Manage projects, messages, and to-dos
- Open-source Go-based tool
Use cases
- Automate project management tasks
- Integrate Basecamp with custom scripts
- Enable AI agents to handle Basecamp workflows
- Streamline team communication via CLI
README excerpt
# <img src="assets/bc5-snowglobe.png" height="28" alt="Basecamp"> Basecamp CLI `basecamp` is the official command-line interface for Basecamp. Manage projects, todos, messages, and more from your terminal or through AI agents. - Works standalone or with any AI agent (Claude, Codex, Copilot, Gemini) - JSON output with breadcrumbs for easy navigation - OAuth authentication with automatic token refresh - Includes agent skill and Claude plugin ## Quick Start **macOS / Linux / WSL2** ```bash curl -fsSL https://basecamp.com/install-cli | bash ``` **Windows (PowerShell)** ```powershell irm https://raw.githubusercontent.com/basecamp/basecamp-cli/main/scripts/install.ps1 | iex ``` That's it. You now have full access to Basecamp from your terminal. <details> <summary>Other installation methods</summary> **Brew / macOS** ``` brew install --cask basecamp/tap/basecamp-cli ``` **Arch Linux / Omarchy (AUR):** ```bash yay -S basecamp-cli ``` **Linux (deb/rpm/apk):** ```bash # Download from https://github.com/basecamp/basecamp-cli/releases/latest sudo apt install ./basecamp-cli_*_linux_amd64.deb # Debian/Ubuntu sudo dnf install ./basecamp-cli_*_linux_amd64.rpm # Fedora/RHEL sudo apk add --allow-untrusted ./basecamp-cli_*_linux_amd64.apk # Alpine ``` Arm64: substitute `arm64` for `amd64` in the filename. Verify the SHA-256 checksum from `checksums.txt` before installing unsigned Alpine packages. **Scoop (Windows):** ```bash scoop bucket add basecamp https://github.com/basecamp/homebrew-tap scoop install basecamp-cli ``` **Shell script (macOS / Linux / WSL2 / Git Bash):** ```bash curl -fsSL https://raw.githubusercontent.com/basecamp/basecamp-cli/main/scripts/install.sh | bash ``` **Nix:** ```bash nix profile install github:basecamp/basecamp-cli ```