Complete agent monitoring and Galaxy Control integration

- expose command-monitor conversations and preserve visible agent transcripts
- add bounded polling and a dedicated shell interrupt tool
- improve direct-provider images, skills, tool history, and usage handling
- package and brand Galaxy Control across releases, installers, persistence, and docs
This commit is contained in:
2026-07-29 15:04:58 -05:00
parent 100f1eff1c
commit dbfa8bcd48
172 changed files with 6357 additions and 3825 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
pkgname=warp-terminal@@CHANNEL_SUFFIX@@
pkgname=@@PACKAGE_NAME@@
pkgver=@@VERSION@@
pkgrel=@@RELEASE@@
pkgdesc="Warp, the Rust-based terminal for developers and teams"
+3 -3
View File
@@ -3,9 +3,9 @@
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-~/.config}
# Allow users to override command-line options
if [[ -f $XDG_CONFIG_HOME/warp-terminal@@CHANNEL_SUFFIX@@-flags.conf ]]; then
WARP_USER_FLAGS="$(grep -v '^#' $XDG_CONFIG_HOME/warp-terminal@@CHANNEL_SUFFIX@@-flags.conf)"
if [[ -f $XDG_CONFIG_HOME/@@PACKAGE_NAME@@-flags.conf ]]; then
GALAXY_USER_FLAGS="$(grep -v '^#' "$XDG_CONFIG_HOME/@@PACKAGE_NAME@@-flags.conf")"
fi
# Launch
exec /opt/warpdotdev/warp-terminal@@CHANNEL_SUFFIX@@/@@BINARY_NAME@@ $WARP_USER_FLAGS "$@"
exec /opt/warpdotdev/@@PACKAGE_NAME@@/@@BINARY_NAME@@ $GALAXY_USER_FLAGS "$@"
+2 -2
View File
@@ -1,4 +1,4 @@
pkgname=oz@@CHANNEL_SUFFIX@@
pkgname=@@PACKAGE_NAME@@
pkgver=@@VERSION@@
pkgrel=@@RELEASE@@
pkgdesc="The orchestration platform for cloud agents"
@@ -41,5 +41,5 @@ package() {
# Create a symlink to the binary in /usr/bin.
install -d "$pkgdir"/usr/bin
ln -s "/opt/warpdotdev/oz@@CHANNEL_SUFFIX@@/@@BINARY_NAME@@" "$pkgdir/usr/bin/@@BINARY_NAME@@"
ln -s "/opt/warpdotdev/@@PACKAGE_NAME@@/@@BINARY_NAME@@" "$pkgdir/usr/bin/@@BINARY_NAME@@"
}
+1 -1
View File
@@ -1,4 +1,4 @@
Package: warp-terminal@@CHANNEL_SUFFIX@@
Package: @@PACKAGE_NAME@@
Version: @@VERSION@@
Section: devel
Depends: fontconfig, libegl1, libwayland-client0, libwayland-egl1, libx11-6, libxcb1, libxcursor1, libxi6, libxkbcommon-x11-0, zlib1g
+2 -2
View File
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
# Create a symlink from /usr/bin to our binary under /opt.
rm -f /usr/bin/warp-terminal@@CHANNEL_SUFFIX@@
ln -s @@OPTDIR@@/@@BINARY_NAME@@ /usr/bin/warp-terminal@@CHANNEL_SUFFIX@@
rm -f /usr/bin/@@PACKAGE_NAME@@
ln -s @@OPTDIR@@/@@BINARY_NAME@@ /usr/bin/@@PACKAGE_NAME@@
# Make sure the system incorporates the newly-installed desktop file.
if hash update-desktop-database 2>/dev/null; then
+1 -1
View File
@@ -4,7 +4,7 @@
# postrm script.
action="$1"
rm -f /usr/bin/warp-terminal@@CHANNEL_SUFFIX@@
rm -f /usr/bin/@@PACKAGE_NAME@@
# Make sure the system forgets the newly-uninstalled desktop file.
if hash update-desktop-database 2>/dev/null; then
+1 -1
View File
@@ -1,4 +1,4 @@
Package: oz@@CHANNEL_SUFFIX@@
Package: @@PACKAGE_NAME@@
Version: @@VERSION@@
Section: devel
Depends: zlib1g
+1 -1
View File
@@ -4,4 +4,4 @@
# postrm script.
action="$1"
rm -f /usr/bin/oz@@CHANNEL_SUFFIX@@
rm -f /usr/bin/@@BINARY_NAME@@
+3 -1
View File
@@ -3,7 +3,7 @@
###############################################################################
Summary: Warp, the Rust-based terminal for developers and teams
Name: warp-terminal@@CHANNEL_SUFFIX@@
Name: @@PACKAGE_NAME@@
Version: @@VERSION@@
Release: @@RELEASE@@
Vendor: Denver Technologies, Inc.
@@ -65,6 +65,8 @@ ln -s %{prefix}/warpdotdev/%{name}/@@BINARY_NAME@@ %{buildroot}%{_bindir}/%{name
# We also install a few things elsewhere in the system.
%{_bindir}/%{name}
%{_bindir}/@@GALAXY_AI_COMMAND_NAME@@
%{_bindir}/@@GALAXY_CONTROL_COMMAND_NAME@@
%{_datadir}/applications/@@BUNDLEID@@.desktop
%{_datadir}/icons/hicolor
+1 -1
View File
@@ -3,7 +3,7 @@
###############################################################################
Summary: The orchestration platform for cloud agents.
Name: oz@@CHANNEL_SUFFIX@@
Name: @@PACKAGE_NAME@@
Version: @@VERSION@@
Release: @@RELEASE@@
Vendor: Denver Technologies, Inc.