RT Robert Truesdale

How I Use AI to Turn Messy Notes Into Real Work

I take terrible notes. Half a sentence about a config issue. A screenshot of an error log with no context. A paragraph that made sense at 2 AM but reads like a fever dream at 9 AM. If you're in IT operations, you know exactly what I'm talking about.

For years, I just let that stuff rot in Evernote, Notion, or whatever text file I had lying around. Then I'd spend hours re-researching things I already figured out. That's stupid. So in 2026, I started using AI as a cleanup crew for my notes. Not as a writer. Not as a thinker. As a tool that handles the mess I leave behind.

Here's what actually works, what breaks, and what I'd do first if you're starting from where I was.

The Problem Isn't the Notes—It's the Gap Between Raw and Useful

You already know this: the value in your notes isn't the note itself. It's the thing you learned, the command you ran, the config that finally worked. But raw notes are useless to future-you because they're incomplete, disconnected, and buried under six months of similar-looking entries.

I don't want a magic button that writes my documentation. I want something that takes my garbage and makes it findable, structured, and actionable. That's a different problem, and it's where most AI note-taking tools miss the point entirely.

What I needed was a workflow that could handle the "messy to useful" conversion without me babysitting it.

My Actual Workflow: Notes to Draft to Done

This is what I actually do, not what some productivity blog tells you to do.

Step 1: Dump everything into a single place. I use a simple text file, Markdown, or Obsidian. Doesn't matter. The rule is: if it's work-related and I wrote it down, it goes in one spot. No folders, no tags yet. Just dump.

Step 2: Run it through a local LLM with a purpose-built prompt. I use Ollama with Llama 3, running on a spare machine I already had. The prompt isn't fancy. It basically says:

> "Read these notes. Find the actionable information: commands, configs, errors, solutions. Ignore the chatter. Output a clean Markdown structure with a title, problem description, solution, and any gotchas."

This is not AGI. It's a grep with better formatting. But it turns 800 words of rambling into 150 words of something I can actually use.

Step 3: Review and correct. This is critical. The AI gets things wrong. It invents commands that look right but aren't. It conflates two separate issues. I always read the output and fix what needs fixing. Usually takes 2-5 minutes per note.

Step 4: File it in a system that actually gets searched. I use a simple folder structure in Obsidian. Notes go into folders like /troubleshooting, /configs, /automation. The AI-generated summaries go into a daily note that gets searched by my local LLM when I ask questions later.

That's it. Four steps. The magic isn't in the AI—it's in the discipline of running the process regularly.

What AI Actually Helps With (And What It Doesn't)

Here's where I need to be honest, because the hype is exhausting.

What works:

  • Summarizing long, rambling notes into clean, scannable format
  • Extracting commands and configs from error logs or chat transcripts
  • Converting half-baked thoughts into a usable first draft
  • Finding connections between notes I didn't realize were related

What doesn't work:

  • Remembering context from last week without explicit prompting
  • Knowing which information is actually correct
  • Replacing my brain for technical decisions
  • Maintaining any kind of persistent knowledge base without manual curation

The biggest mistake people make is treating AI as the source of truth. It's not. It's a pattern matcher with a vocabulary problem. It sounds confident when it's wrong. You have to be the editor.

Failure Modes That Will Ruin Your Day

I've been doing this for about a year now. Here are the ways it broke, and how I fixed them.

Prompt drift. My prompts started vague and got vaguer. The output went from useful to useless in about two weeks. I didn't notice because I wasn't reviewing every output. Fix: I now version my prompts in a simple text file and test them on the same messy note every time. If it stops working, I know immediately.

Context loss. The AI doesn't know that "the postgres box" is the same server that's been crashing every Tuesday. It doesn't know that the fix I wrote in March applies to the issue I'm looking at now. Fix: I add a one-line context header to every note before processing. "Context: prod db server, recurring crash, this is the third attempt." That's enough.

Over-automation. I tried chaining everything together with scripts. Zapier this, webhook that. It broke constantly and required more maintenance than the notes were worth. Fix: manual trigger, simple workflow, no dependencies between tools. Fewer things to break.

The hallucination problem. I can't say this enough: AI makes things up. I've seen it invent Apache directives. It's written non-existent systemd unit flags. Always verify commands before you run them. Always.

The Maintenance Reality Nobody Talks About

This is the part that doesn't fit into a productivity blog's "five easy steps" narrative. You will spend time on this. Not a lot, but some.

Your prompts need updating. Your note format will evolve. The AI model you're using will change, and output will shift. You'll need to re-process old notes occasionally because the new model is better at something but worse at something else.

The knowledge base doesn't maintain itself. I spend maybe 30 minutes a week on this entire workflow now, but only because I spent the first few months getting the process right. Expect that ramp-up time.

Also, your "messy notes" quality matters more than you think. If you're writing nothing but "fix server" with no details, AI can't help you. Garbage in, slightly prettier garbage out. The notes need to have the actual information in them, even if it's disorganized.

What I Would Do First

If you're looking at your own pile of useless notes and thinking about how to fix this, here's where I'd start:

  • Pick one tool. Don't try five different apps. Pick one place to dump notes and commit to it for 90 days. Obsidian, Notion, a text file—doesn't matter. Just pick one.
  • Write a simple prompt. Don't copy mine. Write one that fits how you actually think. Test it on your worst note. If it doesn't work, adjust. Repeat until it does.
  • Process 10 notes by hand. Don't automate anything yet. Do the workflow manually. See where it breaks. Fix those spots before you script anything.
  • Set a weekly calendar reminder. 30 minutes, same time every week. Process your notes, review the output, file the results. If you don't schedule it, it won't happen.

That's it. No AI guru course. No $200 subscription. Just a tool you already have access to, a prompt you write yourself, and some discipline.

Your future self will thank you. Or at least, they'll actually be able to find the answer instead of re-Googling the same problem for the fourth time.