Problem
I installed AgentLimb v0.1.4 via the Chrome extension and copied the prompt generated by the AgentLimb side panel.
The generated prompt expects a local Bridge and CLI to be installed on Windows:
Invoke-WebRequest http://127.0.0.1:7791/api/mvp/status -UseBasicParsing
Start-ScheduledTask -TaskName "AgentLimb Bridge"
Set-ExecutionPolicy -Scope Process Bypass; .\scripts\install.ps1
It also expects the CLI command to exist at:
~/.agentlimb/bin/agentlimb
However, I cannot find the Bridge / CLI installer in the GitHub repository or in the v0.1.4 release assets.
The v0.1.4 release appears to include only:
agentlimb-chrome-v0.1.4.zip
Source code zip
Source code tar.gz
I could not find:
scripts/install.ps1
AgentLimb Bridge installer
agentlimb CLI binary
Windows setup instructions
What I tried
In PowerShell / Codex terminal, I checked the following:
Invoke-WebRequest http://127.0.0.1:7791/api/mvp/status -UseBasicParsing
Get-ScheduledTask -TaskName "AgentLimb Bridge" -ErrorAction SilentlyContinue
Test-Path "$HOME\.agentlimb\bin\agentlimb"
The results showed that:
Bridge at http://127.0.0.1:7791 is offline.
Scheduled task "AgentLimb Bridge" does not exist.
~/.agentlimb/bin/agentlimb does not exist.
No agentlimb command is available on PATH.
I also checked my current workspace, but there is no scripts/install.ps1 file.
Expected behavior
The README or release page should provide a clear way to install the local Bridge and CLI on Windows, for example:
agentlimb-windows-setup.exe
agentlimb-bridge-windows.zip
scripts/install.ps1
npm install -g agentlimb
winget install agentlimb
Or the Chrome extension / side panel should include instructions explaining where to download or install the local Bridge.
Actual behavior
The Chrome extension generates a prompt that assumes the local Bridge, scheduled task, and CLI already exist, but there does not appear to be a public installer or setup guide for them.
As a result, Codex / terminal-based agents cannot connect to the local Bridge and cannot use AgentLimb.
Environment
AgentLimb version: v0.1.4
Platform: Windows
Chrome extension: installed and side panel can generate prompt
Bridge URL expected by prompt: http://127.0.0.1:7791
Expected CLI path: ~/.agentlimb/bin/agentlimb
Could you clarify how Windows users should install the local Bridge and CLI?
If the Bridge installer is missing from the v0.1.4 release, could you please add it to the release assets or update the README with the correct installation instructions?
Problem
I installed AgentLimb v0.1.4 via the Chrome extension and copied the prompt generated by the AgentLimb side panel.
The generated prompt expects a local Bridge and CLI to be installed on Windows:
It also expects the CLI command to exist at:
However, I cannot find the Bridge / CLI installer in the GitHub repository or in the v0.1.4 release assets.
The v0.1.4 release appears to include only:
I could not find:
What I tried
In PowerShell / Codex terminal, I checked the following:
The results showed that:
I also checked my current workspace, but there is no
scripts/install.ps1file.Expected behavior
The README or release page should provide a clear way to install the local Bridge and CLI on Windows, for example:
Or the Chrome extension / side panel should include instructions explaining where to download or install the local Bridge.
Actual behavior
The Chrome extension generates a prompt that assumes the local Bridge, scheduled task, and CLI already exist, but there does not appear to be a public installer or setup guide for them.
As a result, Codex / terminal-based agents cannot connect to the local Bridge and cannot use AgentLimb.
Environment
Could you clarify how Windows users should install the local Bridge and CLI?
If the Bridge installer is missing from the v0.1.4 release, could you please add it to the release assets or update the README with the correct installation instructions?