Arrow keys or space to move  ·  press F for full screen
Ownex Training · Session 1

How AI Actually Works

A plain-language walkthrough for operators. No computer science degree required. By the end you will know what this technology is, what it costs, and exactly what to go try on Monday with the tools you already have.

The Route

Five stops on this tour

Part 1

The Machine

What AI actually is, what tokens are, and where all this computing happens.

Part 2

Prompts to Agents

How asking questions evolved into AI teammates that do real work.

Part 3

Under the Hood

What a model is, what a harness is, and the one we are building ourselves.

Part 4

Using It Well

How to ask, what to save, and how to keep the writing sounding like you.

Part 5

Your Assignment

What to go try this week, whatever seat you sit in.

Parts 1 to 3 are the how. Parts 4 and 5 are the homework.

01

The Machine

What is actually inside the box

Part 1 · The Machine

AI is a prediction machine

It is not magic, it is not thinking the way you think, and it is not a search engine looking answers up in a database. It is math on chips that read most of the written internet and learned one skill to an unbelievable level:

Given everything so far, predict what comes next. That is the whole trick. Everything else in this deck is built on top of it.

The world's best finish-my-sentence player. It has seen so many sentences that its next guess is usually right, and usually useful.

Part 1 · The Machine

It writes one piece at a time

Your sentence gets chopped into pieces called tokens, roughly three quarters of a word each. Then it predicts the next token, adds it, and predicts again. Thousands of times, faster than you can read.

Understanding tokens unlocks everything
The best time to fix a problem is 
before  62%early  18%now  11%never  2%

Each token changes the odds for the next one, which is why the same question can get different answers. It is rolling loaded dice at every step.

Part 1 · The Machine

The catch: it can be confidently wrong

You just watched it guess. That is all it ever does. It is predicting, not looking things up, so when it does not know something, it still produces the most plausible-sounding answer. That is called a hallucination.

Part 1 · The Machine

How it gets built, and where it runs

Both jobs happen in data centers: buildings full of specialized chips that draw as much power as a small city.

Training

The factory

Training is where a model gets made. Feed it a mountain of text, let it practice predicting the next token trillions of times, then have humans grade the answers. Months of work, and where the hundreds of millions of dollars go.

Inference

The storefront

Inference is the finished model actually answering. Every question you ask gets routed to a data center running that file and comes back in seconds. This is the side that runs all day, for everyone at once.

Two words you will hear constantly. Training builds it. Inference runs it. And note the model stops learning the day it ships: it knows what it knew on training day.

02

Prompts to Agents

How asking questions became delegating work

Part 2 · Prompts to Agents

Everything starts with a prompt

A prompt is just what you type in. It is the only steering wheel you get, and people figured out fast that how you ask changes everything.

Weak promptStrong prompt
"Write a sales email." "You write for a small business. Draft a 100-word email to a customer who just made their first purchase, inviting them to our upcoming open house. Friendly, no pressure, one clear call to action."

Vague ask, vague answer. For a while being good at this was a job title. Then people got tired of retyping their best prompts, which leads to the next step.

Part 2 · Prompts to Agents

Great prompts got saved as skills

A skill is your best prompt written down in a file, so the AI can load it every time without you retyping it. Watch the folder on the right. It is about to grow for the next few slides.

  • A skill for writing emails in your voice
  • A skill for building a weekly report the way you like it
  • A skill for handling a customer complaint the same way every time
skills
📁 skills
📄 email-voice.md your voice, written down
📄 weekly-report.md your format, every time
📄 complaint-handling.md your playbook under pressure

Each file is an SOP for your AI, and a folder of them is a playbook. Same reason you write process docs for your team: so the output stops depending on who is asking.

Part 2 · Prompts to Agents

Notice the file type: .md

Same checklist, written two ways. Read them both. You can follow either one.

install-checklist.docx
Site Install Checklist
Before the truck leaves
Confirm the load list against the packet
Photograph every crate
On site
Walk the pad before anything comes off
install-checklist.md
# Site Install Checklist ## Before the truck leaves - Confirm the load list against the packet - Photograph every crate ## On site - Walk the pad before anything comes off

A Markdown file is a plain text file. The # and - marks are the whole trick. Both are readable by a person, both are editable by a person, and both can be edited by AI.

Part 2 · Prompts to Agents

So why not just use Word?

Word saves what a document looks like. Markdown saves what it means. AI only cares about the second one.

For us: write the SOP once in Markdown and every agent we build can already read it.

Part 2 · Prompts to Agents

The file that changed everything

Builders started adding one special file at the top of that same folder. Names vary (AGENTS.md, CLAUDE.md) but the idea is the same: a standing charter the AI reads before every single task.

  • Who it works for and what the business does
  • The rules: what it can decide alone, what needs approval
  • Where things live and which skills to use when
