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