May 23May 23 Author Hi @resin1980 @Joly0 I have almost finished a new version that should address both of these.@Joly0 To be sure, if your system still has the debug log, it would be helpful so I can double check not an unrelated issue to what I have fixed.ThanksJohn
May 23May 23 Author Antigravity Cli added, along with a number of fixes and a few other enhancements.
May 25May 25 On 5/23/2026 at 9:25 AM, johner said:Antigravity Cli added, along with a number of fixes and a few other enhancements.Hi John,You are doing an amazing job with this plugin, really appreciate your hard work on it!I ran into an issue when trying to install the Antigravity agent through the WebUI, which triggers this error: Fatal Error: Class "AICliAgents\Services\Sources\UrlValidator" not foundWhy it's happening: The plugin is currently missing an autoloader definition for subdirectories under src/includes/services/. Because UrlValidator.php lives inside a nested sources/ subfolder (src/includes/services/sources/UrlValidator.php), its namespace AICliAgents\Services\Sources isn't being registered by the flat file inclusions in the manager.The Fix: Adding a directory map fallback or explicitly globbing the subfolder inside src/includes/AICliAgentsManager.php right after InstallerService.php fixes the issue completely:PHPrequire_once __DIR__ . '/services/InstallerService.php'; // Load underlying source engines and validators foreach (glob(__DIR__ . '/services/sources/*.php') as $file) { require_once $file; } Additionally, a PSR-4 compliant symlink structure or folder rename from src/includes/services/sources/ to match the capitalized namespace layout (src/Services/Sources/) resolves the autoloader mismatch permanently.Thanks again for building this awesome tool!
May 25May 25 Hi John, Following up on the agent support, I also ran into two issues regarding the new Antigravity CLI ( agy ) command-line integration and credential persistence over SSH: ### 1. Missing SSH Integration & Shim for agy • Why it's happening: The agy agent is currently omitted from the default shell integration files. There is no agy alias in the global profile, and no proxy shim generated in /usr/local/bin . • The Fix: • In src/scripts/installer/runtime.sh : Add the create_proxy call for the Go binary: create_proxy "agy" "antigravity-cli/home/.local/bin/agy" • In src/scripts/installer/shell-integration.sh : Add the persistent-home alias: alias agy='_aicli_run /usr/local/emhttp/plugins/unraid-aicliagents/agents/antigravity-cli/home/.local/bin/agy' ────── ### 2. Keyring Persistence Failure (Credentials Not Saving to Disk) • Why it's happening: The new agy agent uses the virtual DBus Secret Service keyring to encrypt and store OAuth tokens. However, the background daemon fails to write to disk, throwing this error in the daemon log: save: write: open /tmp/unraid-aicliagents/work/root/home/.local/share/aicli-keyring/keyring.json.tmp: no such file or directory Because the OverlayFS mount shadows underlying folders, the required storage directory ( .local/share/aicli-keyring/ ) does not exist on the active mount. The keyring daemon is forced to run entirely in-memory, clearing your authentication every time the daemon or system restarts. • The Fix: Ensure the parent directories are created on the active mount in the secret-service-up.sh script (or during the home mount process) before the daemon launches: mkdir -p "$HOME_DIR/.local/share/aicli-keyring" Once these are merged, agy will be fully authenticated, persistent, and available out-of-the-box in all SSH terminal sessions! Thanks again!
June 1Jun 1 Author On 5/26/2026 at 3:10 AM, Sanjay said:Hi John,Following up on the agent support, I also ran into two issues regarding the new Antigravity CLI ( agy ) command-line integration and credential persistence over SSH:### 1. Missing SSH Integration & Shim for agy• Why it's happening: The agy agent is currently omitted from the default shell integration files. There is no agy alias in the global profile, and no proxy shim generated in /usr/local/bin .• The Fix:• In src/scripts/installer/runtime.sh : Add the create_proxy call for the Go binary:create_proxy "agy" "antigravity-cli/home/.local/bin/agy"• In src/scripts/installer/shell-integration.sh : Add the persistent-home alias:alias agy='_aicli_run /usr/local/emhttp/plugins/unraid-aicliagents/agents/antigravity-cli/home/.local/bin/agy'──────### 2. Keyring Persistence Failure (Credentials Not Saving to Disk)• Why it's happening: The new agy agent uses the virtual DBus Secret Service keyring to encrypt and store OAuth tokens. However, the background daemon fails to write to disk, throwing this error in the daemon log:save: write: open /tmp/unraid-aicliagents/work/root/home/.local/share/aicli-keyring/keyring.json.tmp: no such file or directoryBecause the OverlayFS mount shadows underlying folders, the required storage directory ( .local/share/aicli-keyring/ ) does not exist on the active mount. The keyring daemon is forced to run entirely in-memory, clearing your authentication every time the daemonor system restarts.• The Fix:Ensure the parent directories are created on the active mount in the secret-service-up.sh script (or during the home mount process) before the daemon launches:mkdir -p "$HOME_DIR/.local/share/aicli-keyring"Once these are merged, agy will be fully authenticated, persistent, and available out-of-the-box in all SSH terminal sessions!Thanks again!Hey! These should be fixed now, thx for the continued feedback.
June 13Jun 13 hi, great idea for a plugin. Is there a way to configure open code to use the local ollama ? in normal setup i can use ollama launch opencode as ollama has integration and inserts the integration (it emulates openai) but when i do it on unraid it says open code not installed
June 13Jun 13 Author Hi!So I assume the opencode agent works fine on its own?How are you launching ollama etc.? In the standard unraid terminal, the little terminal button on the workspace drawer tab or another way?Once I know I’ll see if I can get Claude to design a way to support this launch method.In the interim use kilo (or opencode) free models to config the local models in opencode so you can launch it as blower the current design :-) Edited June 13Jun 13 by johner
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.