Modern Creator Network
Jay E | RoboNuggets · YouTube · 13:32

This Free Tool Lets Claude Automate ANYTHING (The CLI Printing Press)

Jay E walks through Printing Press — a new open-source toolkit that turns any website (even ones without a public API) into a token-efficient CLI your Claude Code agent can call.

Posted
2 days ago
Duration
Format
Tutorial
educational
Channel
JE|
Jay E | RoboNuggets
§ 01 · The Hook

The bait, then the rug-pull.

Jay opens with a flex — Claude Code is already inside Skool, MyFitnessPal, and a Telegram-driven food log, none of which expose a public API. The reveal: he stitched custom CLIs together with a new toolkit called Printing Press, and the rest of the video is a quietly thorough case for why CLIs (not MCPs, not APIs) are the right shape for agents to talk to the outside world.

§ · Stated Promise

What the video promised.

stated at 00:55If you want to create CLIs of your own, I think this tool will change the way you use Cloud Code if you use it correctly. So let's dive into it.delivered at 12:42
§ · Chapters

Where the time goes.

00:0001:00

01 · Cold open + proof shots

Hook on automating any app even without a public API. Shows Skool-via-Cloud-Code, MyFitnessPal-via-Telegram, then teases a list of community-built CLIs (Google Photos, Google Ads, Mercury, Kalshi, Domino's).

01:0001:44

02 · Why agents need external tools

Most real work lives in the apps we use every day; without a connector your agent is blind. Three connection avenues exist: CLI, API, MCP.

01:4403:50

03 · API vs MCP vs CLI — the token-bill argument

APIs return verbose JSON walls (a lot of tokens for a small ask). MCPs preload every tool description into the context window before you type a prompt — context bloat by default. CLIs only return exactly what was asked, so they're the most lightweight of the three.

03:5004:50

04 · Side-by-side — same task, different token bill

Visual: CLI labelled 'LIGHTWEIGHT', API labelled 'VERBOSE', MCP labelled 'ALWAYS LOADED'. Same task across all three; CLI wins on context economy for general-use cases.

04:5005:50

05 · The catch — CLIs have to exist first

OCR caption: 'Only problem with CLIs — they have to exist first.' Historically a developer had to build them. Pivot: 'lucky for us… we can now build them ourselves' with Printing Press.

05:5007:01

06 · What Printing Press is

Tour of printingpress.dev — a toolkit (set of skills for your agent) that auto-prints a token-efficient Go CLI, a Claude Code skill, an OpenClaw skill, and optionally an MCP server from any website. The site itself shows starter prompt recommendations.

07:0108:00

07 · Install it personalised, not generic

Pro tip: don't just install the repo — feed Cloud Code the link plus the prompt 'what are the top 3 CLIs that I can print based on all you know about me?' and let it suggest based on your actual stack (YouTube analytics, Substack, Todoist were Jay's).

08:0008:26

08 · Browsing the community library

Second repo: printing-press-library, a growing community catalog. CLIs already exist for Notion, Slack, Linear, Fireflies, Google Ads, Klaviyo, Trigger.dev, Domino's, Ahrefs, AllRecipes, and more. Recommendation: let Cloud Code triage the library for you.

08:2609:03

09 · Mid-roll CTA — RoboNuggets community

Hard pivot to the sponsor/community pitch: 'going from just using AI to getting paid for it'. Members get live build sessions, templates from the video, and first-client wins. Brief, then back to teaching.

09:0310:02

10 · The 5-step Printing Press framework

Jay shows the HTML slide he had Claude generate to explain how Printing Press works: a five-stage process — Capture (HAR) → Sniff (browser-sniff) → Generate → Mirror (SQLite) → Run (one binary).

10:0211:02

11 · Step 1 — Capture (the HAR file)

The only manual step. Open Chrome DevTools → Network tab → enable 'Preserve log' → perform the action you want to automate (e.g. logging a meal in MyFitnessPal) → right-click → 'Save all as HAR'. That HAR is an HTTP Archive — a JSON-formatted log of every network call made on the page.