my-ai-teammate
📁 my-ai-teammate
⭐ CLAUDE.md the charter, read before every task
📁 skills 6 skills and growing
📄 email-voice.md
📄 weekly-report.md
📄 complaint-handling.md  …

That file is a job description plus an employee handbook. And once the AI had a charter, skills, and tools, it stopped being a chatbot. It became an agent.

Part 2 · Prompts to Agents

So what makes it an agent?

Four parts. You have seen the first two. The last two are what turn a tool into a teammate.

1 · Charter

Who it works for

The standing rules. What it can decide alone, what needs a person.

2 · Skills

How you do things

Your playbook, written down once, loaded every time.

3 · Memory

What it knows

It writes down what it learns and still has it next week.

4 · Connectors

What it can touch

Email, calendar, files, the tracker. The doors you open for it.

Charter and skills tell it how to think. Memory and connectors let it actually work.

Part 2 · Prompts to Agents

Memory: it does not start over

Close a chatbot tab and everything is gone. Next time you are explaining your job from scratch again. That is the single most annoying thing about using AI, and it is the thing memory fixes.

A chatbot is a stranger every morning. An agent is someone who was here yesterday. That is the whole difference.

Part 2 · Prompts to Agents

Connectors: how it acts on your behalf

A connector is how an agent reaches out of its folder and into a real system. Without one it can only talk. With one it can do the thing. Three kinds:

API

The front door

The pipe a vendor builds so software can talk to software. Direct, fast, reliable. Only exists if that vendor offers one.

MCP

The universal adapter

Model Context Protocol. A shared standard, so a connector gets built once and any agent can use it. This is where the industry is heading.

RPA

Hands on the keyboard

Robotic Process Automation. No API, no MCP? It drives the software like a person: opens the browser, logs in, clicks, types. Works on anything with a screen, and it is slower and more fragile.

All three need logins. Those live in a .env file, a plain text file of keys and passwords kept apart from the agent's instructions. It reads them to connect and never prints what is inside. Reading is not the same as sending, and drafting is not the same as spending. Every one of those is a separate door you open on purpose.

Part 2 · Prompts to Agents

A department needs a boss

Five agents doing five jobs with no coordination is five silos. So you put one agent on top. It is called an orchestrator.

  • It holds the charter, so every agent under it works to the same rules
  • It knows who does what, and hands the job to the right one
  • It keeps the memory, so context survives between jobs and between people
the orchestrator
📁 orchestrator the boss
⭐ CLAUDE.md the charter
🔒 .env the logins, never shared
📁 knowledge what it knows
📁 skills how it works
📁 agents the ones it directs
🤖 quoting-agent
🤖 invoice-audit
🤖 trucking-scheduler

Sub-agents nest under the boss. Same shape you already run: a leader, a playbook, and specialists who each own one thing.

Part 2 · Prompts to Agents

Ours is already built. Her name is Athena.

Athena is the orchestrator we run inside one of our client operations. She has been running since June, reading the interviews, the meetings, and the numbers, and holding what this operation knows so it stops living in one person's head.

  • She drafts and analyzes. She does not send, post, or spend.
  • She carries a written charter: what she can do alone, what needs a person.
  • The sub-agents we build nest under her, so they inherit the same rules.

The name is on purpose. In the poem, the raven lands on the bust of Pallas Athena, goddess of wisdom. Nevermore is the machine. Athena is the wisdom sitting under it.

03

Under the Hood

The engine, the vehicle, and the one we are building

Part 3 · Under the Hood

A folder of files cannot drive itself

Everything we just built is a folder of files. That is the agent. But a folder does not do work on its own. It needs an engine, and something to put the engine in.

THE AGENT the driver THE HARNESS the vehicle THE MODEL the engine

Same driver, same vehicle, different engine when the job needs more power or better economy. The engine and the vehicle are the parts you buy.

Part 3 · Under the Hood

Model vs. harness

Two words that unlock the whole industry:

The model

The engine

The trained brain itself. It predicts tokens. That is all it does. Raw power, no steering wheel.

The harness

The machine built around it

The app or tool wrapped around the model: the chat window, the file access, the memory, the safety rails. The harness is what you actually touch.

You just saw why this matters. Same model in different harnesses gives you a chatbot, a coding tool, or an agent. The engine does not change. What you built around it does.

Part 3 · Under the Hood

We are building our own: Nevermore

Most companies rent somebody else's harness and work the way that harness wants them to. We are building ours, so it works the way the operation actually runs.

  • The interface. One place for the operation. Projects, schedules, packets, invoices, the client view.
  • The agentic layer. The same place the agents live and do their work, instead of bolting AI onto a tool that was never built for it.
  • The point: the operation and the agents share one set of data. No more asking three systems and getting three answers.

