u/Ready_Evidence3859

How are you guys syncing your AI Agent "memory" across devices?

I’ve been using AI Agents like OpenClaw and Claude Code a lot lately, and I’ve run into a pretty big roadblock: the lack of persistence. All the personalized stuff—your custom prompts, skill configs, and workflow habits—is basically stuck on your local machine. Every time I switch to a different computer, the AI feels like it’s back to "factory settings." It’s such a jarring experience. 
I’ve seen some people trying to solve this by backing up everything to the cloud (like Terabox-storage) and then restoring it when they switch devices. It’s like giving the AI a "stateful system" instead of treating it like a one-off tool.With just a simple setting, such as 'Automatic backup every night at 8 PM,' your OpenClaw will periodically sync stored files, configuration parameters, and even the entire project context to Baidu Cloud, allowing you to seamlessly continue working on another device. 
So, I’m curious how you all handle this: 
Are you just sticking to one machine or manually moving files? 
Anyone built an automated backup/sync workflow yet? 
Or is there already a way to do "version-controlled AI memory" that I haven't heard of? 
It feels like we’re still in the early days for this. The AI itself is incredibly powerful, but the whole "long-term memory and migration" part still feels super fragile. 🤔

reddit.com
u/Ready_Evidence3859 — 7 hours ago

Why does my stepdad treat me like I shouldn't be existing in his world?

I didn't know this would be a problem between my step dad and me, because this wasn't an issue with my dad.

So, My mom remarried after she separated from dad. Sincerely, I almost hated my mom, but I felt she must had have a good reason for that and it somehow made me live better.

Her new husband is in California, so we moved there, everything was going smoothly until I tried to get close to him.

Usually, i take my dad's parkas, whenever i want to, so I didn't think much of "boundaries" at first but then I noticed my stepdad doesn't even let me go near his room. The last time, I took one of the men's parkas from his room outside, he yanked it off me.

The way he treats mom is way different from how he treats me. It feels like he never wants to see me. Leaves me wondering, if he loves mom, why doesn't he like me?

….The other time, i watched them from the dining table, while they were scrolling through stuff online, like alibaba and eBay, comparing prices. It was close to my birthday, so i thought maybe it's something for me. But later, I figured it was just bags for mom and a few clothes. I feel so left out,

It's like they're living in their own little happy world where i don't exist. And somehow I blame my mom. If she wasn't going to pay attention to things like how her husband treats me, she should have left me with my dad.

I'm confused, i don't want to hurt my mom, but I feel so bad being treated this way. How do I handle this?

reddit.com
u/Ready_Evidence3859 — 3 days ago

Tips - How to build an AI agent to automate your emails

I have been playing around with email automation lately and wanted to share some ways to get this running: one where you can still do everything yourself and one way where you just want it running without the overhead.

Option 1: n8n

  1. Gmail trigger. Add a node for gmail trigger and watch for new incoming emails. During configuration disable simplified view in your agent gets the email body instead of a shortened email.
  2. Extract the email body content. Add a "Set" node that gets the email body text and thread ID variables. This just gives us those two variables easy to reference later in other "Set" nodes instead of having to copy/paste.
  3. Classify the email. Add an OpenAI node (GPT-4o mini) work well here and prompt the OpenAI to read the email and return the simple true/false, does this email represent a customer support (refund request, order status, etc.) or not? Tell it to respond in JSON format to simplify it for the next step to read properly.
  4. Branch on Logic. Add a Switch node. If the classification was true, route to the AI agent. If false, immediately route to a notification.
  5. Agent and knowledge base. This is the center of the entire package. The AI agent requires two things: a Pinecone vector store with your FAQs and company policies for it to look up the right answer, and one Gmail action to create a draft reply in the original email chain. It reads the email, queries your knowledge base and writes a draft. It's all reviewed prior to sending.
  6. Notifications. Add Telegram node to the end of the flow. Firing on new Draft added (Draft ready for your review) and non-support email (New email, not support-related).
  7. Test it. Send yourself a test email looking like a support request and observe the workflow: see if the draft lands in Gmail, and if the telegram message goes through.

Setup time total is a few hours in some instances (but mainly in the OAuth connections and putting your knowledge base into Pinecone).

Option 2: ZooClaw

And if setting up OAuth flows and using Pinecone, OpenAI keys sounds like more than you want to go, ZooClaw can go through the same workflow over a chat interface w/o all the node building.

Setup time is just one-time Google OAuth authorization so ZooClaw can access your Gmail, roughly 5 minutes:

  1. Go to Google Cloud Console and create a project/enable the Gmail API.
  2. On APIs 1and1 Services -> Credentials create an OAuth 2.0 Client ID (Desktop App type) - Download client_secret.json.
  3. Upload that file to ZooClaw. It runs the authorization command then offers you a url/link in your browser to click approve.

Then you just tell your ZooClaw assistant what you need, like: "Read my inbox every 30 mins. If it's a customer support email: Draft a reply from my FAQ doc, let me know on Telegram when done. Otherwise just a quick heads up is enough."

ZooClaw figures out the rest, reads your inbox, classifies the email, reads your knowledge documents, creates a draft reply, and sends the notification.

Both ways work fine. n8n allows you to see an overview of the whole workflow. Every step is explicit and auditable which is helpful if you are giving this to a team or need to debug to an issue. ZooClaw is faster to set up, you can see each step the assistant performs in real time and you can adjust it via conversation instead of having to go back into a flow editor.

reddit.com
u/Ready_Evidence3859 — 3 days ago

LWIR camera comparisons for industrial use

I'm a plant manager responsible for inspections and monitoring - new at this particular company. They've always used dinky thermal imaging handhelds I could get on amazon and I want to upgrade. So far, I see Flir, LightPath, Fluke and HIKMICRO. We have the budget. Would appreciate any REAL experience with any of these or others to help me narrow it down. 

reddit.com
u/Ready_Evidence3859 — 4 days ago