← All sessionsHomeSearch
AI Sprints (Live Weekend Programs)·The Hermes Agent Sprint·2:03:49

AI Sprint: The Hermes Agent — Day 2 (Loop Engineering: the Scheduling Loop, the Delegation Loop, and the Skill Auditor)

Akhil Kumar Alampalli 'Your friendly neighborhood techie' — AI and automation expert; teaches loop engineering from first principles (observe → act → evaluate → repeat), then builds three live loops on Hermes: a Telegram morning-briefing cron, a three-agent delegation pipeline, and a skill-audit meta-loop · Kartik Sprint host — certificates form, recordings, Alumni Forge chapters, and the AI Catalyst program pitch in the close

Session map

THE DISCIPLINETHE THREE LOOPSTHE ECONOMICSObserve, act, evaluate, repeatloop engineering as the era after agentsThe scheduling loopa Telegram morning briefing that fires…The delegation looporchestrator, sub-agents, and the plan-…The skill auditorthe loop that improves the loopsThe 80-percent model at a ten…DeepSeek economics and fallback chains
The disciplineThe three loopsThe economics
click a node — its card pops up (drag it anywhere, × to close)
Concept

The map reads left to right — the discipline flow into the three loops, then into the economics. Click any node to open that idea here; every timestamp jumps into the recording.

The short version

  1. The frame: a loop is any system that OBSERVES → ACTS → EVALUATES → REPEATS. One-shot prompting dies after 'act' — no evaluation, no repetition. The eras run chat (2022-23) → prompt engineering (still one round trip) → agentic (multi-step, but YOU are still the trigger) → LOOP ENGINEERING: 'you design the machine; the machine prompts the AI; you steer.' 'The fastest progress comes not from better models but from better loops.'
  2. Loop 1 — SCHEDULING: a morning-briefing skill (top-3 AI news, Hyderabad weather, urgent tasks from memory.md, <500 chars) wired to a Telegram bot and a natural-language cron ('every weekday at 7 AM'). The live failure is the lesson: 'Telegram send failed' → the agent diagnoses, patches, re-sends — 'it found the error, evaluated, fixed it. As long as the goal isn't met, I'm not gonna stop.' Caveat taught: crons need a machine that's ON — hence Hostinger.
  3. Loop 2 — DELEGATION: 'the bottleneck of a singular loop is one agent does one thing at a time... the answer is the same one every company found scaling humans: delegation. You need a chief of staff.' Orchestrator → research sub-agent → writer sub-agent → orchestrator review, planned BEFORE execution ('show me the plan, do not start executing'), each agent with its own memory scope. Counter-rule kept honest: if the steps are deterministic and known, 'why complicate your life with Hermes? Self-host n8n' — agents earn their tokens only where decisions live.
  4. Loop 3 — THE SKILL AUDITOR, the sprint's crown: run your LinkedIn skill on a test brief → score it against four named criteria (hook, length, real CTA, sounds-human) → trace each FAIL to the exact line of the skill file → write the patch → re-run and show before/after. 'One line changed flipped the only failing criterion to pass — and pulled two weak passes into strong ones.' Then schedule the auditor itself as a Sunday-8-PM cron that delivers patch reports to Telegram: the loop that improves the loops.
  5. Economics as pedagogy throughout: the whole two-hour session cost ~100k DeepSeek tokens ≈ 4 cents ('any cloud model would be 10x, easily'); fallback chains keep it resilient; 'as long as I'm working with an 80% model, why pay 10x?'
  6. And the reality check: at a 500-700-person outside talk, ZERO hands knew 'vibe coding.' 'You are living in the top one-percentile space. Pick the tools, test the tools — as long as it's a medium to get the job done.'

The concepts

01

Observe, act, evaluate, repeat: loop engineering as the era after agents

'Every intelligent system in nature runs on a loop — your brain, a thermostat, the stock market. AI for the last three years has been fundamentally non-loopy.'

