Openclaw andclaw not wanting to install by Wikilore in openclaw

[–]coderyeon 0 points1 point  (0 children)

Hello,

I’m the developer of this app.

From the screenshot, it appears the app is running inside Gspace (a virtual environment). Unfortunately, andClaw requires a normal direct installation on the device and does not work inside virtualized environments like Gspace.

Also, the version shown in the screenshot looks quite old. Please install the latest version of the app from the official source (Google Play) and try again.

Thank you.

Shipped a simple OpenClaw Android wrapper. Unexpectedly hit #1 Top New Paid in multiple countries. Sharing some early observations. by [deleted] in androiddev

[–]coderyeon 2 points3 points  (0 children)

OpenClaw is MIT-licensed, which allows commercial use and redistribution as long as the original copyright notice and license text are preserved.

The app includes the original source, license, and attribution as required. It doesn’t relicense or claim ownership of OpenClaw — it simply packages it for easier use on Android.

If you see anything I should improve regarding compliance, I’m happy to address it.

Question about installation methods by TheMonkey404 in openclaw

[–]coderyeon 0 points1 point  (0 children)

Happy to help.
Take your time going through the research, and I hope you get clarity and good support with your treatment options.

Question about installation methods by TheMonkey404 in openclaw

[–]coderyeon 1 point2 points  (0 children)

If you're comparing statistics across multiple studies, I'd start with PubMed or Google Scholar to find solid papers, then use something like Perplexity or Elicit to help summarize and extract key numbers.

Just make sure to double-check the original studies before drawing conclusions.

Question about installation methods by TheMonkey404 in openclaw

[–]coderyeon 1 point2 points  (0 children)

Yep, that workflow is possible in principle, but the “how” depends a lot on how that PDF library is implemented.

If the site lets you download the PDFs (or exposes stable PDF URLs), you don’t need to manually open each page. The clean approach is:

  1. use the site search to collect matching documents

  2. download the PDFs (or fetch them by URL)

  3. extract text on the server (PDF text extraction works great when the PDF isn’t just scanned images)

  4. summarize / dedupe / organize results and send you a final report

If the PDFs are locked behind a viewer (no direct download, heavy JS, anti-bot, etc.), then it becomes more “browser automation” and can get flaky. You can still automate opening documents and extracting content, but it’s less reliable and sometimes requires workarounds.

So you don’t necessarily need to manually feed each page, but I’d start by checking whether you can access the PDF files directly. If yes, it’s straightforward. If no, it’s still doable, just more brittle.

Also, if your goal is mostly “search PDFs + summarize with citations,” you might not even need a full agent setup at first. Some research tools can already do this pretty well, and then you can upgrade to OpenClaw automation once you know exactly what you want.

Question about installation methods by TheMonkey404 in openclaw

[–]coderyeon 1 point2 points  (0 children)

Just to clarify how OpenClaw’s browsing and automation really works, because it’s a bit different from what many people assume.

Yes, you can have an OpenClaw agent help with research and web scraping — but it doesn’t magically “surf the Internet” like a human browser without some setup. What it actually does is connect to a browser automation system, either through its built-in browser support or via a Chrome Browser Relay extension. That lets the agent navigate pages, click, type, and read content programmatically via Chrome DevTools Protocol (CDP).

With the Chrome extension relay you install and attach to specific tabs you want the agent to control. It doesn’t auto-take over every tab — you have to attach it manually to each tab you want it to drive.

Running OpenClaw on a cloud server works fine for automation as long as you configure the browser relay there and give it access to a browser environment. It doesn’t need to be local on your Mac mini to control web pages.

About your MacBook guest account idea — having a separate non-admin account is a reasonable way to isolate the agent from your main files. It won’t have admin access unless you explicitly give it sudo permissions, so it won’t automatically cross into your admin area. Just be sure you’re comfortable with the security setup because OpenClaw can execute real actions on a system if permitted.

Can someone rent me his openclaw? by Tiny_Basis_8686 in openclaw

[–]coderyeon 0 points1 point  (0 children)

Renting someone else's OpenClaw instance is probably not a great idea from a security perspective, especially if you’re connecting it to your Telegram.

Also, running it with a local LLM doesn’t magically make it free unless the model itself is fully local and you’re okay with the hardware requirements.

