Activity
Mon
Wed
Fri
Sun
Sep
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
What is this?
Less
More
ZazenCodes Agentic Coding Club

232 members • Free

Clief Notes

45.1k members • Free

AI Automation Society

438.5k members • Free

AI Automation Agency Hub

332.2k members • Free

Chase AI Community

75.3k members • Free

AI Accelerator

20k members • Free

WavyWorld

50.3k members • Free

BowTiedCyber Hoodies

4k members • Free

E-com Growth Partners (LM)

313 members • Free

55 contributions to Clief Notes
How are you backing up your AI workspace?
I spent this week hardening my workspace setup and fell down the backup rabbit hole. Sharing the thought process because I want to know what everyone else is doing. My whole workspace lives under local git. I don't keep it there for code reasons. The win is auditing: every change is signed, human or agent, and I can see exactly what the AI did each session and roll any of it back. Once you let agents write into your folders, that flight recorder stops feeling optional. But git pulls a thread. A live repo can't sit inside OneDrive or iCloud. Sync engines fight the history layer: conflicted copies, placeholder files the agent can't actually read, endless re-upload of thousands of tiny .git objects. So the workspace has to move OUTSIDE the one backup most people already have. Which means backup now needs its own answer. The thing that clicked for me: a backup has to answer two different questions. "Give me my files back" and "give me my history back." Most setups only answer the first. OneDrive only answers the first. My own answer is three layers (external drive snapshot, remotes for the code, encrypted offsite for history) but I'm the nerd who enjoys that. The version I keep kicking around for everyone else: the agent zips the whole workspace, history included, and drops a dated zip into the OneDrive folder you already pay for. Keep the newest two, delete older. Sync can't host a live repo, but it carries a dead zip just fine. So what are you actually doing? Do you run git over a non-code workspace, and was the auditing worth the extra layers? What is your backup story for the folders your agents work in? Has OneDrive or iCloud alone ever actually saved you, or does it just feel safe?
@Jim Tyndall try git bundle --all instead of the zip. Same dead file for sync, but you can clone the history straight back out. Mine's 97MB, weekly to iCloud. Never actually restored from it till I sat down and tried. Does your zip ever get opened?
How would I track the icm's status?
If my folders are Design, Build, Review and Test, what are some ways I could keep track of which stages have been run and their results?
@Eric Jones state file like @Aaron Kruger said. One thing though. Don't let a stage write its own line, mine said Build done for 10 weeks while the job exited clean and wrote nothing. Done meant the code got there, not that the file existed. Next stage checks and writes it now
If two processes need it, it does not go inside either one
Most ICM folders that feel cramped after a month have the same problem. Everything in them is a process, because a process is the only shape the tree knows how to hold. Then you build something that more than one process uses. A video renderer, a formatter, a checker that validates output before it moves on. It has no home, so it goes inside whichever process needed it first, and now the second process reaches sideways into the first one's folder to get at it. Do that three times and the tree stops being a map. The split that fixes it is processes and capabilities, side by side at the top. A process is a job with an owner and an end. A capability is something processes call. The test is one line: if two processes need it, it does not go inside either one. The part that does the work is what each capability publishes. Not its implementation, just a short contract: what it takes in, what it hands back, what it does when the input is wrong. Three lines is usually enough. Processes reference the contract and nothing else. Two things fall out of that for free. You can replace the tool behind a capability without opening a single process file. The renderer becomes something else next year and the contract does not move. And when something breaks you know whose fault it is before you open anything. Output wrong but shaped right, the process is wrong. Output the wrong shape, the capability is wrong. That question used to cost me an afternoon. The tell that you need this: you have a folder whose name is a tool rather than a job. That is a capability wearing a process costume.
@Stone Sagala That last part is the bit most people skip. Restructuring so the map is accurate is easy to say and it is the whole job, because the tree stops being documentation the moment it stops matching what actually calls what. Curious what you used as the cut. When you pulled the shared information out, did you go by who reads it or by who owns it? Those two give you different trees, and I have not settled on which one I trust yet.
@Stone Sagala same call I'd have made. Only thing I'd push on is the little to no context, a shared folder is where processes turn up with different assumptions. Mine carries a 3 line contract, what it takes and what it hands back. Nothing else
ICM for second brain
Hi, anyone building a "second brain" / LLM wiki using ICM? I understand ICM is very good for defined tasks and workflows but what about using AI for researching and keeping general information? Currently I run a second brain with the following folder structure: - Inbox / | | Convert to markdown file with MarkItDown (deleted afterwards) V - Sources/ | | Using custom Wiki-ingest skill to extract important content and group by relevant topic | according to Google's OKF system | V - Wiki/ - Flat directory with derived knowledge from Sources/ An AI agent can navigate Wiki/ easily and efficiently using a separate Routing/ folder containing a INDEX.md file, which described which topics exists and a brief description. Each existing topic gets a <topic>.md file in Routing/ with links to actual pages in Wiki/ with a brief description. Anybody who has a similar or different system? I am curious to learn from all of you!
@Rheoniq Solutions Built something close to this over 4,725 research files, so two things your shape is going to hit. The conversion step deletes the original. MarkItDown loses things you do not miss on the day, tables and figures mostly, and the day you want to re-extract with a better converter the source is gone. Disk is cheaper than that. I would keep the pre-conversion file and treat Sources as derived too. The bigger one is Routing. A topic index with descriptions decides where to look before anything has been read, and that is exactly the step that cannot tell "we do not have this" from "we have something adjacent that does not answer it". Measured on my own question set, the unanswerable questions that mix two topics I did have scored higher than half of the legitimate ones. Any router working off similarity to a description sends those confidently into the nearest topic and hands back a fluent wrong answer. What fixed it was moving the sufficiency call after retrieval, to the model looking at the actual content, instead of leaving it with the step that ran before anyone had read anything. Routing still narrows. It just stopped being allowed to conclude. What sits in your Wiki pages, extracted claims or summaries? That decides which of the two bites you first.
@Rheoniq Solutions ah good glad the copy stuck. Routing picking where to look is fine, the problem is when it also decides the answer is in there. Move that bit to after you've pulled the pages, and let "nothing here" count as a real answer. Honestly though, summaries will get you first. Across 4,725 files the ones with no real answer (questions mixing two topics I did have) kept scoring above half the legit ones. Only went away once it read full text
I automated my monthly LinkedIn content down to 30min end to end
I automated my LinkedIn pipeline so the posts are basically a byproduct of work we were already doing. Here is how it works: - Everything gets captured raw → Meeting transcripts, voice notes, messy half-thoughts: they all get dropped into one inbox folder. Zero formatting, zero cleanup. Capture first, structure later. - An AI agent parses the inbox → It reads every drop and sorts what it finds into people (CRM update) , tasks, decisions, ideas, and content angles. Every single meeting gets asked " is there a LinkedIn idea in here?" ( I have flows for what is considered "content" , aligned with the brand) - I approve every item → The agent proposes, I decide. - Approved ideas land as drafts from a template, each one linked back to the meeting it came from. - The words come from a voice fingerprint → I fed my own transcripts into a profile of how I actually talk, so the drafts sound like me. - Once a month I sit down with the agent for a proper conversation → It brings what the industry published that month and what our own meetings taught us, and together we draft the company posts. - I edit, pick the visuals from a small set of templates, and schedule. The end goal: capture once, decide once, and let structure do the rest. If you want to build this yourself, start with the inbox. One folder where everything raw lands. Everything else grows from there.
@Chani Galgut The voice fingerprint is the piece I would watch, and not because it will fail. It will work, and that is the problem: it will make you sound like you talk, and nobody writes like they talk. Speech carries hedges, restarts and the little connectives that hold a room together, and every one of them reads as filler on a page. If the drafts are landing slightly loose, that is where it comes from rather than from the model. Cheap fix that does not touch the pipeline: build the fingerprint from two sources instead of one. Transcripts for what you say, your own published posts for how you write. They are different profiles and only one of them belongs in a draft. @Don Roy the feedback loop is the right instinct and there is a trap in it: an edit that fixes a fact and an edit that changes voice look identical in a diff. Feed both back through the same loop and the profile drifts toward whatever you happened to be correcting that month. Worth tagging which kind an edit was before it goes back in, even roughly.
1-10 of 55
Nicolas Patron Uriburu
4
11 points to level up
@nicolas-patron-uriburu-3387
Global Business Manager / AI Growth Partner Consultant

Online now
Joined Mar 9, 2026
Buenos Aires, Argentina
Powered by