Comment by theturtletalks

Comment by theturtletalks 2 days ago

3 replies

I’m a big fan of Peter’s projects. I use Vibetunnel everyday to code from my phone (I built a custom frontend suited to my needs). I know I can SSH into my laptop but this is much better because handoff is much cleaner. And it works using Tailscale so it is secure and not exposed to the internet.

His other projects like CodexBar and Oracle are great too. I love diving into his code to learn more about how those are built.

OpenClaw is something I don’t quite understand. I’m not sure what it can do that you can’t do right off the bat with Claude Code and other terminal agents. Long term memory is one, but to me that pollutes the context. Even if an LLM has 200K or 1M context, I always notice degradation after 100K. Putting in a heavy chunk for memory will make the agent worse at simple tasks.

One thing I did learn was that OpenClaw uses Pi under the hood. Pi is yet another terminal agent like ClaudeCode but it seems simple and lightweight. It’s actually the only agent I could get Gemini 3 Flash and Pro to consistently use tools with without going into loops.

lyime 2 days ago

Read about hearbeat, that makes openclaw different than claude code.

  • theturtletalks 2 days ago

    Heartbeat is very interesting, it's how OpenClaw keeps a session going and can go for hours on end. It seems to be powered by a cron that runs every 30 min or is triggered when a job is done.

    I have a CRUD application hosted online that is basically a todo application with what features we want to build next for each application. Could I not just have a local cron that calls Pi or CC and ask it to check the todos and get the same functionality as Heartbeat?

    • dpoloncsak 2 days ago

      I mean, yeah. I don't think OpenClaw is doing anything impossible to replicate. It just provides easy access to pretty novel features with a pretty simple setup, honestly. With just the ability to grab some API keys and follow a TUI, you can spin up an instance fast