AI-Powered SSH Client
Manage servers smarter with intelligent command assistance.
wagterm-final-demo.mp4
Wagterm is an open-source desktop SSH client with built-in AI assistance. Connect to your servers and let AI help you execute commands, diagnose issues, and manage deployments—all with intelligent risk assessment and approval workflows.
- AI-Powered Command Assistance — Get intelligent command suggestions from GPT-5 or Claude, with automatic risk assessment (low/medium/high)
- Multi-Provider LLM Support — Choose between OpenAI and Anthropic models based on your preference
- Agent Planning — AI creates multi-step execution plans for complex tasks
- Connection Management — Organize SSH profiles with support for PEM keys, passwords, and jump hosts
- Terminal Search — Search through terminal output with keyboard navigation
- Command History — Track and search all executed commands per session
- Secure Credential Storage — Keys and secrets stored in your OS keychain
- Auto-Approval Workflows — Configure automatic execution for low-risk commands
brew tap WagnerAgent/homebrew-tap
brew install --cask wagtermUnsigned build note (macOS): If macOS says the app is damaged or can’t be opened, run:
xattr -dr com.apple.quarantine /Applications/Wagterm.app
- Node.js 18+ (20 recommended)
- npm 9+
npm install
npm run devCreate a .env file at the project root to configure local settings:
cp .env.example .envIf .env.example doesn’t exist, create .env manually. Common keys:
OPENAI_API_KEY=sk-...
ANTHROPIC_API_KEY=sk-ant-...These keys can also be set inside the app under Preferences → AI Providers.
npm install
npm run build
npm run rebuild:electron
npm run packageArtifacts are placed in release/.
macOS note (unsigned builds): If Gatekeeper blocks the app, right-click → Open once, or run:
xattr -dr com.apple.quarantine /Applications/Wagterm.app
| Command | Description |
|---|---|
npm run dev |
Start the app in dev mode |
npm run build |
Build main/preload/renderer bundles |
npm run preview |
Preview the renderer build |
npm run lint |
Run ESLint |
npm run rebuild:electron |
Rebuild native dependencies |
npm run package |
Build installers via electron-builder |
- macOS:
.dmg - Windows: NSIS installer
npm run build
npm run packageGitHub Actions builds and publishes installers when you push a tag like v0.1.0. Manual runs upload artifacts only.
git tag v0.1.0
git push origin main --tagssrc/
├── main/ # Main process
├── preload/ # Secure IPC bridge
├── renderer/ # UI layer
└── agent/ # AI scaffolding for decisions and command proposals
- Blueprints — Save and reuse command sequences as templates
- Team Collaboration — Share connections and workflows with your team
- UI Enhancements — Custom themes and styling options
Contributions are welcome. Please open an issue or discussion describing the change and your proposed approach.
MIT. See LICENSE for details.