← Back to Product Feed

GitHub Open Source CoderLuii/HolyClaude

AI coding workstation: Claude Code + web UI + 5 AI CLIs + headless browser + 50+ tools

1,494
Traction Score
157
Forks
Mar 22, 2026
Launch Date
View Origin Link

Product Positioning & Context

AI Executive Synthesis
An 'AI coding workstation' with support for multiple AI CLIs.
This issue reports a critical integration failure: HolyClaude cannot connect to a 'known working Ollama endpoint.' The user's inability to 'pull models' despite following instructions indicates a significant setup and configuration barrier. This highlights a common developer pain point with multi-tool AI workstations: ensuring seamless interoperability and robust connectivity with external services. For B2B SaaS, such integration failures directly impact user onboarding and product usability. Debugging and resolving these connectivity issues are paramount for HolyClaude to deliver on its promise of a comprehensive AI coding workstation. Unreliable integrations can lead to user frustration, abandonment, and negative market perception, hindering adoption in an ecosystem reliant on diverse AI models and tools.
AI coding workstation: Claude Code + web UI + 5 AI CLIs + headless browser + 50+ tools
ai ai-coding anthropic claude claude-code coding-agent container developer-tools

Related Ecosystem & Alternatives

Discover adjacent products, open-source repositories, and developer tools sharing similar technical architecture.

Deep-Dive FAQs

What is CoderLuii/HolyClaude?
CoderLuii/HolyClaude is analyzed by our AI as: An 'AI coding workstation' with support for multiple AI CLIs.. It focuses on This issue reports a critical integration failure: HolyClaude cannot connect to a 'known working Ollama endpoint.' The user's inability to 'pull mo...
Where did CoderLuii/HolyClaude originate?
Data for CoderLuii/HolyClaude was aggregated directly from the GitHub Open Source community ecosystem, representing raw developer and early-adopter sentiment.
When was CoderLuii/HolyClaude publicly launched?
The initial public indexing or launch date for CoderLuii/HolyClaude within our tracked developer communities was recorded on March 22, 2026.
How popular is CoderLuii/HolyClaude?
CoderLuii/HolyClaude has achieved measurable traction, logging over 1,494 traction score and facilitating 157 recorded discussions or engagements.
Which technical categories define CoderLuii/HolyClaude?
Based on metadata extraction, CoderLuii/HolyClaude is categorized under topics such as: ai, ai-coding, anthropic, claude.
Are there active development issues for CoderLuii/HolyClaude?
Yes, we are currently tracking open architectural debates and bug reports for this project on GitHub. There are currently 5 active high-priority issues logged recently.
What are some commercial alternatives to CoderLuii/HolyClaude?
Our semantic intelligence engine identifies potential commercial alternatives in the SaaS space, such as Monkey Morse, which offers overlapping value propositions.
How does the creator describe CoderLuii/HolyClaude?
The original author or development team describes the product as follows: "AI coding workstation: Claude Code + web UI + 5 AI CLIs + headless browser + 50+ tools"

Active Developer Issues (GitHub)

open Feature Request: Support OpenAI-Compatible Providers for Claude Code
Logged: Apr 2, 2026
open Ollama
Logged: Apr 1, 2026
open Sonnet limit hit, can't switch to higher Think model
Logged: Mar 31, 2026
open Desloppify
Logged: Mar 29, 2026
open Get-Shit-Done
Logged: Mar 29, 2026

Community Voice & Feedback

tchirou • Apr 4, 2026
HI
Small follow-up after testing this in a real HolyClaude setup:

`Codex CLI` and `Codex chat` are actually two different cases.

What I found:
- `Codex CLI` can use `~/.codex/hooks.json`
- but `Codex chat` inside HolyClaude does **not** seem to go through those CLI hooks
- instead, it appears to use HolyClaude’s internal notification flow/server-side provider integration

So from a user perspective, the request is broader than just “support Codex CLI notifications”:

Expected behavior:
- notifications should work for:
- Claude chat
- Claude Code
- Codex chat
- Codex CLI
- ideally the other bundled providers too
- notifications should be sent on:
- task completion
- task failure
- permission notifications are not needed in my case

Why this matters:
A lot of long-running work now happens in the HolyClaude chat providers, not only in the raw CLIs. If notifications only exist for CLI hooks, the “start task and walk away” workflow is st...
tchirou • Apr 4, 2026
Hi
No it’s not fixed on my end. Tried with a private session too just in case.
Also, there is a cloudcli update request, I don’t now if we need to do it ?
Thanks
CoderLuii • Apr 4, 2026
Closing as fixed in v1.1.9.
CoderLuii • Apr 4, 2026
Thanks. This one was real.

The important part was that the Codex session was not actually getting lost. It got created, the first prompt went through, and then the UI kicked you back to the new session page. That pointed at session completion and navigation handling, not session creation.

