惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
L
LangChain Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
J
Java Code Geeks
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
小众软件
小众软件
博客园 - Franky
D
Docker
Google DeepMind News
Google DeepMind News
Microsoft Azure Blog
Microsoft Azure Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
宝玉的分享
宝玉的分享
C
Check Point Blog
B
Blog
V
V2EX
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
The Cloudflare Blog
博客园 - 聂微东
博客园_首页
Engineering at Meta
Engineering at Meta

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - openwork
2026-06-03 · via AUR Newest Packages

I'm getting:

Package (1)  New Version  Net Change

openwork     0.13.3-1     297,21 MiB

Total Installed Size:  297,21 MiB

:: Proceed with installation? [Y/n] y
(1/1) checking keys in keyring                                                                                                          [----------------------------------------------------------------------------------] 100%
(1/1) checking package integrity                                                                                                        [----------------------------------------------------------------------------------] 100%
(1/1) loading package files                                                                                                             [----------------------------------------------------------------------------------] 100%
(1/1) checking for file conflicts                                                                                                       [----------------------------------------------------------------------------------] 100%
error: failed to commit transaction (conflicting files)
openwork: /usr/bin/chrome-devtools-mcp exists in filesystem (owned by chrome-devtools-mcp)
Errors occurred, no packages were upgraded.
 -> error installing: [/home/jason/.cache/yay/openwork/openwork-0.13.3-1-x86_64.pkg.tar.zst] - exit status 1

The current PKGBUILD is missing options=(!strip), which causes all four Bun-compiled sidecar binaries to break after the build.

makepkg runs `strip --strip-all` by default, which removes the ELF sections where Bun embeds the app-specific JavaScript. Since openwork-orchestrator, openwork-server, opencode-router, and chrome-devtools-mcp all share the same Bun 1.3.6 runtime core, stripping them reduces all four to identical bare Bun runtimes (~100MB each, same md5sum). Running any of them just prints Bun's help text instead of the actual app, and the OpenWork GUI fails with "Connection refused" because the backend services can't start.

You can verify this by checking:

```
md5sum /usr/bin/openwork-orchestrator /usr/bin/openwork-server /usr/bin/opencode-router /usr/bin/chrome-devtools-mcp
```

If all four hashes are identical, the binaries were stripped. They should each have unique hashes and sizes.

The fix is to add `options=(!strip)` to the PKGBUILD:

```pkgbuild
license=('MIT')
options=(!strip)
```

OpenWork-Dev (the Tauri GUI) is a native Rust binary and isn't affected by strip, but all the Bun sidecars need their embedded JS sections preserved to function.

Not sure if anyone is still having issue or not, but as of 0.11.199-1 I've managed to cleanly install both openwork and opencode without conflicts. If anyone is still having issues, please let us know.

Would love to use it but will no uninstall opencode itself. It conflicts with opencode install itself.

Conflicting error with /usr/bin/opencode executable still occurs / occurs again with version 0.11.169-1

@l3afyb0y OK, I updated this package to the latest version and fixed the file conflict by removing the built-in opencode when this file already existed in /usr/bin.

@i3afyb0y Thanks for your dedicate work. Could you add me as a co-maintainer?

I wanna apologize again for delays, life's being chaotic for me lately and there have been some priorities I've had to take care of before I can really buckle down on a fix. If you're someone trying to install, or update this package, download debtap from the AUR, head to the openwork upstream, and download the .deb from the Releases tab. You can then debtap it, which will allow you to remove the opencode binary. Keep in mind, this makes opencode a depends when it currently is not, so if you plan to do as I'm recommending, make sure you have opencode installed before installing openwork. Otherwise, v0.11.63 is available with opencode removed as a .pkg.tar.gz on my github (l3afyb0y) in a temporary repo. It's not ideal, but it'll get users going until I can really get to fixing this PKGBUILD. I adopted this package, and didn't know the PKGBUILD was probably non-functioning when I took over because I had used the curl command to install opencode, so my own version of that was being overwritten by this package unknowingly as well, as someone previously mentioned had happened to them. I will also upload the PKGBUILD to my temporary repo, so if anyone else has the time and wants to fix it, feel free to open a pull rq there.

great thanks for working on it. cant wait to see the updated package. been struggling with getting a working package for a bit now.