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@@"
}