Activity
Mon
Wed
Fri
Sun
Sep
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
What is this?
Less
More
Build Market Close

348 members • Free

Clief Notes

46.2k members • Free

252 contributions to Clief Notes
Don’t burn your three free shots on “hi.”
The feed is a terrible index. Clief Notes AI is the librarian for it — not a second Claude, not a folder-builder, not a replacement for a Check-In. Free is three prompts. Total. DMs and the sidebar both count. After that you’re back in the classroom, which is still where the work lives. I wrote the map so you don’t spend shot one on “what can you do?” What’s in it - What this agent is (and what it will never do) - Chromium install, Student portal, same email as Skool - Three Getting Started shots and three Foundation shots you can paste - How to talk to it with the five-part prompt so a sloppy ask isn’t 33% of your budget Do this now 1. Classroom → Getting Started → watch Navigating The Course (2:51) 2. Open How to Access your Clief Notes Agent & Roadmap and install 3. Read the guide: Comprehensive Guide to Clief Notes AI https://www.skool.com/cliefnotes/classroom/c7f102c7?md=144082eaf875446eba04fa1db90fcc90 4. One DM. Then open Foundation 1.1. Check the box. The agent is a map. Your folder is the architecture. If the agent writes the system, you didn’t learn the system. Paste this if you only have one shot left: I just joined as [beginner / daily AI user / developer]. Give me the three-step start, the first Foundation lesson title, and what “done” looks like. Do not invent a custom curriculum. If three shots already feel tight, that’s the product working. Foundation stays free. Paid keeps the librarian on.
Don’t burn your three free shots on “hi.”
3 likes • 19h
[attachment]
Obsidian Vault = Persistent Memory
Has anyone tried to apply the folder structure learned here into their obsidian vault? Clief folder architecture really helped with retrieval and how knowledge is linked, this new meta really documents my current understanding on various subjects very well, in claude code sessions i don't have to explain as much context as before because claude code "knows" what i mean even better because of obsidian vault, but i realized that there needs to be a naming convention that works with clief folder architecture to make it truly optimized Anyone have any suggestions as to how to set up the naming convention?
1 like • 20h
Interesting. I am now jumping in to research :)
1 like • 20h
@John Davis I am well. This is a great community.
I Used AI to Build an Animation About Building Animations
Finished Playbooks 1.1. I decided to use the "Script → Spec → Build → Render" workflow to try and explain the workflow itself. The biggest thing for me was realizing the code really doesn’t come first. Once I had the script and visual spec figured out, the build became way easier to direct and refine. The hardest part for me was trying to make too much happen at once visually, especially in the refine section. Once I started separating each idea and letting the visuals happen in sequence, it got a lot cleaner. I ended up taking the Remotion render into CapCut and finishing it with the voiceover, music, sound design, pacing, and subtitles. This was my first real run through the whole workflow, and I definitely understand it differently now that I’ve actually built something with it. Which part of this workflow has been, or looks like it’ll be, the hardest for you?
Poll
2 members have voted
I Used AI to Build an Animation About Building Animations
1 like • 23h
very nice!
Further To Last
Hey Clief Notes fam! 👋 I'm working my way through the new AI system and seeing what it can do. I've already posted about myself here when I first joined the group but I can most certainly add new info here. Once upon a time I knew nothing about ICM, now I have 3 whole systems that I've built, and while they may not be perfect (yet) they work and every day they get better. The best part though, is that I'm now able to show others how it works and they're benefitting too. I just asked the AI how to create a github repo (and it gave me some pretty clear instructions) and that will be my next mission. Onward and upward.
0 likes • 23h
you can set it that it will even organize and publish it for you
How I built a Real Estate Git Inspired by a Fellow Member
@Eugene Seva and I jumped on a video meet after I commented on one of his posts. He shared the GitHub repo of his work with me. A cool build of a Japanese digital business card for realtors. QR code, AI chat, mortgage calculator. Live site, paying customers, 140 merged pull requests, still shipping daily. Good build. I spent the day trying to work out the Western version. Never got there. What I got instead was better. That product works because the company behind it is a Tokyo brokerage sitting on 4.5 million sales records and 6,000 new listings a day. The app is a skin over a filing cabinet they already owned. Take the data away and it's a link-in-bio page with a chatbot attached. In the US that data is MLS-licensed per organization, and you need a contract with each one even going through an aggregator. That's a funded-company problem, not a weekend one. So I went looking for something that runs on nothing licensed. Six shapes, six walls. Business cards lose to a free tier with 150,000 reviews. Valuation needs an AVM license. Chat and nurture is held by people charging $395 a month. The fifth one nearly got me. Since 2024, buyers sign a written agreement about agent compensation before touring a house, and everyone is confused by it. No tool exists. I had the whole thing designed. Then I checked whether a real estate agent is permitted to explain a contract to a client. They are not. That's unauthorized practice of law, in all fifty states, and it's the agent handing the document over who carries the exposure. Insurers started writing generative-AI exclusions in January, so it wouldn't be covered either. Here's the part you'll care about. The constraint ended up as the folder structure. "Never produce client-addressed output" is a rule, and a rule sitting in rules.md is a suggestion. So it's also a check script. It reads every skill file, and if a client salutation turns up in one, it exits 1. Same for listing data. Each skill declares its inputs in a table, and the check fails if any input is a source we can't legally touch.
0 likes • 2d
@Alexander Paschka Thanks mate. Look forward to any feedback 🙂
0 likes • 1d
@Alexander Paschka You ran it before you believed it. Almost nobody does it! Thank you! On your fix, I ran it before answering. All five non-exempt sections, CHECK C's term list, across the five skills. One hit: seller-compensation-decision.md, Method: "off-MLS, since offers of compensation can't be published there" That change costs one false positive, which is cheap enough to take. But that hit is the interesting part. It's a legitimate non-dependency mention of MLS living in Method rather than in "Where this stops." Your carve-out is one section too narrow, and structurally so: a refusal has to name the thing it refuses, and the domain facts explaining why the refusal exists don't only live in the stop section. Section-keyed exemptions keep losing to that. Your fix also sent me back into the code, where I found something worse than the hole you confirmed, sitting inside CHECK C's own scope: if len(r) > 1 and rx.search(r[1]) It reads r[1], the source column. Column 0 is the input name and never gets scanned. So this row passes green:| MLS comps for the subject property | You | Yes | Exit 0, and the check prints "6 declared inputs, none from listing data." VERIFY.md says CHECK C reads "the rows of each Runs on table." That's wrong by one word. It reads one cell of each row. And my own negative test says to edit "a row's source column," so the test I wrote to prove the check can fail only exercises the column I already knew was covered. The oracle was shaped like the code instead of like the claim. Every-cell scan is verified and going in. Your section widening I'm holding separately, and not because it's wrong. It makes CHECK C catch more than the repo currently promises it catches, and there's a line in VERIFY.md saying the check won't catch Method smuggling that would go stale the moment it lands. Growing a promise deserves its own decision and its own negative test rather than riding along inside a bugfix. It's on the list with your name on it.
1-10 of 252
Gabriel Azoulay
6
434 points to level up
@gabriel-azoulay-3254
Yoga and Thai Massage Teacher turned Ai Architect

Online now
Joined Jul 26, 2026
Khao Lak, Thailand
Powered by