Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Compatibility rule: if it can be launched from a terminal command in your worktr
- **Task Integration** — Pull tasks from Trello and/or use local task records. GitHub Issues and Linear coming soon.
- **Browser-like Tabs** — Multiple workspaces open simultaneously, each with its own terminals and state.
- **Runs Locally** — Runs on your hardware. Access through the desktop app or the browser. No publisher-hosted telemetry by default.
- **Desktop Apps** — Windows desktop builds are published on the latest GitHub release. macOS users should run from source until the signed Apple desktop release path is restored.
- **Desktop Apps** — Windows and native Linux desktop builds are published on the latest GitHub release. macOS users should run from source until the signed Apple desktop release path is restored.

## Tier System

Expand Down Expand Up @@ -132,6 +132,8 @@ Maintainers: see [docs/MACOS_SIGNING_RELEASE_CHECKLIST.md](docs/MACOS_SIGNING_RE

### Linux / WSL

Native Linux desktop builds are published on the latest GitHub release. Download the `.deb` or `.pkg.tar.zst` package for your distro. If you are using WSL or prefer the browser workflow, run Agent Workspace from source:

```bash
git clone https://github.com/web3dev1337/agent-workspace.git
cd agent-workspace
Expand Down
12 changes: 8 additions & 4 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ <h1 class="mega-title">
<a class="btn-glow download-btn download-mac" href="#install-mid" style="display:none">
<span>Install on Mac</span>
</a>
<a class="btn-glow download-btn download-linux" href="#install-mid" style="display:none">
<span>Install on Linux</span>
<a class="btn-glow download-btn download-linux" href="https://github.com/web3dev1337/agent-workspace/releases/latest" target="_blank" rel="noopener" style="display:none">
<span>Download for Linux</span>
</a>
<a class="btn-outline" href="https://github.com/web3dev1337/agent-workspace" target="_blank">
<svg class="tab-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg> <span>View on GitHub</span>
Expand Down Expand Up @@ -268,8 +268,10 @@ <h2 class="section-title">Install</h2>

<div class="install-panel" id="tab-linux-mid">
<div class="install-option">
<span class="btn-outline install-download install-source-label">Run from Source ↓</span>
<a class="btn-glow install-download" href="https://github.com/web3dev1337/agent-workspace/releases/latest" target="_blank" rel="noopener">Download Linux Packages</a>
</div>
<p class="install-note">Native Linux desktop builds are published on GitHub Releases as <span class="text-cyan">.deb</span> and <span class="text-cyan">.pkg.tar.zst</span> packages.</p>
<div class="install-divider"><span>or run from source for WSL / browser use</span></div>
<div class="install-cmd">
<code>git clone https://github.com/web3dev1337/agent-workspace.git</code>
<button class="copy-btn" data-copy="git clone https://github.com/web3dev1337/agent-workspace.git">Copy</button>
Expand Down Expand Up @@ -483,8 +485,10 @@ <h2 class="section-title">Install</h2>

<div class="install-panel" id="tab-linux">
<div class="install-option">
<span class="btn-outline install-download install-source-label">Run from Source ↓</span>
<a class="btn-glow install-download" href="https://github.com/web3dev1337/agent-workspace/releases/latest" target="_blank" rel="noopener">Download Linux Packages</a>
</div>
<p class="install-note">Native Linux desktop builds are published on GitHub Releases as <span class="text-cyan">.deb</span> and <span class="text-cyan">.pkg.tar.zst</span> packages.</p>
<div class="install-divider"><span>or run from source for WSL / browser use</span></div>
<div class="install-cmd">
<code>git clone https://github.com/web3dev1337/agent-workspace.git</code>
<button class="copy-btn" data-copy="git clone https://github.com/web3dev1337/agent-workspace.git">Copy</button>
Expand Down
6 changes: 5 additions & 1 deletion site/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,15 @@ Agent Workspace is an open-source, local-first orchestration layer for CLI codin
### Windows (recommended)
- Download: <https://github.com/web3dev1337/agent-workspace/releases/latest>

### Linux
- Native Linux desktop builds are published on the latest GitHub release.
- Download the `.deb` or `.pkg.tar.zst` package for your distro.

### macOS
- Packaged macOS downloads are temporarily unavailable while Apple signing and notarization are being configured.
- Use the source install flow below for now.

### Source
### Source (macOS or WSL)
```bash
git clone https://github.com/web3dev1337/agent-workspace.git
cd agent-workspace
Expand Down
Loading