Live data from Hacker News

Ask HN: Who is using OpenClaw?

news.ycombinator.com

41–50 of 428 posts

Re: Ask HN: Who is using OpenClaw?

#41
I’m a professional maintenance gardener and I have used NanoClaw running on my Mac to do the following:

Schedule jobs on my job management tool (I vibed it) using a custom MCP. I’ll ask it questions like “what jobs are on today” etc. start the job, complete the job etc.

It will watch Gmail using a MCP for work orders from local real estate agents, where it will schedule quote visits.

After the quote visit I add the photos to telegram (the channel I happen to use) where I then ask it to analyse the photos.

Claude in NanoClaw does a good job of figuring out what needs to be done, but it doesn’t always get it quite right, so I use intake-api which is a “session inbox” [1] that generates a form and uploads it to Cloudflare along with the images and puts a link to the form in the chat so I can make adjustments to the annotated images of the property. After I’m happy, I click submit.

I’ll then go back to the telegram channel and let it know I have submitted the form. Claude will then pull the JSON payload back down into the session and integrate it into the quote.

It will ask me questions about what the job will cost etc, and anything else it thinks it needs to know.

It will then generate a full PDF proposal using Latex between 14 and 32 pages long depending on how many photos were taken.

There are sections with terms and conditions as well as a bit of sales guff etc. as well as quite a nice cover page with their contact details and mine etc.

When I’m happy I’ll ask it to create a draft email in Gmail with the attached pdf proposal.

I’ll review it quickly and then send it.

I also have the Xero MCP setup so I can ask it to create invoices and contacts etc.

I do all of this when getting in and out of my truck.

It’s freed up my home life to spend more time with my children and my Mrs.

There is alot of scope for small business owners who need these sorts of agentic assistant tasks and with my Agentic CRM I’m see a glimpse of the future for guys like me I think.

Intake API:

https://github.com/mjsweet/intake-api

Re: Ask HN: Who is using OpenClaw?

#42

I see a decent number of people on social media who won't stop posting about how great it is and how much of a moron every person is for not using it. Oddly enough, rarely, if ever do they say what specific things they're using it for and how it's saving them time. I remain interested in it, however, I've still awaiting an actual use case that can't be handled by some other tool/service that does it better/faster.

Could this be a bit of a Dropbox moment?

What it adds is making this kind of thing easy for normies, even if it's neither the best way to do things nor very difficult for hobbyists to do using existing tech.

Maybe it's the wrong approach, maybe what people really want is more deterministic software that they use agents to help write. But this kind of thing can maybe serve as a prototyping phase for that. Perhaps in the future, people's assistants will offer to "solidify" frequently used workflows into software that minimizes or eliminates the LLM's role. For existing Claude Code users, its like "please just skip to that step! its cheaper and more secure and more reliable". But to many people who are interested in automation, perhaps that seems out of reach as a first step.

Re: Ask HN: Who is using OpenClaw?

#44
post #15

I've been playing around with it. The only two real use cases I have for it for now are entertaining me on long flights where I have messaging-only Wi-Fi and sending me a personalized "morning brief". I suppose it could be a lot more useful if I actually gave it access to any of my personal data (it lives in a heavily resource-limited container), but there's absolutely no way I'm letting that hot mess of a walking, t…

I've been working on a framework since the end of January or so. I'm on my 7th draft. As I've gone along, each draft gets markedly smaller. The overlaps between what I'm building and openclaw are significant, but I've realized the elements that make up the system are distinct, small, and modular (by design).

There are only a few primitives:

1. session history

1a. context map + rendered context map (think of a drive partitioning scheme, but for context -- you can specify what goes into each block of context and this gets built before being sent out for inference).

2. agent definition / runtime

3. workflow definition / runtime

4. workflow history

5. runtime history (for all the stuff session and workflow history fail to capture because they are at a lower level in the stack)

That's it. Everything else builds on top of these primitives, including

- memory (a new context block that you add to a context map)

- tool usage (which is a set of hooks on inference return and can optionally send the output straight back for inference -- this is a special case inside the inference loop and so just lives there)

- anything to do with agent operating environment (this is an extension of workflows)

- anything to do with governance/provenance/security (this is an extension of either workflows and/or agent operating environment... I haven't nailed this down yet).

I suppose I should say something about how agents and workflows work together. I've broken up 'what to do' and 'how to think' into the two primitives of 'workflow' and 'agent' respectively. An agent's context map will have a section for system prompt and cognitive prompt, and an agent can 'bind' to a workflow. When bound, the agent has an additional field in their context map that spells out the workflow state the agent is in, the available tools, and state exit criteria. Ideally an agent can bind/unbind from a workflow at will, which means long-running workflows are durable beyond just agent activity. There's some nuance here in how session history from a workflow is stored, and I haven't figured that out yet.

Generally, the idea of a workflow allows you to do things like scheduled tasks, user UI, connectors to a variety of comms interfaces, tasks requiring specific outputs, etc. The primitive lays the foundation for a huge chunk of functionality that openclaw and others expose.

It's been fun reasoning through this, and I'll admit that I've had an awful lot of FOMO in the mean time, as I watch so many other harnesses come online. The majority of them look polished, and are well marketed (as far as AI hype marketing goes). But I've managed to stay the course so far.

I hope you find your ideal fit. These tools have the potential to be very powerful if we can manage to build them well enough.

Re: Ask HN: Who is using OpenClaw?

#45
I've used claude cowork a bit, which I believe is pretty similar to claw.

Can't think of much use for it at the moment but I have it just read and summarise my email, calendar events and git repo in a daily briefing format, it only has readonly access to both, as I dont trust it to do stuff for me or on my behalf.

The briefing thing is nice though not super useful.

Re: Ask HN: Who is using OpenClaw?

#46
post #24

Earlier quoted context omitted.

Im curious can't your use case be done with Github self hosted runner ?

Or, like, a cron job.

>scripting and automation

I cringe at my old boss’s handiwork in Claude and power automate sometimes and go “you know I could just do that in a script and a cron job and it would be completely bullet proof, right?”

Then he just shoots back with, “yeah but now I don’t have to ask you.”

This is my kludge, there are many others like it but this one is mine.

Re: Ask HN: Who is using OpenClaw?

#47
Nope. I spun up a few Openclaws & a Hermes but never enjoyed the end results. Now I just use a telegram plugin for Codex. And run Codex on a miniPC I found in the trash. A $20/mo Codex sub gets me a GPT-5.4 agent that can make its own Automations (cron jobs), search the web, and modify the files and apps on the NAS drive I share. Simple and cheap works for me.

Re: Ask HN: Who is using OpenClaw?

#49
post #18

I see a decent number of people on social media who won't stop posting about how great it is and how much of a moron every person is for not using it. Oddly enough, rarely, if ever do they say what specific things they're using it for and how it's saving them time. I remain interested in it, however, I've still awaiting an actual use case that can't be handled by some other tool/service that does it better/faster.

Are these people crypto enthusiasts by any chance?

They were, and then blockchain, and then NFT.

Re: Ask HN: Who is using OpenClaw?

#50

I have it installed on an extra macbook pro that I had available. I'm really only using it at the moment for one use case: Nightly, I have OpenClaw pull the latest changes from a private GitHub repo that is my Obsidian notes vault. It then looks to see which new notes have been added and then runs a "create flashcard" skill to extract and author useful flashcards for spaced-repetition practice. I then gave it access…

Why not use Claude one single time to create a service that does this? I have this same question with 90% of the 'simple' use cases I see for these task runners, it always seems more efficient (not to mention consistent) to have it generate the service.
Post reply on HN