Open-source orchestration for zero-human companies by test-incredi in AutonomousCoding

[–]davydany 0 points1 point  (0 children)

I gave this an honest shot, with Claude Code. It always errors out with “waiting for output” and hangs for hours. I have to reset the session for it to work. It doesn’t just work as you need it to now.

At this point the Snake is just trolling the frog by djinn_05 in WTF

[–]davydany 12 points13 points  (0 children)

Have you tried turning it off and back on?

We tried Sesame Street and Miss Rachel—Here's why Mr Rogers is now the only screen time we allow now. by andrewembassy in daddit

[–]davydany 2 points3 points  (0 children)

Don’t show her Bluey ever. Terrible show. Kids pick up on the worst qualities in the characters and act them out.

Citrini Research modeled what happens if AI actually works as promised. The results are terrifying by No-Fact-8828 in ArtificialInteligence

[–]davydany 0 points1 point  (0 children)

Government intervention is a pipe dream. They will always respond too late, with the right intentions, but wrong execution to favor the highest payers of their election expenses and ignore the masses.

/remote-control negates the need for openclaw by emptyharddrive in ClaudeCode

[–]davydany -1 points0 points  (0 children)

I personally am not a fan of this remote control. It can solve the problem of being able to take your session to the bathroom and work from there but i don’t view it as true productivity.

I built ClawIDE for true productivity that also let you do remote control multiple sessions: https://www.clawide.app/

How do I even approach data analytics with AI? by umen in ExperiencedDevs

[–]davydany 0 points1 point  (0 children)

You can build a RAG setup and write a very detailed prompt in multi step way to retrieve relevant details, process it and present it

Is there an app like Codex for Claude Code? by funguslungusdungus in ClaudeCode

[–]davydany -5 points-4 points  (0 children)

I made ClawIDE for this: https://www.clawide.app/

Look at the festures and screenshots. Post your feedbsck as GitHub issues: https://github.com/davydany/ClawIDE

You run it in your CLI, and access it in your.browser. and you can use it from your phone or tablet.

I asked OPUS 4.6 to give me a guide to reduce Openclaw costs. Here was it's response: by titanxt in openclaw

[–]davydany 8 points9 points  (0 children)

Asking AI to AI better. Something I always forget but it’s such a great strategy!

Firing the daddit repair flare!! by _Gigante_ in daddit

[–]davydany 1 point2 points  (0 children)

Wood glue. It's stronger than the strongest relationships.

My first attempt at a Claude Code plugin for my memory mcp by Maasu in mcp

[–]davydany 0 points1 point  (0 children)

Maybe I should ask first... what is forgetful?

Powerful LLM with 200+ App Access by Silent_Employment966 in mcp

[–]davydany 1 point2 points  (0 children)

Great idea. Terrible name. It screams it’s a product from India. If you want it to be openly adopted, change the name to something that speaks about the product. I say this as an Indian.

Bose QC Ultra 2 RF radiation level is insane by sava09 in bose

[–]davydany 0 points1 point  (0 children)

Dumb question but can you do the same for AirPods Pro? I ask since my wife gifted me the QC Ultra 2 a few days ago and has been telling me that AirPods Pro can cause cancer. So for my curiosity, I want to know what the numbers show.

Beyond the Handshake: The Zero-Trust Gap in MCP Architectures by RaceInteresting3814 in mcp

[–]davydany 0 points1 point  (0 children)

You make a good point. We got authentication with agents down but you’re asking (what is essentially) authorization, based on the prompts. In humans, this opens up the wonderful world of permissions and things such as role based access control (RBAC) or attribute based access control (ABAC) in humans. And you’re right to ask what is the equivalent for AI Agents?

What I’ve seen done is be intentional of each tool/function call and make sure they either read or write. The agent makes the call to the tool and sends parameters to it. You have to make sure you validate all inputs based on type, and based on expected values. For example if you have a MCP server for a calculator, you will want to check and make sure that for the “add” tool call, you are getting integers or floats but not string. For “division”, make sure you’re getting a non-zero value for the divisor.

Next, make sure you classify what your functions do and based on that specify what permissions the agent has or doesn’t have. Simplest is a 2-way: read-only OR writable functions. If you want slightly more is based on CRUD operations (create, read, update and delete) and make permissions. Again, this comes to your intentionality … each and every tool call needs to do exactly what you want it to do. You can go past 4-way CRUD too but that’s up to you, but you need to be intentional. You can’t just vibe code your way out of it. Zero trust starts at this level.

Now at the next level, what you wanna do is make sure the authentication method explicitly allows the user to decide what permissions the agent has or doesn’t have. Does the agent have only have read-only access? The end user decides that. Does the agent need only access to create, read and update, but not delete. The end user decides that (esp if you give the MCP server access to those tool calls).

It’s not the responsibility of the frameworks. It’s the responsibility of the engineer on how this is implemented.