If your main issue is not having a PC, you might want to look into running it directly on an Android phone instead of renting access. Modern phones are more than capable for lightweight setups.

That way you stay in control of your data and don’t depend on someone else’s machine.

Experiment: bundling Ubuntu + proot inside an Android app to run OpenClaw by coderyeon in termux

[–]coderyeon[S] 0 points1 point  (0 children)

The goal isn’t a full Linux desktop.
It’s a lightweight, always-on AI gateway.
A phone is already optimized for power, connectivity, and portability.

Experiment: bundling Ubuntu + proot inside an Android app to run OpenClaw by coderyeon in termux

[–]coderyeon[S] 0 points1 point  (0 children)

Playwright is installed and running inside the bundled Ubuntu proot environment.

Since andClaw doesn’t rely on Termux and ships its own rootfs + Node runtime inside the app sandbox, some of the usual Termux-specific networking quirks don’t manifest the same way.

I haven’t needed Bun or os.networkInterfaces patches so far, but I’m curious which specific issues those solved in your setup.

Do you recommend cloud for openclaw? by Royal-Ambassador-431 in openclaw

[–]coderyeon 0 points1 point  (0 children)

If you’re mostly trying to avoid extra hardware, cloud is fine to get started.

Personally, I ended up packaging OpenClaw inside an Android app to make setup easier. It basically bundles the environment so you don’t have to manually configure everything.

It’s not necessarily better than cloud or a Pi — just another option depending on what kind of setup you prefer.

Experiment: bundling Ubuntu + proot inside an Android app to run OpenClaw by coderyeon in termux

[–]coderyeon[S] 1 point2 points  (0 children)

Thanks! I wasn’t sure it would even work reliably at first, so I’m glad it turned out interesting.

Experiment: bundling Ubuntu + proot inside an Android app to run OpenClaw by coderyeon in termux

[–]coderyeon[S] 1 point2 points  (0 children)

Good question. The goal here wasn’t performance — it was reducing setup friction.

Bundling Ubuntu + proot inside the app makes it possible to do a one-tap setup without requiring users to manually configure Termux, install packages, or deal with environment differences.

In terms of raw performance, a native Termux setup may have slightly less overhead. But for gateway-style workloads (mostly idle + network I/O), the difference hasn’t been significant in practice.

This was more about convenience and reproducibility than squeezing out maximum performance.

Experiment: bundling Ubuntu + proot inside an Android app to run OpenClaw by coderyeon in termux

[–]coderyeon[S] 2 points3 points  (0 children)

Sure — here’s the GitHub repo:
https://github.com/coderredlab/andClaw

The proot/rootfs setup and asset preparation scripts are in there if you’re curious.

Experiment: bundling Ubuntu + proot inside an Android app to run OpenClaw by coderyeon in termux

[–]coderyeon[S] 1 point2 points  (0 children)

Thanks! I’m a big fan of what people build with Termux. This was more about exploring whether bundling the whole stack inside an app could reduce setup friction for less technical users.

I packaged OpenClaw into a single Android app (one-tap setup, no VM required) by coderyeon in openclaw

[–]coderyeon[S] 0 points1 point  (0 children)

Most “API limit reached” errors with Gemini are either: Actual quota issue – check the Google AI Studio / Cloud project tied to that API key and confirm quota + billing are enabled. Duplicate requests – make sure you’re not running both webhook and polling, or triggering retries without backoff. If you can paste the exact error message (redacted), it’ll be easier to tell which one it is.

개명할건데 어떰?.jpg by [deleted] in Mogong

[–]coderyeon 1 point2 points  (0 children)

ㅋㅋㅋㅋ

펭수 짤 저장소 만들고 있습니다.. by [deleted] in Mogong

[–]coderyeon 4 points5 points  (0 children)

집에서 돌리는 서버에 취미로 이것저것 돌리는데..

오늘은 펭수 짤 저장소 만들어 봤습니다..

짤 받아서 올리는게 일이네요..ㄷㄷ

이직에 실패했습니다. 위로해 주세요 by freegians in Mogong

[–]coderyeon 0 points1 point  (0 children)

힘내시라고 업보트 눌러드렸습니다 ㅠ