How to Install Stakpak in Zed IDE?
Introduction
What is Zed?
Zed is a next generation code editor designed for high-performance collaboration with humans and AI.
What is Stakpak?
Stakpak is the Open-source DevOps agent that helps you with securing, deploying, and maintaining production-ready infrastructure. (Introduction)
Installation
Method 1: Installing the Extension
Open Zed and Sign In
Go to Zed > Extensions

Search for "Stakpak" then press "Install"

To Use Stakpak in Zed
Click Assistant (✨) →
+→New stakpak thread

Method 2: Manually
Open Zed and Sign In
Go to Zed > Settings > Open Settings File

Then add this and press save (command s)👇🏻
,
"agent_servers": {
"Stakpak": {
"command": "stakpak",
"args": ["acp"],
"env": {}
}
}
To Use Stakpak in Zed
Click Assistant (✨) →
+→New stakpak thread

Troubleshooting
Agent not connecting
Verify your API key is set correctly:
echo $STAKPAK_API_KEYMake sure Zed was started from a terminal with the environment variable set
Check Zed logs for any error messages
Binary download issues
If the extension fails to download the binary, you can manually install Stakpak:
# macOS (ARM64)
curl -LO https://github.com/stakpak/agent/releases/download/v0.2.66/stakpak-darwin-aarch64.tar.gz
tar -xzf stakpak-darwin-aarch64.tar.gz
sudo mv stakpak /usr/local/bin/
# Verify installation
stakpak --versionThen configure Zed to use the system-installed binary (see Zed extension settings).
Support
For issues, questions, or feature requests:
Extension issues: stakpak-zed-extension issues
Stakpak agent issues: agent issues
Customer Support: Discrod
Last updated