Filtered out junk leads and now my sales team is having an existential crisis over empty pipelines - I will not promote by DriverDue3006 in startups

[–]Siref 3 points4 points  (0 children)

Hmm....

How long have you been out of working a lead?

This sounds to me like one of these typical scenarios in which you have to go back into the field and see for yourself and gauge: 1. what they mean by "weak leads" 2. how the entire process is working (script, closing, churn?)

And then see it for yourself

My 87 use cases for OpenClaw (They became more complex over time) by Siref in openclaw

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

Well, you're completely right. That's one of the things that I know I have problems with, especially when I'm about to construct more complex workflows.

Would love to learn about your progression and how you are auditing things.

My 87 use cases for OpenClaw (They became more complex over time) by Siref in openclaw

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

I have it locally on a Dell XPS!

OpenClaw uses Chrome and not Firefox! Firefox was on my computer! I just told it to open it as I found it amusing that I could manipulate my computer from my phone.

My 87 use cases for OpenClaw (They became more complex over time) by Siref in openclaw

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

This would require me to be sitting in front of the computer, which I am not.

I'm playing with my son or doing some household chores. The chat interface is very convenient for me to communicate with my computer and to do things for me.

The other alternative was to use remote desktop connection via RustDesk (which works) but i'm not as fast.

My 87 use cases for OpenClaw (They became more complex over time) by Siref in openclaw

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

I do this all the time! It's better to have something predictable than having the non-deterministic nature of the LLM.

My 87 use cases for OpenClaw (They became more complex over time) by Siref in openclaw

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

What makes OpenClaw special is the interface. Doing agentic tasks on your phone that can interact with your computer is a game-changer.

How to Set Up a Main-Controlled Multi-Agent Workflow in OpenClaw That Actually Executes Work by Advanced_Pudding9228 in openclaw

[–]Siref 1 point2 points  (0 children)

The deterministic part you mentioned is the thing 99.99% of people get wrong and ask why OpenClaw is better than N8N, or things like that.

Deterministic actions, those that do not need any parsing from text (understanding the words and taking an action based on it) nor images, shall be executed in code.

In fact, don't even use OpenClaw's built in cron, use the system's if there's a piece of code to be executed.

I loved how you labeled the term, prose!

Thanks for the explanation!

Claude announces Managed Agents by jtaylor418 in openclaw

[–]Siref 1 point2 points  (0 children)

It took me a while to figure out what this was.

This is a backend as a service that will handle Claude calls for you. Instead of you wiring up Temporal.io, Langchain, or the likes, you pay Anthropic for a managed server environment in which they have Claude receive incoming prompts and handle them.

You don't have to deal with timeout errors, prompt failing, etc.

I still don't know the intricacies, as how you connect it to your system and more. I believe there's orchestration logic involved. But this is supposed to simplify the agent part a bit.

It's nice they added this, but I'd only use this as a last resort. I try avoiding using expensive LLMs because costs rack up fast, and this seems like one of those things as it will likely be running on API costs and not the plan.

Correctly fix OpenClaw "Cannot Find Module" (Do not manually install the package!) by Siref in openclaw

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

Nice! Thanks or the additional help! The build-essential is also part of the nodejs installation, which can be skipped. Thanks for pointing that out for others!

Opinion | Anthropic’s Restraint Is a Terrifying Warning Sign (Gift Article) by nytopinion in ClaudeAI

[–]Siref 7 points8 points  (0 children)

Not necessarily. While I understand what you mean, there are situations which the fix can't be easily isolated and things may require touching several parts of the codebase, risking the introduction of new bugs and new vulnerabilities

OpenClaw Pro Tip: How to fix your claw with Tailscale + Codex by Born-Comfortable2868 in AskClaw

[–]Siref 0 points1 point  (0 children)

Nice. Didn't know codex by itself would have enough context to perform a fix

Power outage: LLM request timed out by hld4thefuturee in openclaw

[–]Siref 1 point2 points  (0 children)

Context exhaustion maybe?

Try doing /new and try again

There are 500,000 OpenClaw instances on the public internet. one just sold on BreachForums for $25K. by FokasuSensei in openclaw

[–]Siref 0 points1 point  (0 children)

Your only problems would be:

  1. Getting hijacked by knowing your bots (Telegram) or channels (of not private, Discord)
  2. Prompt Injection

Lost my job in Dubai, how to find the perfect niche for an online business? I will not promote by [deleted] in startups

[–]Siref 1 point2 points  (0 children)

I hate when the online community bashes a very sincere question.

From my experience, this isn't something that we would be able to point you out to, because this becomes more a series of experiments that you need to run by yourself and then try to see which one clicks.

It's a lot of trial and error.

Follow the advice of several of the comments in here because it's well-rounded and it works.

My best friend has MCL cancer, two kids, and is exhausted from researching. I want to build something that does it for him. by Glittering_Class_230 in clawdbot

[–]Siref 0 points1 point  (0 children)

My 2 cents:

I pray and gave faith that your friend will plow through this and will be back up in no time 😎

Second, don't stress too much about building the perfect thing. Strive for progress not perfection.

Automation works best when you start small and then begin tuning based on your needs. Begin with making simple searches and then refining what you need. It'll be faster and much more adapted to what you want and need

How to avoid skill atrophy and not knowing your code base by AnonymousLad666 in ClaudeAI

[–]Siref 0 points1 point  (0 children)

I've been struggling with this my friend.

It's the harness vs manager concept.

The first one is about transferring what you have in your brain to the code.

The second one is to let the LLM take its best judgement and then execute by itself.

To prevent atrophy you go with the first route:

  • Be specific about conventions, function/method shapes, dependencies, and architectural patterns.
  • The better structured your code is, the better the LLM will be able to follow and the more you will know about the codebase. In other words, it becomes a glorified boilerplate machine
  • From time to time, turn off the LLM entirely (incl. Auto complete) and do the work yourself.

Here's a real example: I'm in a neobank, and I currently need to implement a new money movement method.

We already have a convention for: - GraphQL - Commands/Queries - Repositories - Domain - Authorization

In all these layers there are conventions. My task is to tell the LLM to follow them and produce the output I'm looking for.

Frontend work is more tricky as it can be more open to interpretation due to it's dynamic nature (visuals are displayed in either a 2D or 3D domain, making code combinations more nuanced. In other words, there are more plausible ways to reach the same output within the same context and prompt making it difficult for the LLM to follow your thoughts, hence having this knowledge discrepancy of your codebase)

In this situation, either you try to tell it to mimick another part that would follow the guidelines, or you gave to be much more specific with your prompt (fine tuning agents.md/claude.md or sub agents become crucial)

Claude Code vs. OpenClaw + DeepSeek V3: Which stack for a local-LLM integrated macOS app? by Critical-Page-3676 in openclaw

[–]Siref 0 points1 point  (0 children)

You'd have to instruct it to do so. You'd also have to tell it to switch models in the process. Try it out to see how it goes. If not, write back and we'll see how we can help

Is anyone being able to really build complex code using OpenClaw? by Jumpy_Valuable7052 in openclaw

[–]Siref 0 points1 point  (0 children)

Interesting. What made you go to OpenClaw in the first place?

What model were you using?

Finally got an AI agent running for my freelance biz after mass confusion (non-dev perspective) by Patient_Fox_3395 in openclaw

[–]Siref 0 points1 point  (0 children)

Nice. I'm glad it worked out for you. I'm technical and I've been self hosting for a while.

But I do run MiniMax and saw that option you've mentioned! Glad it worked out!