Keep your Agentwise installation up-to-date with the latest features and improvements
The easiest way to update Agentwise using the built-in command
# Run this command in Claude Code
/update-agentwise
What it does:
If you prefer to update manually or the automatic update isn't working:
# 1. Navigate to Agentwise directory
cd ~/agentwise
# 2. Stash any local changes
git stash
# 3. Pull latest changes
git pull origin main
# 4. Install new dependencies
npm install
# 5. Rebuild the project
npm run build
# 6. Restart Agentwise
node dist/index.js
# 7. Verify the update
echo "✅ Updated to latest version!"
Agents now learn from every task and improve over time with persistent knowledge storage
Verified token reduction through Context 3.0 + Knowledge Graph combined systems
Automatic validation of all claims made by AI agents with trust scoring
New /update-agentwise command for seamless updates without manual steps
cp -r ~/agentwise/workspace ~/agentwise-workspace-backup
# Check your current Agentwise version
cat ~/agentwise/package.json | grep version
# Check the latest version on GitHub
curl -s https://api.github.com/repos/VibeCodingWithPhil/agentwise/releases/latest | grep tag_name
# View recent changes
cat ~/agentwise/CHANGELOG.md | head -50
If you experience issues after updating, you can rollback to a previous version:
# 1. Navigate to Agentwise
cd ~/agentwise
# 2. Check available versions
git tag -l
# 3. Checkout a specific version (example: v2.1.0)
git checkout v2.1.0
# 4. Reinstall dependencies for that version
npm install
# 5. Rebuild
npm run build
# 6. Restart
node dist/index.js
If you get permission errors:
sudo chown -R $(whoami) ~/agentwise
If the build fails:
# Clear node_modules and reinstall
rm -rf node_modules package-lock.json
npm install
npm run build
If you have local changes:
# Stash your changes first
git stash
git pull origin main
git stash pop # To restore your changes
Configure Agentwise to check for updates automatically
Add to your ~/.agentwise-config.json
:
{
"updates": {
"autoCheck": true,
"checkInterval": "daily",
"autoInstall": false,
"notifyOnUpdate": true
}
}