Back to Home
AI AgentsFeb 24, 20262:00 PM EST

OpenClaw Live

David Tabachnikov demoed OpenClaw live, showing how he uses a personal AI agent running on local hardware to reverse-engineer printers, apply for Broadway lottery tickets, and manage YouTube sponsorship conversations.

D
David TabachnikovCEO, ScholarshipOwl · Creator, Hacking Modern Life

What This Session Is About

David described OpenClaw as a self-hosted personal AI agent that runs on your own hardware, lives in the background 24/7, communicates on Telegram or Slack, and keeps long-running memory in local files. In the session, he said the project had crossed 270,000 GitHub stars and framed it as a fast-moving open-source agent project.

The recording shows David switching models mid-conversation, starting additional agents, and using OpenClaw on the Broadway lottery and YouTube sponsorship workflows.

What OpenClaw Actually Is

The key distinction David drew: this is not a conversation. It's a relationship.

Always on

Runs 24/7 on local hardware — a Jetson Nano ($200), Raspberry Pi, or Mac Mini. David built the presentation for this session while he was on the subway. He texted it on Telegram. It built the slides.

Persistent memory

Saves every conversation, decision, and preference to local markdown files by day. When you say "I don't like Delta," it remembers. Every future flight search will only show United.

Real browser access

Not a headless scraper. It controls your actual browser — with your login, your cookies, your session — via a browser extension or desktop environment. Websites see a residential IP, not a data center.

Proactive, not reactive

It sets up webhooks, cron jobs, and sub-agent networks by itself. Tell it once. It handles the scheduling, the triggers, and the routing without you asking again.

Key Insights

  • 01
    David prefers dedicated local hardware over a laptop or VPS. His reasoning: local hardware gives the agent a residential IP, access to the home network and NAS, and a machine it can control without risking the primary laptop. He warned that running this kind of agent on your main laptop creates real data-loss risk.
  • 02
    Build a hierarchy of agents with the right model for each job. David's first week cost $600+ in tokens. The fix: small models (Gemini Flash) for heartbeats and routine tasks, bigger models (Opus) only for decisions that matter. The orchestrator delegates — it doesn't do everything itself.
  • 03
    It can write its own skills. If it can't do something, it finds a GitHub library, downloads it, writes a wrapper, and adds it to its skill set. David showed it reverse-engineering a proprietary Chinese printer protocol — testing code in a feedback loop with a webcam — until it successfully printed labels. He never saw a line of code.
  • 04
    OpenClaw vs Claude Code: different tools, different jobs. Claude Code lives inside a project workspace and gets invoked manually. OpenClaw is always running, learns you over time, manages webhooks and cron jobs, and communicates through your existing channels. You're not working with it — it's working for you.
  • 05
    This needs a careful permission model. David was direct about the risk of giving an autonomous agent broad access. His practical advice: give it its own email, phone number, accounts, and command allowlists instead of handing it your primary identity and machine.
  • 06
    The workflows that actually run in production. Not demos — real automations David runs daily: YouTube sponsorship negotiation (fully autonomous, matches his price card and preferences), Broadway lottery (applies every morning, checks results, notifies when he wins), South by Southwest schedule (researched events, found flights on his preferred airline, built a personal plan).
"

If talking to GPT is a conversation, your communication with OpenClaw is essentially a relationship. It remembers everything in your life, meets you in your communication channels by itself, and every session remembers everything.

— David Tabachnikov

Live Demos from the Session

🖨Reverse-engineering a proprietary printer

David connected a webcam and a sticker printer to the machine running OpenClaw and told it to print. The printer had a proprietary protocol with no public API. OpenClaw searched GitHub for partial libraries, ran code, analyzed what the webcam saw, iterated for ~2 hours, and produced correctly sized labeled stickers — then came back on Telegram and asked which of three label sizes to use. David never touched the code.

🎭Broadway lottery automation

David told it to apply to Broadway lotteries. It found the websites, listed running shows, asked which David had already seen, applied daily with his contact info, handled CAPTCHAs through 2captcha.com, and checked results. He said it had won 5 shows by the time of the demo, and the automation was still running during the session.

📧YouTube sponsorship negotiation

Monitors David's YouTube channel email, identifies sponsorship inquiries, automatically responds with his price card, negotiates terms based on his preferences (he told it once that he'll do drones for free — it remembers), and sends emails indistinguishable from ones David would write himself. He gets a daily summary. He doesn't touch it.

From the Q&A

Why not just write cron jobs with Claude Code?

In theory you could build something similar. The difference is that OpenClaw is designed for continuous operation — it has smart caching, a vector store for memory lookup, webhooks, and an agent hierarchy already built in. Claude Code assumes a human is present. OpenClaw assumes you're not.

OpenClaw vs Claude Co-work — what's the difference?

Co-work is closer to a computer-use automation tool. OpenClaw is a persistent chief of staff. It learns your preferences over time, proactively manages your calendar and email, and operates 24/7 in the background. Co-work you invoke. OpenClaw just runs.

How does it learn your preferences?

Conversationally. David said "I only fly United" once during a flight search. It wrote that to memory. Every future travel task respects that preference. The same applies to anything you correct or clarify — it saves it and never asks again.

Can I use my Claude API key with it?

During the Q&A, David warned that using Claude credentials with OpenClaw may violate Anthropic's terms and risk account access. His recommendation was to use supported model providers and keep credentials scoped carefully.

Hardware Guide (from the session)

OptionCostBest for
Jetson Nano / SBC~$200David's pick. Residential IP, low power, connects to home network and NAS. Runs OpenClaw + delegates LLM calls to cloud.
Mac Mini (base)~$600Similar to Jetson. Not enough RAM to run models locally. Still delegates inference to cloud.
Mac Mini (64GB+)$2K+Can run quantized local models (Llama, Qwen). Useful for simple/routine tasks to reduce API costs.
VPS$30–40/moDavid argued that a VPS loses the residential-IP and home-network benefits. His preference was dedicated hardware for this class of workflow.