In development now with an outside dev team. This is the thing everything else in this deck is aiming at.

A raven landing on a bust of Pallas Athena
Nevermore.
04

Using It Well

How to ask, and how to keep it sounding like you.

Part 4 · Using It Well

How to ask: the five-part prompt

Most bad AI output is a bad ask. This is the whole recipe. The more you give it, the less you have to fix.

The cheat code: end with "ask me any questions before you answer."

Part 4 · Using It Well

The move that will win the room

Revision seventeen, and the build date already came and went. Write the email you want to write, then hand it to something that knows the policy.

1 · What you want to say
The build date came and went. This is not a revision anymore, it is a new job. If you want it you are paying for it, and I am not eating another one.
2 · What it already knows
Creative lock on this build was June 12. After lock, graphics, purchased assets and print art can still move. Structure and anything manufactured is frozen. This request is structural. Change orders go out with cost and a revised date before anything moves.
3 · What comes back

Hi Sam,

Happy to price this. Where we are: creative lock on this build was June 12. After lock, graphics, purchased assets and print art can still move, but structure and anything manufactured is frozen, and this request changes structure.

That puts it outside the locked scope, so it goes through as a change order rather than a revision. I will have cost and a revised in-hand date to you this afternoon, and nothing moves in the shop until you approve it.

If holding the current build and revisiting after the show works better, that is also on the table. Which would you rather do?

It did not just soften the tone. It cited the policy and the date. That is memory and skills doing the work.

Part 4 · Using It Well

Help you think, not think for you

It fails by being fluent. The output looks finished, so you skim instead of reading, and the forty-first one goes out with the wrong date on it.

It is making you more efficient, not replacing you, and the difference is you still reading every word. People notice when you stop.

Part 4 · Using It Well

And people can tell

Once you know how it writes, you cannot unsee it. Clients are learning the same tells. Not a style problem. A trust problem.

The tellWhat it looks like
The long dashA dash like mid-sentence. Nobody types that on a phone.
The warm-up"I want to be honest with you." "Here's the thing." Openers that say nothing.
Everything in threesThree bullets, three adjectives, three examples. Always three.
The fake pivot"It's not just a delay, it's an opportunity." Nobody talks like this.
Words nobody saysDelve. Leverage. Robust. Seamless. Landscape. Testament.
Sheer lengthSix paragraphs carrying two sentences of content. The loudest one.
Part 4 · Using It Well

Length is the one that gives you away

A long message is not a thorough message. It is an unedited one. You handed the job of finding the point to the person reading it, and they notice.

Before you send it, cut it down to what you would have said out loud, standing in front of them. If you would have said two sentences, send two sentences. The AI does not know when to stop. You do.

None of this is about hiding that you used it. Use it. Just make sure the thing that leaves your hands still sounds like it came from you, because the person on the other end can tell, and that is the part you do not get back.

05

Your Assignment

Pick one. Try it this week. Nothing here takes setup.

Part 5 · Your Assignment

This is not theoretical. It is already running in a real operation.

Josh

Workback schedules

Built a tool that generates a workback schedule from the account questionnaire. In a day. Then came back with six more ideas, which is the real story.

Carter

The parallel build

Building his own version under the same rules, so the two can eventually talk to each other instead of becoming two silos.

Quoting

Deck to itemized quote

Trained on our own past decks and invoices. Drafts a first-pass itemized quote and grades itself against what the job actually invoiced. A person approves every line.

None of them started with an agent. Every one of them started with somebody messing around in a chat window on a Tuesday.

Part 5 · Your Assignment

Find yourself on this list

One thing to try this week. No setup, no permission needed, nothing to install.

  • Accounts. Talk for two minutes after the call, get a written recap you can send that day.
  • Project management. The frustration filter. Then turn a change request into a change order draft.
  • Operations. Explain how you do a thing out loud for five minutes, get a one-page SOP back.
  • Field and install. Work backward from the event date to a draft schedule and a pack plan.
  • Sales and concepting. Research the brand before the pitch. Turn a deck into a first-pass scope list.
  • Leadership. Turn a decision into the paperwork that has to change for it to be real.

Whatever you pick, do it on something real this week. If it saves you twenty minutes, do it again.

Part 5 · Your Assignment

Next session, we build one

Everything today was the tools that already exist. Next time is different. We build an actual agent: the folder, the charter, the skills, the whole structure you saw earlier.

Getting in is simple. Use what you have first. Save a prompt that works and run it for two weeks on real work. Then come find me with what you made, or with the idea you keep coming back to. Feedback and ideas count as much as a finished thing.

That conversation is how you get a seat. Paid accounts and real build time go to the people who showed they will actually use them. No application and no test. Show me you want in, and you are in.