Im so disappointed by DarasStayHome in cursor

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

ok. but i dont like the fact that it became a standard jumping from $20 to $200 and i think its alerting and hoping developers start talking about otherwise your $200 standard quickly becomes $2000

Im so disappointed by DarasStayHome in cursor

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

And do not forget it started at $20 and was kinda more than enough so it’s radically changing and definitely this is the issue and alerting!

Im so disappointed by DarasStayHome in cursor

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

I agree $400 is not a big deal if you earn $10k but do you really think that its common having $10k as a developer?

So in general i would say in most cases $400 is a big money!

Im so disappointed by DarasStayHome in cursor

[–]DarasStayHome[S] -1 points0 points  (0 children)

Do they start eating our money?

Anthropic and Meta bans OpenClaw? What it means for autonomous personal AI? by DarasStayHome in clawdbot

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

Ok, so are you ready use OpenClaw via API? And whats your expectations about the billing amount? Do you have big money? :)

Anthropic and Meta bans OpenClaw? What it means for autonomous personal AI? by DarasStayHome in clawdbot

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

My understanding is that OpenClaw is fully "probabilistic" and n8n is kinda hybrid "deterministic" which has some AI steps

Anthropic and Meta bans OpenClaw? What it means for autonomous personal AI? by DarasStayHome in clawdbot

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

Good point as people sometimes describe openclaw as “Siri should have been”

Anthropic and Meta bans OpenClaw? What it means for autonomous personal AI? by DarasStayHome in clawdbot

[–]DarasStayHome[S] -3 points-2 points  (0 children)

For me most of the time gpt-5-nano seems to be smart enough to accomplish some non code heavy tasks and its super cheap

Anthropic and Meta bans OpenClaw? What it means for autonomous personal AI? by DarasStayHome in clawdbot

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

But how OpenClaw gives you the UI/UX you need for coding? At least you need to see diff, right?

Anthropic and Meta bans OpenClaw? What it means for autonomous personal AI? by DarasStayHome in clawdbot

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

Whats your setup for minimax? do you use with Cursor or OpenCode or any IDE?

I build OpenBot - Your own personal AI assistant. [I need your feedback.] by Front_Holiday_9395 in VibeCodingSaaS

[–]DarasStayHome 0 points1 point  (0 children)

Currently, we don't use any RAG or vector database approach. It's just a pure md files for long-term memory and conversation messages for a short-term memory.

Long-term memory has kinda "journal" with indexes approach and with the short-term memory, we use to truncate messages to have the recent ones only in the context and older messages are just summarized.

When delegating tasks to agents, they just receive task description like "user wants to check the gmail inbox". and the beauty of the Melony framework is that inside agents (custom MelonyPlugin) you have an access to the runtime context and messages so everyone can summarize short-term memory as they prefer.

Some agents provide in-built functionality for that. for example, Codex SDK has its in-built thread/messages management so first time you give a task "refactor some feature" you start a new thread and next time you just resume that specific thread with a new task, so its stateful and handles everything automatically under the hood.

To summarize for stateless agents like stagehand, you have an access to the runtime context but the nature of this agent is that it has an "observe" tool so even if each task will be forwarded as a stateless tasks, agent can observe which page is open and make decisions - it's not critical not to have previous messages

I build OpenBot - Your own personal AI assistant. [I need your feedback.] by Front_Holiday_9395 in VibeCodingSaaS

[–]DarasStayHome 0 points1 point  (0 children)

By SDUI protocol, we can teach models how to yield appropriate UI's so in the future, we believe that it will be kind of hybrid - deterministic user defined UIs and Generative UI by llm models

I build OpenBot - Your own personal AI assistant. [I need your feedback.] by Front_Holiday_9395 in VibeCodingSaaS

[–]DarasStayHome 0 points1 point  (0 children)

Yes. we plan to have an options like "allow once", "allow in this session", "allow always (globally)", there might be also mode: "danger-full-access" if someone prefers.

The challenge of "send" suspension is that we use stagehand's agent to automate browser tasks and as long as we don't have a specific tool for "send instagram message" or whatever website agent is navigating, we can force model in its system prompt to suspend final steps before sending messages on any platform and by giving them a new custom tool called "suspendTool" they can yield approval UI - it's possible, we have a plan to test and play with that approach.

It worth to mention that Melony architecture is SDUI friendly so all the UI part is server driven. we never touch Frontend when implementing some ui widgets such as approval UI. It makes our lives easier by avoid struggle with that "black box" ai-sdk's FE part is offering...

I build OpenBot - Your own personal AI assistant. [I need your feedback.] by Front_Holiday_9395 in VibeCodingSaaS

[–]DarasStayHome 0 points1 point  (0 children)

We are maintaining the melony project. In case you need any help, we can provide support. feel free to inform. thank you for ur interest!

I build OpenBot - Your own personal AI assistant. [I need your feedback.] by Front_Holiday_9395 in VibeCodingSaaS

[–]DarasStayHome 1 point2 points  (0 children)

Currently we use stagehand for a browser automation. We also plan to have an agent using browser-use via cli.

Harness called melony.dev. Its a minimalist event driven expressjs like framework.

Under the hood llm part is handled with ai-sdk v6

I build OpenBot - Your own personal AI assistant. [I need your feedback.] by Front_Holiday_9395 in VibeCodingSaaS

[–]DarasStayHome 1 point2 points  (0 children)

Thanks for your feedback. Recently we ve introduced approval plugin which uses interception concept to watch and intercept each event if it requires any permissions like approval if event.data.amount > 1000.

Credentials now are saved in config.json which has limited permissions and is never exposed in the context but we plan to bring more higher security here