The definition: loop engineering is 'the discipline of designing systems that prompt AI on your behalf, evaluate results automatically, and improve over time without human triggering at each step.' The one-shot ChatGPT prompt ends at ACT — no evaluation metric, no repeat cycle. The eras stack: chat era (prompt, respond, copy-paste), prompt engineering (better inputs, still one round trip), agentic era (multi-step, tools, some memory — 'but you are still the trigger'), and now loops: 'the machine prompts the AI; you steer.' The driving analogy: 'you don't pedal when you drive a car. You build the engine, set the destination, and steer when needed.'

The industry evidence he assembles: Karpathy's 'I haven't written code by hand' era and AutoResearch — one markdown prompt, ~600 lines of Python, one GPU, hundreds of experiments and optimizations looping toward a goal ('improve the language model's training speed'), agents running '16-17 hours a day'; Claude Code's goal-style command (as-heard 'GOLD') where 'a separate evaluator model checks after every turn... it stops when it passes — you don't watch it work'; and the frontier positioning of Fable/Mythos as models 'built architecturally from the ground up' for days-long asynchronous loops. His summary of Karpathy's phrase: 'expressing your will to agents — express your goals and wishes, and let them do the job once you build that system.'

Worked example · from the session

The goal-command pattern spelled out: define the D2C power-bank brand's competitors, North Star metric, values, and paywall in 15-20 lines of WHAT DONE LOOKS LIKE — then the agent runs turns until the evaluator passes it.

Why it matters

It's the conceptual spine for both sprint days and the Catalyst loop sessions — naming why md files, skills, and crons compose into something better than prompting.

People get this wrong

Loop engineering is running the same prompt repeatedly.

Repetition without evaluation is spam. The loop's engine is the evaluate step — named criteria, an evaluator (model or human), and failures that change the next iteration.

Loop anatomy: the era after agents Observe what changed? Act do the work Evaluate did it land? Repeat fresh context Scheduling loop Delegation loop Skill-auditor loop three loops built on one anatomy Observe → act → evaluate → repeat — the auditor loop is the one that improves the other loops
Observe, act, evaluate, repeat, with the three loops built on it
You don't pedal when you drive a car. You build the engine, set the destination, and steer when needed.
The fastest progress comes not from better models, but from better loops.
Stop being the one who prompts. Start being the one who designs what prompts.
For your projects

The car analogy (engine, destination, steering) is the cleanest plain-English definition of your role in this very session's workflow.

Go deeper

In one line: Loop engineering = designing systems where the machine prompts the model, an evaluator scores the result, failures feed back as observations, and the cycle repeats without per-step human triggering; the human designs goals and evaluators, and steers.

'Better loops beat better models' is the operating thesis — progress lives in the cycle design ()

Goal specificity replaces task decomposition: describe the finished product's look, feel, data, and behavior — not the subtasks ()

Model positioning noted as-heard: Fable/Mythos 'designed for long-horizon, days-long asynchronous tasks'... 'of course, it's gone right now for a while' — loop-native models as the direction ()

The AGI framing kept modest: 'give a goal, job done' is the far end of the same axis — 'a hypothesis to keep in working memory' ()

▶ Watch this taught:

Check yourself

Answer from memory first — the recall attempt is what makes it stick. Then reveal.

What turns an agent into a loop?

An EVALUATOR with authority — something that scores the output against the goal and routes failures back as new observations. No evaluator, no loop; just a longer one-shot.

02

The scheduling loop: a Telegram morning briefing that fires while you sleep

'I set this up once. It runs forever. This is loop engineering at its simplest — and it will immediately change the way you start your day.'

The build, end to end: create a Telegram bot via BotFather (name it, take the access token, lock it to YOUR user ID 'so no one else can talk to that bot'), hand the token to Hermes; then one prompt creates the SKILL — 'search the web for the top 3 AI/automation stories from the last 24 hours; get a weather summary for Hyderabad; pull tasks flagged urgent from memory.md; format under 500 characters; send to my Telegram. Write the skill file now, then confirm the path.' Then the CRON, in natural language: 'schedule the morning briefing every weekday at 7 AM... confirm the job is registered, and tell me your fallback if web search fails.' Hermes registers it (Mon-Fri, IST auto-detected, 'repeat forever'), visible in the desktop app's cron panel.

The teaching gold is the live test: preview the message (295 characters, clean) → 'Telegram send failed' → the agent diagnoses and re-sends → delivered. 'This is the loop I'm talking about: it found the error, it evaluated, it fixed it — as long as that goal is met, I'm not gonna stop.' Approvals surface IN Telegram ('allow once / allow for this session' — 'it's telling you: this pulls from an external system, are you sure?'), and the two operational caveats land: a cron needs a machine that's ON (his own 7 AM would fail; 'move it to noon, or get a Hostinger'), and conversational access works both ways — texting 'what's today's briefing?' from Telegram runs the same agent with the same memory.

Worked example · from the session

The scale-up he paints: 'imagine five of these running in parallel — competitor tracking, client news, team updates, market signals. You become the architect of the system that briefs you every morning.'

Why it matters

It's the smallest complete loop — skill + schedule + delivery + self-repair — and the template for every recurring-brief use case.

People get this wrong

Scheduling an agent job is set-and-forget.

It's set-and-VERIFY: test-fire it, demand the fallback story, and host it somewhere that's awake — the loop is only as reliable as its worst dependency.

It found the error. It evaluated. Now it fixes it and sees if it's working. As long as that goal is met, I'm not gonna stop.
You become the architect of the system that briefs you every morning.
For your projects

Your morning-brief skill is literally this loop on different infrastructure — his 'ask for the fallback' prompt is a good addition to it.

Go deeper

In one line: Scheduling loop = a skill (gather → format → deliver) bound to a natural-language cron and a locked-down messaging surface (Telegram bot), with approval gates and self-diagnosis on delivery failure; requires an always-on host (VPS) to be trustworthy.

Security by construction: bot token + allowed user ID = a private channel to your agent ()

Ask the agent for its own failure plan — 'tell me what happens if web search fails; what is your fallback' — evaluator thinking applied to infrastructure ()

GPU/RAM myths dispelled: with hosted APIs 'you don't need a GPU'; local models are the only reason to care ()

The desktop app ships messaging connectors well beyond Telegram — WhatsApp, Discord, Slack, Signal, iMessage via guides ()

▶ Watch this taught:

Check yourself

Answer from memory first — the recall attempt is what makes it stick. Then reveal.

Why did his 7 AM cron have a hidden failure mode?

The laptop is the host — closed lid, no briefing. Always-on loops need always-on compute; that's the entire case for the VPS tier.

03

The delegation loop: orchestrator, sub-agents, and the plan-before-execute gate

'The bottleneck of a singular loop: one agent does one thing at a time. The answer is the same one every company arrived at scaling human teams — delegation. You need a chief of staff.'

The pattern: an ORCHESTRATOR (chief of staff — holds the goal, manages memory, splits tasks) over specialist sub-agents — a RESEARCH agent (search, scrape, summarize → structured brief) and a WRITER agent (takes the brief, writes in your voice, quality-checks) — with the orchestrator evaluating the return and either looping ('needs more research') or delivering. Hermes does this natively; each agent gets its own memory scope while the orchestrator keeps the full picture. The critical gate is in the prompt itself: define the roles, give today's goal (a 300-word AI-agents brief), then 'start by outlining what tasks you're assigning to which sub-agents. DO NOT start executing yet. Just show me the plan.' The plan comes back as a three-stage pipeline with tools, deliverables, and constraints per agent, execution order, and 'all sub-agents are leaves — no further delegation'; only after 'looks good, execute' does work start, visibly delegating research → writing → orchestrator review (word count, source spot-checks, tone, grammar) → delivery.

The honest counter-rule is the concept's other half: every delegation decision costs tokens. 'If the orchestrator has ten agents and decides at every point who gets the task — you're spending tokens for the smallest decision. If you know the exact step-by-step framework and the exact apps, why complicate your life with Hermes? Self-host n8n and define the steps. If it's abstract, with many decision points — then an agent makes sense.' Deterministic → workflow engine; decisive → agent team.

Worked example · from the session

The output is real enough to critique: a punchy 300-word week-in-AI brief, orchestrator-reviewed with named checks — and the closing note that disliking its tone becomes the next patch.

Why it matters

'There was no SaaS tool, no Zapier, no n8n. One Hermes instance, three roles, one coherent output... that's not automation — you've built an AI team.'

People get this wrong

Multi-agent = better.

Multi-agent = more decisions bought with more tokens. It wins on abstract, judgment-heavy goals and loses to workflow engines on known pipelines.

The answer is the same answer every company arrived at when scaling human teams: delegation. You need a chief of staff.
There was no SaaS tool, no Zapier, no n8n. One Hermes instance, three roles, one coherent output. You've built an AI team.
If you know the exact step-by-step framework, why complicate your life with Hermes? Self-host n8n. If it has decision points at every step, then an agent makes sense.
For your projects

Your extraction-chat/infra-chat division with the tracker as shared memory is this pattern — the plan-approval gate is the piece your scheduled tasks encode as queue rules.

Go deeper

In one line: Delegation loop = orchestrator + scoped specialist sub-agents in a planned, sequential pipeline with an explicit plan-approval gate before execution and orchestrator evaluation before delivery; deployed only where decision density justifies the token cost — deterministic pipelines belong in workflow engines.

Plan-before-execute is the safety rail: the plan is reviewable, the execution isn't ()

Memory scoping mirrors org design: specialists see their task; only the chief of staff sees everything ()

His real uses ground it: client proposal drafts, project Kanban dashboards, team peer review, and a content-repurposing engine in progress ()

The n8n rule doubles as a billing rule for client work: charge agent complexity only where the decisions are ()

▶ Watch this taught:

Check yourself

Answer from memory first — the recall attempt is what makes it stick. Then reveal.

Research → write → review is fixed and sequential. Why use an agent team at all?

Fair challenge — and his answer is you often shouldn't. The team earns its cost when the orchestrator must JUDGE (loop back for more research, reject drafts); if every step is known, n8n does it cheaper.

04

The skill auditor: the loop that improves the loops

'What if the loop itself could improve — not because you gave feedback, but because it ran its own skill, evaluated the result, and updated its own instructions?'

The construction, live: rebuild the LinkedIn voice skill from pasted posts ('analyze the tone, pacing, style, voice, and phrases' → voice DNA → skill with tone-shifts by post type, pacing signature, phrase bank, anti-patterns, quality gate). Then the AUDITOR prompt: (1) run the skill on a fixed test brief ('why most people use AI wrong — they treat it as a search engine, not a thinking partner'); (2) evaluate against four named criteria — strong opening hook, under 1,500 characters, a SPECIFIC non-generic CTA, sounds-human-not-assistant; (3) for every failure, 'identify the specific line in the skill file that caused it'; (4) write the patch — exact lines changed, added, removed. The live run fails criterion 3 ('drop 🤔 if this hit' is engagement bait, not a CTA), root-causes it to one line, patches, re-runs, and shows the before/after scorecard: 'one line changed flipped the only failing criterion to pass — and pulled two weak passes into strong ones. The constraint didn't just fix the CTA; it tightened the writing across the board.'

Then the meta-move: 'schedule a cron job every Sunday at 8 PM: run the skill-audit loop on my top 3 skills, deliver a patch report to Telegram.' The test fire lands — 'skill audit: 6 issues found' across LinkedIn writing, morning briefing, and the plan skill — and the compounding claim follows: 'in a month, every skill you have is ten versions ahead of where you started.' Over-engineering has a stop rule: 'when the drafts need only minimal effort at face value, there's nothing left to patch — stop the cron.'

Worked example · from the session

A viewer's sharp question — 'why can't the auditor just be built into the orchestrator?' — gets the right answer: it can; this is a possibility map, not a fixed architecture.

Why it matters

It closes the sprint's arc: Day 1 taught feedback-fed improvement; this removes the human trigger and makes improvement ITSELF a scheduled deliverable.

People get this wrong

Self-improvement needs the human out of the loop entirely.

The human moves UP the loop: from correcting drafts to defining criteria and reviewing patch reports — architect, not worker.

One line changed in the skill flipped the only failing criterion to pass — and pulled two others from weak pass into strong. The constraint tightened the writing across the board.
For your projects

This is the corpus's most actionable idea for your setup this month: your agency skills + fixed test cases + a scheduled audit = compounding instead of drifting.

Go deeper

In one line: Skill auditor = a meta-loop that runs a skill against fixed test briefs, scores output on named criteria, root-causes each failure to specific skill-file lines, patches, and re-verifies with before/after scores; scheduled as a recurring cron with patch reports, and retired when patches stop mattering.

Line-level root cause is the difference between critique and improvement — the patch targets the INSTRUCTION, not the output ()

Fixed test briefs make audits comparable across weeks — the same exam, better grades ()

Karpathy's 'recursive self-improvement' invoked with proportion: frontier labs do this at model level; 'Hermes gives it to you at workflow level today' ()

Audit criteria are yours to name — his four are a starter kit, not a standard ()

▶ Watch this taught:

Check yourself

Answer from memory first — the recall attempt is what makes it stick. Then reveal.

Why must the audit trace failures to skill-file LINES rather than just scoring the draft?

Scores describe symptoms; the line is the cause. Patching the causal instruction improves every future run — editing the draft improves one.

05

The 80-percent model at a tenth the cost: DeepSeek economics and fallback chains

'DeepSeek v4 pro: $0.40 in, $0.80 out per million. As long as I'm working with an 80-percent model, why should I pay 10x?'

The demonstration is the whole session's meter: everything — skills, crons, a three-agent pipeline, audits — runs on DeepSeek v4 pro, and the counter reads ~74k tokens mid-session, ~100k at the close: 'four cents, technically. Any cloud model would be 10x, easily.' The rationale is stated as a comparison he ran, not fandom: strong general reasoning, excellent coding and long context, strong agent workflows, moderately-high reliability — '8 to 26 times cheaper, quality more nuanced.' The same lane holds Kimi K2 and the OpenRouter catalog: 'figure out how much of that is useful for you.' Resilience comes from FALLBACK MODELS — a comma-separated chain in Hermes' config ('if the default fails, try DeepSeek flash, then Gemini...') — and provider switching is just settings (or asking the agent to change it).

The context that keeps it grounded: the audience-awareness story — 600 people at an outside talk, zero hands for 'vibe coding,' ~10% for image generation. 'You are living in the top one-percentile space... people are asking should I leave n8n, should I leave Hermes — pick the tools, test the tools; as long as it's a medium to get the job done, why not.'

Worked example · from the session

The viewer challenge handled with numbers: 'aren't you ignoring token usage?' → the live cost breakdown and the 10x-cloud comparison, on screen.

Why it matters

Loops multiply token consumption by design — the discipline only scales if the per-token price is engineered as deliberately as the loop.

People get this wrong

Serious agent work requires frontier models throughout.

Serious agent work requires frontier JUDGMENT where it matters; the bulk of loop tokens are fetch-format-draft work that cheap models do at a tenth the price.

In a bunch of 600 folks, I did not get even one hand raised for vibe coding. You are living in the top one-percentile space.
For your projects

His live token meter is worth imitating: your scheduled tasks could log tokens-per-run to the tracker, making the tier decisions data-backed.

Go deeper

In one line: Cheap-model routing = default to a capable low-cost model (DeepSeek/Kimi class) for loop workloads, chain fallbacks in config, reserve frontier models for the judgment steps that earn their price; measure by live token meters, not vibes.

Loop economics compound: the Sunday auditor, the daily briefing, and the agent team all inherit the base model's price ()

Fallback chains are loop infrastructure — an unattended cron can't ask you to fix a provider outage ()

'75% discounted forever' pricing moves — treat every number here as a snapshot ()

The top-percentile reminder doubles as a client-communication rule: your audience mostly hasn't heard the words yet ()

▶ Watch this taught:

Check yourself

Answer from memory first — the recall attempt is what makes it stick. Then reveal.

Which steps of the delegation loop deserve a frontier model?

The evaluator/orchestrator judgments — where a wrong call cascades. Research fetching and first drafts are exactly the 80-percent-model work.

Every concept, three clicks deep

The same concepts as a quick reference: the closed row is the glance, open is the study card, and every timestamp jumps into the recording.

01Observe, act, evaluate, repeat: loop engineering as the era after agentsLoop engineering = designing systems where the machine prompts the model, an evaluator scores the result, f…

Loop engineering = designing systems where the machine prompts the model, an evaluator scores the result, failures feed back as observations, and the cycle repeats without per-step human triggering; the human designs goals and evaluators, and steers.

'Better loops beat better models' is the operating thesis — progress lives in the cycle design ()

Goal specificity replaces task decomposition: describe the finished product's look, feel, data, and behavior — not the subtasks ()

Model positioning noted as-heard: Fable/Mythos 'designed for long-horizon, days-long asynchronous tasks'... 'of course, it's gone right now for a while' — loop-native models as the direction ()

The AGI framing kept modest: 'give a goal, job done' is the far end of the same axis — 'a hypothesis to keep in working memory' ()

02The scheduling loop: a Telegram morning briefing that fires while you sleepScheduling loop = a skill (gather → format → deliver) bound to a natural-language cron and a locked-down me…

Scheduling loop = a skill (gather → format → deliver) bound to a natural-language cron and a locked-down messaging surface (Telegram bot), with approval gates and self-diagnosis on delivery failure; requires an always-on host (VPS) to be trustworthy.

Security by construction: bot token + allowed user ID = a private channel to your agent ()

Ask the agent for its own failure plan — 'tell me what happens if web search fails; what is your fallback' — evaluator thinking applied to infrastructure ()

GPU/RAM myths dispelled: with hosted APIs 'you don't need a GPU'; local models are the only reason to care ()

The desktop app ships messaging connectors well beyond Telegram — WhatsApp, Discord, Slack, Signal, iMessage via guides ()

03The delegation loop: orchestrator, sub-agents, and the plan-before-execute gateDelegation loop = orchestrator + scoped specialist sub-agents in a planned, sequential pipeline with an exp…

Delegation loop = orchestrator + scoped specialist sub-agents in a planned, sequential pipeline with an explicit plan-approval gate before execution and orchestrator evaluation before delivery; deployed only where decision density justifies the token cost — deterministic pipelines belong in workflow engines.

Plan-before-execute is the safety rail: the plan is reviewable, the execution isn't ()

Memory scoping mirrors org design: specialists see their task; only the chief of staff sees everything ()

His real uses ground it: client proposal drafts, project Kanban dashboards, team peer review, and a content-repurposing engine in progress ()

The n8n rule doubles as a billing rule for client work: charge agent complexity only where the decisions are ()

04The skill auditor: the loop that improves the loopsSkill auditor = a meta-loop that runs a skill against fixed test briefs, scores output on named criteria, r…

Skill auditor = a meta-loop that runs a skill against fixed test briefs, scores output on named criteria, root-causes each failure to specific skill-file lines, patches, and re-verifies with before/after scores; scheduled as a recurring cron with patch reports, and retired when patches stop mattering.

Line-level root cause is the difference between critique and improvement — the patch targets the INSTRUCTION, not the output ()

Fixed test briefs make audits comparable across weeks — the same exam, better grades ()

Karpathy's 'recursive self-improvement' invoked with proportion: frontier labs do this at model level; 'Hermes gives it to you at workflow level today' ()

Audit criteria are yours to name — his four are a starter kit, not a standard ()

05The 80-percent model at a tenth the cost: DeepSeek economics and fallback chainsCheap-model routing = default to a capable low-cost model (DeepSeek/Kimi class) for loop workloads, chain f…

Cheap-model routing = default to a capable low-cost model (DeepSeek/Kimi class) for loop workloads, chain fallbacks in config, reserve frontier models for the judgment steps that earn their price; measure by live token meters, not vibes.

Loop economics compound: the Sunday auditor, the daily briefing, and the agent team all inherit the base model's price ()

Fallback chains are loop infrastructure — an unattended cron can't ask you to fix a provider outage ()

'75% discounted forever' pricing moves — treat every number here as a snapshot ()

The top-percentile reminder doubles as a client-communication rule: your audience mostly hasn't heard the words yet ()

Tools referenced

ToolCoverageMomentContext
Hermes agent (Nous Research)demonstratedCLI + desktop app: messaging connectors, cron panel, profiles, fallback models, native sub-agents, skill/tool packs (can delegate coding to Codex or Claude Code)
Telegram / BotFatherdemonstratedBot token + user-ID lockdown; delivery, approvals, and two-way chat with the agent
DeepSeekdemonstratedv4 pro as the session's engine; live cost meter; '8-26x cheaper, quality more nuanced'
Hostinger / SiteGroundexplainedThe always-on host that makes crons trustworthy — 'your laptop is off at 7 AM'
n8nexplained'Is n8n gone? Strongly no' — the deterministic-pipeline lane, self-hosted for cost
OpenRouterexplainedThe catalog for the cheap-model lane (DeepSeek, Kimi, open models); fallback chains
Claude CodementionedThe goal-style command with a separate evaluator model (as-heard 'GOLD') — the loop-native industry signal
Codex (OpenAI)mentionedSub-agent delegation target in Hermes' skill pack; 'Codex doesn't have sub-agents, I think' aside
OllamamentionedLocal-model lane acknowledged: 'as long as your machine supports it'
Kimi (Moonshot)mentionedNamed alongside DeepSeek in the cheap-capable class
LovablementionedSetup for the vibe-coding awareness story — the room outside doesn't know the words
Scrape CreatorsmentionedDay 1's scraper offered as the alternative to the built-in web search
ApifymentionedComparison point carried over from Day 1

Action items

Resources mentioned

Resources
  • docKarpathy AutoResearch reference
  • docTelegram bot setup guide (BotFather)
  • docHermes desktop apps (Mac/Windows/Linux)
  • docSkill-audit prompt (four criteria, line-level root cause, patch)
  • docCertificates form + Alumni Forge chapters + AI Catalyst pitch

Extraction notes

This page was built from an auto-generated transcript, which garbles product and people's names. Those were corrected silently in everything above and logged here for transparency. The warnings flag claims that were true on the recording day but change fast.

Transcript corrections applied

The transcript saysThe trainer actually means
Harmus / Harmless / her miss / Harni's / HermitHermes
Akhil / Akil / Aakhil Kumar AlampalliAkhil Kumar Alampalli (trainer)
Anetin / Inaton / n a 10 / innate / an item / NA10n8n
OpenCloud / OpenCLOCK / open clock / OpenClogOpenClaw
Lord Code... command called GOLDClaude Code's goal-style long-horizon command (as-heard name — unverified)
SONNET 4.6 / Opus 4.8as-heard Claude model versions at recording
DeepSeq / Deepsea v 4 / deep seek flashDeepSeek v4 pro / DeepSeek model tiers (as-heard)
skimming k 2 / kimik a 2Kimi K2
Andrei/Andrew Karpathy, cofounder of OpenAIAndrej Karpathy (OpenAI cofounder; the loops/AutoResearch references are as-heard summaries of his posts)
SpaceX is buying any spear / Apache Bur / cloud 5 suspendedas-heard garbles of the generated news brief's items — treat as demo content, not facts
Glasswing project... Amazon, Cursor partners getting Mythosas-heard claim about restricted Mythos-class access — unverified
Gajani / Mento / find the NemoGhajini / Memento / Finding Nemo (Day 1's memory analogies, recalled)
Illumina forge / alumni forceAlumni Forge (Outskill community program)
singular lupussingular loops
open data models / OpenDocker APIopen-weights models / (likely) OpenRouter API (as-heard)
BotfatherBotFather (Telegram's bot-creation bot)

True on recording day — verify before relying