I checked the CloudCLI side and the completion path really was treating successful completion too narrowly.

This is fixed in [`v1.1.9`](https://github.com/CoderLuii/HolyClaude/releases/tag/v1.1.9).

What changed:

Successful completion no longer depends on an explicit `exitCode === 0` just to finalize the pending session view.

That keeps the UI on the active Codex session after the first prompt instead of bouncing back to `new session`.

Short version: the session existed before, and now the UI should stop mishandling completion.

If you still hit this on `v1.1.9`, reply here and I’ll reopen it.
tchirou • Mar 29, 2026
Hi
Would it be possible to get a notification when permissions are asked ?
Thanks !
tchirou • Mar 29, 2026
Hey @CoderLuii, thanks for adding Codex/Gemini notification support in v1.1.7!
For anyone finding that Codex notifications still don't fire after upgrading: the bootstrap only runs once, so if your container predates v1.1.7, the new Codex configuration was never written.
You can confirm this is your situation by checking ~/.codex/config.toml — if it doesn't contain [features] with codex_hooks = true, and there's no ~/.codex/hooks.json, your bootstrap ran before the Codex hook setup was added.
Two ways to fix it:
Option 1 — Re-run bootstrap (cleanest, but resets settings.json and CLAUDE.md to defaults):
`rm ~/.claude/.holyclaude-bootstrapped
# then restart the container
`
# then restart the container
Option 2 — Manually create the missing files (surgical, preserves your existing config):
Update ~/.codex/config.toml to add:
`toml
Copy
[
features
]
codex_hooks = true
`And create `~/.codex/hooks.json`:`json
{
"hooks": {
"Stop": [
{
"hooks": [
{
"ty...
CoderLuii • Mar 29, 2026
Shipped in [`v1.1.7`](https://github.com/CoderLuii/HolyClaude/releases/tag/v1.1.7).

Codex and Gemini CLIs now have Apprise notification hooks pre-configured. Same `notify-on` flag file, same `NOTIFY_*` env vars, works exactly like Claude Code notifications. No extra setup needed.

Cursor CLI hook is pre-configured but the `stop` event doesn't work in Cursor CLI yet (only in the IDE). It will activate automatically when Cursor adds support.

Junie, OpenCode, and TaskMaster don't have hook systems so notifications aren't possible for those yet.

Also in this release: Codex CLI is now pre-configured with `on-request` approval (no more 9x "approve node" prompts), and all CLI configs/auth persist across container rebuilds.
CoderLuii • Mar 28, 2026
haha claude writing its own bug reports, love it. glad its working well on your phone too, thats exactly the use case i had in mind. no laptop, just a browser and your server doing the work.

just got your 5 euros, seriously appreciate it. youre the first supporter ever. actually just finished setting up the membership tiers on buymeacoffee because of you lol.

the bubblewrap fix is done and tested locally. waiting for the build to finish and ill tag v1.1.6. ill reply here once its live so you can pull the latest.
tchirou • Mar 28, 2026
I have found your buymeacoffee on your site.
Also you should update it as codex works with a chatgpt plus subscription
Finally, as I don’t know what I am talking about as a non coder, there are a bunch of tools to be allowed in the permissions settings of Claude but there are not in the codex permissions. Is it a limitation or could they be implemented ? It asked me 9 times to proceed with node, it was cumbersome to select yes each time on the phone
Many thanks
CoderLuii • Mar 28, 2026
haha claude writes better bug reports than most humans honestly. appreciate the kind words!

yeah i do have a buy me a coffee: https://buymeacoffee.com/CoderLuii

glad its working well for you on mobile, thats exactly the use case i built it for. no laptop needed, just a browser and a server doing the work.
tchirou • Mar 28, 2026
You are welcome, this is Claude who did the heavy lifting of writing the issue 😂
Awesome project !
Do you have a buymeacoffee or what ?
I am currently on the phone messing with Claude code and codex, no more need of a laptop !
CoderLuii • Mar 28, 2026
thanks for the detailed report. this is a clear issue with bubblewrap needing user namespaces that synology kernels restrict.

the fix is straightforward, adding `bubblewrap` to the image and setting the setuid bit so it works without user namespace support:

```dockerfile
RUN apt-get install -y bubblewrap && chmod u+s /usr/bin/bwrap
```

this will land in the next release. on standard linux hosts bwrap still uses namespaces normally so no behavior change there, the setuid bit only kicks in on restricted kernels like synology.

appreciate you including the suggested fix, saved me the research time.

Discovery Source

GitHub Open Source GitHub Open Source

Aggregated via automated community intelligence tracking.

Tech Stack Dependencies

No direct open-source NPM package mentions detected in the product documentation.

Media Tractions & Mentions

No mainstream media stories specifically mentioning this product name have been intercepted yet.

Deep Research & Science

No direct peer-reviewed scientific literature matched with this product's architecture.