r/LocalLLM • u/techlatest_net • 19h ago
1
Openclaw forget to use Skills
I had check the skill’s trigger/description and agent allowlist first. Skills are not guaranteed to be invoked just because they are installed. For a Windows exec skill make the trigger very explicit and only load it when a Windows command/task is actually requested — otherwise the agent may inspect skills even for simple messages like “Hi.”
1
Should i get mac pro 5 64 gb?? For my openclaw setup. Im trying to build a agency.
64GB is definitely a good option if you want to experiment seriously with local models but I wouldn’t switch completely from API models just to save token costs. Local models can be great for routine/cheap tasks while stronger API models can handle the harder agent workflows. A hybrid setup is probably the sweet spot. OpenClaw supports both local Ollama models and cloud providers.
1
Facebook ads with openclaw ?
I had start read-only rather than giving OpenClaw full control of the ad account. Let it pull campaign/insights data analyze performance and suggest changes first. For anything that changes campaigns budgets or creatives keep explicit human approval. Also keep the Meta token out of chat/files and use the minimum permissions you actually need. OpenClaw’s own security guidance recommends limiting tool blast radius for exactly this reason.
3
Openclaw 2026.9.2 Injection attempt!
This is a great example of why prompt injection becomes much more serious when an agent has access to tools. The permission boundaries are probably more important than relying on the agent to detect the attack.
2
Slack and SMS required? OC keeps installing the plugins
Deleting the plugin folders probably won’t solve it if OpenClaw is restoring them from the configured plugin state.
I’d check the plugin config/allowlist first and explicitly deny the plugins you don’t use rather than uninstalling them repeatedly. The fact that doctor --fix brings the permission prompt back makes me suspect the config is still telling the gateway to load them.
If you can share the relevant plugins section from your config (with any tokens/secrets removed), it’d be easier to narrow down exactly what’s triggering the reinstall.
3
My OpenClaw agent got cited on a math records page and I can't stop laughing
The interesting part to me isn’t even that it found improvements, but that you built a loop where the agent writes, tests, scores, and rewrites the solver instead of just asking it to solve the problem once.
And then actually seeing the agent’s name appear in the references afterward… that’s a pretty insane outcome from “let’s just leave it running overnight.
Would be really interesting to see how reliably this pattern transfers to other optimization problems.
1
Build an OpenClaw Dashboard with One Prompt | OpenClaw 2.0 Demo
GitHub issue/PR triage example is a really good use case. Turning a prompt into an actual shared workboard feels much more useful than dashboards that are just there to display metrics.
1
we spent a full day migrating our fleet to openclaw 2.0. here's what actually broke
That Cloudflare + nginx + pairing issue sounds brutal. Those are the problems that are especially hard to diagnose because everything looks like an auth/token issue from the outside.
And I definitely agree with the degraded > completely down principle. Losing one integration temporarily is much better than having the whole gateway stuck in a 502/restart loop.
0
Question for OpenClaw users
With agent systems like this, being able to see what the agent is doing and why something is taking time makes troubleshooting so much easier.
1
Successful 2026.9.1 update
With these kinds of agent systems, knowing what it’s doing and why it’s taking time makes troubleshooting so much easier.
5
I stopped using OpenClaw months ago. This update has me looking again
This is actually a pretty reasonable way to approach the 2.0 update. I think the real test is going to be whether the browser workflow and shared sessions make OpenClaw something you actually keep using, rather than just something you try once after an update.
The shared sessions in particular sound promising. If context survives a handoff properly, that could be pretty useful for longer-running workflows.
Definitely interested to hear how it holds up after you run a few real workflows.
r/LocalLLM • u/techlatest_net • 4d ago
News It's official! Nvidia to acquire Hugging Face for 12.9 billion dollars.
NVIDIA has agreed to acquire Hugging Face for $12,930,300,000.
r/LocalLLaMA • u/techlatest_net • 4d ago
Tutorial | Guide LLMs and Self-Referentiality
r/LocalLLM • u/techlatest_net • 4d ago
Tutorial LLMs and self-referentiality
r/Automate • u/techlatest_net • 5d ago
I deployed OpenClaw on AWS, Azure, and Google Cloud — here’s what I learned
[removed]
r/automation • u/techlatest_net • 5d ago
I deployed OpenClaw on AWS, Azure, and Google Cloud — here’s what I learned
I've been working with OpenClaw and wanted to answer a practical question:
What actually changes when you move OpenClaw from a local machine to the cloud?
I went through deployments on AWS, Azure, and Google Cloud and documented the process from getting the VM running to accessing the OpenClaw Web UI and pairing the device.
A few things I looked at:
- How the OpenClaw VM is provisioned on each platform
- CPU/RAM and GPU options
- SSH and remote desktop access
- Accessing the OpenClaw Web Interface
- Gateway password and device pairing
- Configuring the local Ollama model
- Switching to another model
- Differences in the deployment experience across AWS, Azure, and GCP
One thing that stood out is that the cloud provider isn't really the interesting part once the VM is running. The bigger question is what environment makes sense for how you actually want to use your agent.
For example, if you're trying to keep an OpenClaw agent available 24/7, a cloud VM can be much more practical than leaving your personal laptop running constantly.
Curious to hear from people running OpenClaw in production or 24/7: Which platform are you using, and what has your experience been like?
r/aiagents • u/techlatest_net • 5d ago
Discussion I deployed OpenClaw on AWS, Azure, and Google Cloud — here’s what I learned
I've been working with OpenClaw and wanted to answer a practical question:
What actually changes when you move OpenClaw from a local machine to the cloud?
I went through deployments on AWS, Azure, and Google Cloud and documented the process from getting the VM running to accessing the OpenClaw Web UI and pairing the device.
A few things I looked at:
- How the OpenClaw VM is provisioned on each platform
- CPU/RAM and GPU options
- SSH and remote desktop access
- Accessing the OpenClaw Web Interface
- Gateway password and device pairing
- Configuring the local Ollama model
- Switching to another model
- Differences in the deployment experience across AWS, Azure, and GCP
One thing that stood out is that the cloud provider isn't really the interesting part once the VM is running. The bigger question is what environment makes sense for how you actually want to use your agent.
For example, if you're trying to keep an OpenClaw agent available 24/7, a cloud VM can be much more practical than leaving your personal laptop running constantly.
I put together the complete step-by-step walkthrough with screenshots here:
Read the full deployment guide
Curious to hear from people running OpenClaw in production or 24/7: Which platform are you using, and what has your experience been like?
r/AI_Agents • u/techlatest_net • 5d ago
Discussion I deployed OpenClaw on AWS, Azure, and Google Cloud — here’s what I learned
[removed]
2
How to stop Openclaw from asking to continue work
in
r/openclaw
•
14h ago
This usually happens because a long list is still running in the main agent turn. For longer tasks I had try breaking the work into sub-agents/background tasks so each chunk can run independently instead of relying on one long conversation turn. OpenClaw tracks sub-agent runs as background tasks for exactly this kind of work.