11:0211:42

12 · Steps 2–3 — Sniff & Generate

From here Cloud Code drives end-to-end. Printing Press reads the HAR, picks out the real API calls, drops the noise (ads, trackers), groups endpoints by topic, and auto-builds three things from the spec: a CLI tool, a Claude skill, and (optional) an MCP server. Same logic, three interfaces.

11:4212:42

13 · Step 4 — Mirror (local SQLite cache)

The clever bit. Printing Press bundles a local SQLite mirror of a hand-picked subset of the source's data (e.g. ~200 foods you've actually used out of MyFitnessPal's 14M-food catalog, ~5MB on disk). Searches happen on your machine in ~50ms — no rate limits, no IP blocks, no network round-trip. Jay's analogy: 'like Spotify caching your library — not the whole catalog.'

12:4213:20

14 · Step 5 — Run + invoke from agents

Final stage: one binary file. Type a command, get the answer — no Python install, nothing else to set up. Invoke it as a slash command, in natural language to Cloud Code, on a schedule, or (Jay's setup) through a Telegram agent that calls the CLI for him.

13:2013:32

15 · Outro + subscribe ask

Wrap-up: if you've got a tool you can't connect to your agents, printingpress.dev may be the unlock. Subscribe ask, sign-off.

§ · Storyboard

Visual structure at a glance.

Automate Anything title card
hookAutomate Anything title card00:00
MyFitnessPal proof shot
proofMyFitnessPal proof shot00:17
printingpress.dev tour
promiseprintingpress.dev tour00:32
Agents need external tools
valueAgents need external tools01:12
CLI vs API vs MCP mental model
valueCLI vs API vs MCP mental model01:32
Same task, different token bills
valueSame task, different token bills02:02
Only problem with CLIs — they have to exist first
pivotOnly problem with CLIs — they have to exist first04:52
RoboNuggets community pitch
ctaRoboNuggets community pitch08:26
How Printing Press works — 5 steps
frameworkHow Printing Press works — 5 steps09:03
Steps 1-4 list view
frameworkSteps 1-4 list view10:42
Local SQLite mirror diagram
frameworkLocal SQLite mirror diagram11:32
§ · Frameworks

Named ideas worth stealing.

09:03list

How Printing Press works — 5 steps

  1. Capture — record a HAR file with Chrome DevTools while you use the site manually
  2. Sniff — Printing Press reads the recording, drops trackers/ads, groups real API calls by topic
  3. Generate — auto-build a Go CLI, a Claude skill, and an MCP server from the same spec
  4. Mirror — bundle a local SQLite copy of the relevant data (cache, not the whole DB)
  5. Run — single binary, invoke from slash command, natural language, schedule, or another agent

The Printing Press pipeline turns any human-driven web session into an agent-callable CLI in five steps, only one of which is manual.

Steal forany internal tool, paid SaaS, or no-API website you want Cloud Code to drive — record yourself doing the task once, ship a CLI
01:35model

Three ways agents connect to tools — CLI vs API vs MCP

  1. CLI — agent asks, tool returns only that ask (lightweight)
  2. API — agent asks, tool returns that ask plus everything else (verbose JSON)
  3. MCP — tool gives the agent the whole menu of actions before the agent asks (always loaded into context)

A clean mental model for evaluating any new agent-tool integration on token cost first.

Steal forthe rubric Joe should apply before bolting any new MCP onto a Cloud Code project — does this need to be MCP, or would a CLI do the job in 10% of the tokens?
§ · Quotables

Lines you could clip.

00:09
Skool.com doesn't have a public API, and yet I connected Cloud Code to it.
concrete proof shot — the whole video's thesis in one sentenceTikTok hook
04:50
Now there is one problem with CLIs and that is the fact that they have to exist first. And for a lot of tools, they actually don't exist unless a developer made them in the first place. But lucky for us, we are living in the future and we can now build them ourselves.
names the problem + flips it inside one breathIG reel cold open
03:20
If you have too many MCPs loaded within your cloud code… the descriptions of these MCP tools and these connectors get preloaded into the context window even before you type or prompt anything.
controversial-ish take, very shareable inside the AI-builder crowd — frames MCP as a context taxTikTok hook
11:08
Step one is probably the only manual step that you need to take because these following steps from two onward can already be handled end to end by your Cloud Code.
removes the 'this sounds hard' objection in one linenewsletter pull-quote
12:20
It's sort of similar to caching… just making sure that those local files are available on your device so that it is faster as well.
the local-mirror idea is the killer feature; this is the cleanest framing of itnewsletter pull-quote
§ · Pacing

How they spent the runtime.

Hook length60s
Info densityhigh
Filler8%
Sponsors
  • 08:2609:03 · RoboNuggets Community (own product)
§ · Resources Mentioned

Things they pointed at.

00:25productMyFitnessPal
00:10productSkool
00:35toolGoogle Photos CLI (community)
00:36toolGoogle Ads CLI (pp-google-ads)
00:38toolMercury CLI (community)
00:39toolKalshi CLI (community)
00:41toolDomino's CLI (pp-dominos)
07:43toolNotion CLI (community)
07:45toolSlack CLI (community)
07:46toolLinear CLI (community)
07:49toolFireflies.ai CLI (community)
08:07toolKlaviyo CLI (pp-klaviyo)
08:07toolTrigger.dev CLI (pp-trigger-dev)
08:07toolAhrefs CLI (pp-ahrefs)
08:08toolAllRecipes CLI (pp-allrecipes)
10:25toolChrome DevTools (Network tab → Preserve log → Save all as HAR)
12:25productCal AI (referenced as functionality to replicate via image input)
§ · CTA Breakdown

How they asked for the click.

08:26product
If you're interested in going from just using AI to getting paid for it, then check out the RoboNuggets community down in the description. We've got founders in there who landed their first client in weeks, live build sessions where we create this stuff together, and the actual templates behind what I just showed in this video.

Embedded as a brief mid-roll right before the 5-step payoff slide — earns the pitch by promising the meat is still coming. Soft secondary CTA at the end is just a subscribe ask. No pushy stack of links.

§ · The Script

Word for word.

HOOKopening / re-engagementCTAthe pitchmetaphoranalogystory
00:00HOOKWhat if I told you that you can now let Cloud automate any application out there even if that tool doesn't have a public API? Well, I just did that. Skull.com doesn't have a public API, and yet I connected Cloud Code to it. And here you can see I am querying some of the posts by our members right from within Cloud Code. MyFitnessPal also doesn't have a public API, and yet here, my Cloud Agent on Telegram just added the meal I had straight to the MyFitnessPal
00:25HOOKapp. And this is now possible because I just made custom CLIs or command line interfaces for these apps that I use. And with this new tool called PrintingPress, those CLIs are now so easy to create. In fact, it's so easy that someone created a CLI for Google Photos, for Google Ads if you want your agent to connect to Google Ads. There's one for Mercury. There's one for Kalshi, and there's even one for Domino's. So if you wanna order pizza using your Cloud Code agent, that is now possible too with the CLI. So if you want to create CLIs of your own, I think this tool will change the way you use Cloud Code if you use it correctly. So let's dive into it.
01:02So just to set the scene on why this tool that I'm about to show you is quite important, you know when you're working with agentic harnesses like Cloud Code, you need to connect them to external tools in order to do real work. And the reason why that is is because a lot of the information and the work that we actually do live in the tools that we use every day. And if you don't have a way for your agent like Cloud Code to connect to these tools, then you also won't be able to automate a lot of the work that you do in these platforms. Now as it stands, there are mainly three avenues by which we connect our agents to these tools. There is the command line interface or CLIs,
01:36application programming interfaces or APIs, and the one that is newest among them which are MCPs or model context protocols. Now this tool that we're about to go through today called PrintingPress basically lets you create a command line interface for any external tool out there. Now that's a lot of technical terms and abbreviations, so let me just differentiate what each of them actually entail. APIs, which are probably the most popular amongst these three, the way that works is quite simple. Let's say your agent asks for some information. The tool basically responds back with this structured output. Basically, a wall of text usually in a JSON format that gives you a lot of information.
02:14And often, it is quite verbose, which means that apart from giving your agent exactly what it needs, it also gives it a bit more information that it didn't really ask for. And it depends on the way that this API is structured from the external tool side, but most often, the output that the agent gets is quite verbose. And because there's a lot of words in here, that also means that it uses quite a lot of tokens. Now since then, Entropic actually invented this model context protocol. But the problem with this option is that if you have too many MCPs loaded within your cloud code, for example, what usually happens there is that in every session that you open, the descriptions
02:50of these MCP tools and these connectors get preloaded into the context window even before you type or prompt anything. And so if you were to imagine how that connection happens, basically, the external tool is giving the agent the whole menu of actions first even before the agent connects with that tool, which has its drawback as well because then it fills up the context window. And so this is mainly why when I'm trying to connect to an external tool, the first thing that I ask my Cloud Code to look for is to see if there is a CLI interface
03:18for that particular external third party tool. The reason why that is is because amongst these three, CLIs have the most potential to be the most lightweight. Because the way they can work is that if the agent asks for something, then the tool will give only that specific ask. And so if you think about the context used between the three of these, then the CLI tool would be the most minimal,
03:38while API and MCP connections usually have drawbacks when it comes to token usage. And just to show how that looks like under the hood, if in case you are curious, let's say if you're using a CLI tool to get the last three YouTube videos of my particular channel, for example, literally what the agent will do is to just type out a command like this, and then it will get the result back. If this API is designed to be verbose with its output, it will get not just the request that it's asking for, but also a lot of other attributes and parameters in here, which you might not necessarily need. And then if you go to the MCP,
04:12HOOKthat has a similar problem because if you have the MCP, let's say, for YouTube installed on your agentic platform, what's going to happen there is that these tools like search videos, get video details, get channel info, these tools and their descriptions will be loaded into your context. And even before you type any prompt into any particular cloud code session, then these words and tokens will be using up your context already even before you interface with your agent. And so that is why, at least for broad general use cases, I think CLI wins amongst these connection types. Now there is one problem with CLIs and that is the fact that they have to exist first. And for a lot of tools, they actually don't exist unless a developer made them in the first place. But lucky for us, we are living in the future and we can now build them ourselves using this open source project called the printing press. And if we go to printingpress.dev,
05:03HOOKis their website, it's basically a toolkit and you can think of it as a set of skills for your agent where if you invoke this printing press toolkit and skill that will allow your Cloud Code to print the best agent design CLI of all time from anything. So let's say a website doesn't have a public facing API. If you use PrintingPress and I was able to go through the process that they have earlier, your Cloud Code will basically guide you on how to create a best in class CLI for whatever tool it is that you want to create a connection for. And it will not only print you a token efficient Go CLI, so Go is this coding language by Google. And apart from that, it will also give you a Cloud Code skill, an Open Claw skill,
05:44HOOKand even an MCP server if you wish. And to get started with it, I actually recommend for you to check out these two links that they have here. One is their official GitHub repository where that toolkit lives, and this library where they already have CLIs for new tools that their community has already developed. So I'll link to their GitHub repo below. And to install this in Cloud Code, as usual, you can just send the link to this repository to your Cloud Code. But instead of just asking Cloud Code to install it for you, what I usually advise for you to do is to actually let Cloud Code personalize it for your setup. So you can see the prompt that I gave it. Very simple. I ask using this, what are the top three CLIs that I can print based on all you know about me? And that is pretty useful because you can see here that it's recommending to me to create a YouTube analytics CLI because I do YouTube content. I also send stuff on Substack. So if that's a CLI that I want to print, I can do that as well. And also because I used Todoist for a lot of my personal to dos, then it knows that that might be a CLI interface that would be useful to me. In fact, here you can see that it also taught about MyFitnessPal,
06:47but since we created that earlier together, that is now available to me. So try out a simple prompt like that. And for sure, since all of us have different use cases for Cloud Code and the work that we do, it might suggest different things for you. Now in case you want to just browse the official library or the current library of CLIs that have already been printed by their community,
07:08then you can just go to this other repo called the printing press library. Now do note that I think this toolkit was only launched like maybe a day or two ago. So for sure, the library here is not yet that big. So instead of browsing this library yourself, my advice is to just have Cloud Code do it for you. So you can see here, I gave it that link and I ask it what are the top CLIs here that might be useful to me given all you know about me. And it tells me here there is already a CLI for Notion. So if I want to automate Notion, that is something I can do. Slack is there as well. Linear for project management. If you're using fireflies.ai for meeting transcripts, that would be one as well. And you can see because this printing press toolkit made it now so easy to create these CLIs,
07:49CTAthere's already quite a few in there that may be useful to you. So there, with just those two repos, you are pretty well set to get started really. And if you want a bit more visual view, you can also browse the different printing press CLIs that they created here right in their website. There's even one that lets you order pizza from Domino's, which is quite interesting. I haven't tried that out yet, but, like, with the theme of this video, you can basically do a CLI for everything now apparently. But, of course, the real power of this tool is when you create the CLI yourself. So how do we do that? And by the way, if you're interested in going from just using AI to getting paid for it, then check out the RoboNuggets community down in the description. We've got founders in there who landed their first client in weeks, live build sessions where we create this stuff together, and the actual templates behind what I just showed in this video. The community is also the reason these lessons get made, so see that below if that's for you. So from within this Claude code session, that is actually how I created that MyFitnessPal
08:42CTACLI that I was testing it out earlier, and it literally only took me, like, fifteen minutes to set it up. And here, after the fact, I just asked it to teach me how printing press works, and it's basically this five step process. And instead of going through the text that it gave us here, you know, I'm a big fan of HTML slides, so I just asked my Cloud Code to create this HTML
09:01CTAslide for me just so that we can go through it better. And, basically, how the PrintingPress Toolkit works is that first, you help Cloud Code capture the essential actions within that website. So what you do there is you use the website normally with DevTools recording, save that, and then give that to Cloud Code in this HAR format. And if you don't know what that is, an HAR is basically an HTTP archive. So again, with a lot of these tools, it's just another text file. And to be honest, once you do this with your Cloud Code, it will actually guide you how to do this dev tools recording anyway. But how that basically works is when you're on the website that you're trying to automate, on Chrome, if you press f 12 let me just zoom that in so you can see. If you go to this network tab, click on preserve log and make sure it is recording. If you do the actions that you want to automate like this one, if I want to automate MyFitnessPal,
09:50what I'll do is to just do the steps manually once, like adding the food in here. And basically, the network here on the right, it will capture all of the network elements that happened from within this page. And then from that, what you can do is just do a right click. And if you go to copy, there is an option here to copy all as h a r. And if you do that, that will give you the HTTP archive that Cloud Code needs to move to step two. Now the great news is that step one is probably the only manual step that you need to take because these following steps from two onward can already be handled end to end by your Cloud Code, and you just need to sort of steer it and just make sure that the spec that you are trying to create is aligned with what you want. But, essentially, what it will do is it will use this skill, I believe, with printing press where it will read that recording, that HAR that you did. It will pick out the real API calls,
10:39drops noise, which there's a lot of them. There's trackers in that sort of interaction in the network that you just did, and basically makes endpoints for you grouped by topic. And then after that step, it will now generate the CLI tool and even give you a Claude skill from whatever spec it is that you agreed. Now something unique that they've done, which I think is quite smart, is they introduced this step where you actually bundle of a local copy of the relevant data from that external tool. Now in case that's confusing to you, it's actually simpler than you think. Basically, let's say you are connecting to MyFitnessPal
11:12all of their data, like their food database that lives in the cloud, basically in a computer that they have somewhere. Now what printing press apparently allows you to do and guides you to set up is to set up a local mirror where it downloads a select subsection, obviously not the whole database, of just the relevant data and stores it in what's called a SQL like database. So essentially, just the food that I guess is relevant to you or other stuff that you want to keep a local copy of. And the reason why this is important is because if you try to keep hitting this source in particular for those same data points, then you may encounter issues such as blocks to your IP. And also overall, that just costs more tokens and more bandwidth versus having to store select data in your local computer, which you can anyway ask your cloud code to edit if it becomes too sizable. So it's sort of similar to caching and just making sure that those local files are available on your device so that it is faster as well. And now once you have that, what you can now do is to run or even include this new CLI of yours as part of a routine to run on a schedule. And the way you invoke that just like any skill is just by typing the slash command for it or even just by talking to your Cloud Code in natural language that you want to connect to, let's say, Bifit the Spy using the CLI that you just built. And because I have Claude code connected to my Telegram agent, then what I can also do is
12:31invoke that skill whenever I need it and just ask Robo here to control my MyFitnessPal for me so that I don't have to do the logging manually. And I haven't tested it yet, but I think what I can also do is to send an image in here and sort of just replicate that Cal AI functionality where you pass in an image and it will figure out what to add. So I'm probably going to play around with this a bit and see how we can improve the CLI to accommodate for that. And there you go. That is how you make a CLI for literally everything now. So if you have any tools that you are working on or using sort of on a day to day basis and you can't find a solution to connect that to your AI agents, then this printingpress.dev
13:11CTAtoolkit may be something that you want to check out. I hope that was useful. And if it is, then consider subscribing so that we can put out more stuff like this. I'll see you guys next time. Thank you.
§ · For Joe

Steal the format — and the framing.

Cloud Code automation playbook

Reframe MCP-vs-CLI as a context-tax argument, then teach a 5-step pipeline where only step 1 is manual — that's the whole video.

  • Lead with a token-economy mental model before naming the tool. Jay spends 4 minutes on CLI-vs-API-vs-MCP context cost before he ever opens printingpress.dev — that earns him the right to pitch a specific solution.
  • Show proof shots in the first 30 seconds, not at the end. Two screen-recordings (Skool query + MyFitnessPal logging from Telegram) close the 'does this actually work?' objection before he even explains what Printing Press is.
  • Have Cloud Code generate your teaching slides. Jay says the 5-step framework slide was an HTML page he had Cloud Code build for him — that's a reusable production pattern for Joe's own dev tutorials.
  • Bury the CTA in the middle, right before the payoff slide. The RoboNuggets pitch comes at 8:26 and earns its place by promising the framework breakdown is still coming. No bottom-of-video pitches.
  • Use 'lucky for us, we are living in the future' as a pivot phrase. It's the cleanest 5-word turn from problem statement to product reveal Joe has seen all month.
  • When something has multiple interfaces (CLI + skill + MCP), pitch the interface, not the engine. 'Same logic, three interfaces' is exactly how Joe should describe Mod Producer / ShowRunner / etc when one engine drives many surfaces.
§ · For You

If you live inside Cloud Code, this is the upgrade.

What this means for your daily workflow

Stop bolting MCPs onto Cloud Code that you barely use — they're eating your context window before you type a single character. Try Printing Press for the one or two SaaS apps you actually live in.

  • Audit the MCPs currently loaded in your Cloud Code setup. Anything you haven't called in the last week is silently taxing every session — uninstall it.
  • Pick ONE app you use daily that doesn't have a great agent connection (Notion, your CRM, your billing tool, your CMS). That's your first Printing Press target.
  • Open Chrome DevTools, switch to the Network tab, enable 'Preserve log', then do the workflow you want to automate exactly once by hand. Save the HAR. That's literally all the manual work.
  • Hand the HAR + the Printing Press repo link to Cloud Code with the prompt: 'What are the top 3 CLIs I should print based on what you know about me?' Let it propose, not you.
  • Before you build a new MCP server for anything, ask yourself: would a CLI do this with 10% of the tokens? If yes, build the CLI.
  • Check the printing-press-library repo first — Notion, Slack, Linear, Fireflies, Klaviyo, Trigger.dev, Ahrefs, and Domino's are already done. Don't reinvent.
§ · Frame Gallery

Visual moments.