Luke Summerfield

10.4K posts

Luke Summerfield banner
Luke Summerfield

Luke Summerfield

@SavvyLuke

Helping others grow better 👉🏼 Product Strategy at @hubspot💡BJJ Black Belt, surfer, yogi, hiker, photographer, pugs. Join the book club 👇🏼

San Diego, CA Katılım Ocak 2012
1.2K Takip Edilen3.6K Takipçiler
Sabitlenmiş Tweet
Luke Summerfield
Luke Summerfield@SavvyLuke·
Real change can only come from a direct experience. ✨ (📷 by me)
Luke Summerfield tweet media
English
0
0
1
187
Luke Summerfield retweetledi
GREG ISENBERG
GREG ISENBERG@gregisenberg·
this video is the CLEAREST explanation of how claude skills + AI agents work and how to use them most people set up an AI agent and wonder why it keeps disappointing them. the context window is everything context is what the model assembles before it takes any action. think of it like everything the agent needs to read before it does anything. the quality of what goes in determines the quality of what comes out. the models are genuinely really good right now. claude and gpt are exceptional. the variable is almost always the context you give them. 1. agent.md files are mostly unnecessary every single line you put in an agent.md file gets added to every single conversation you have with your agent. a 1000 line file is around 7000 tokens burning on every run. the model already knows to use react. it can read your codebase. save the agent.md for proprietary information specific to your company that the model genuinely cannot know on its own. 2. skills are the actual unlock a skill.md file works differently. what loads into context is only the name and description, around 50 tokens. the full instructions only appear when the agent recognizes it needs that skill. so instead of 7000 tokens on every run you have 50. and the agent stays sharp because the context window stays lean. the closer you get to filling the context window the worse the agent performs, same way you perform worse when someone dumps 10 things on you at once. 3. here is how to actually build a skill the right way most people identify a workflow and immediately try to write the skill. what you want to do instead is run the workflow by hand with the agent first. walk it through every single step. tell it what to check, what good looks like, what bad looks like. correct it in real time. once you have had a full successful run from start to finish, tell the agent to review everything it just did and write the skill itself. it writes a better skill than you will because it has the full context of what actually worked in practice not in theory. 4. recursively building skills is how you go from frustrated to reliable when the skill breaks, and it will break, ask the agent exactly why it failed. it will tell you specifically what went wrong. fix it together in that same conversation. then tell it to update the skill file so that failure mode never happens again. ross mike did this five times with his youtube report generator. it now pulls from eight different data sources and runs flawlessly every single time without him touching it. 5. sub agents are something you earn not something you set up on day one start with one agent. build one workflow. turn it into one skill. once that works add another. ross mike has five sub agents now covering marketing, business, personal and more. it took months to get there and every single one exists because a workflow proved it deserved to exist. the people who set up 15 sub agents on day one and wonder why nothing works skipped all the steps that make the thing actually run. 6. your workflow is the thing the model cannot get anywhere else the model has been trained on everything. it knows more than you about most things. what it does not have is your specific process, your taste, your way of doing things. that is what skills capture. that is what makes your agent actually useful versus a generic one. downloading someone else's skill means downloading their context onto your setup and it will not work the way you want it to because it was never built around how you work. this is the clearest explanation of how agents actually work i have heard. @rasmic runs this stuff every single day and the results show it. full episode is now live on @startupideaspod where you get your pods people charge for this sorta stuff i give away the sauce for free i just want you to win watch
English
101
158
1.5K
125.6K
Luke Summerfield retweetledi
Claude
Claude@claudeai·
Introducing Claude Managed Agents: everything you need to build and deploy agents at scale. It pairs an agent harness tuned for performance with production infrastructure, so you can go from prototype to launch in days. Now in public beta on the Claude Platform.
English
2.1K
5.9K
56K
20.4M
Luke Summerfield retweetledi
Garry Tan
Garry Tan@garrytan·
My thought on my OpenClaw right now: I have a Tesla Roadster right now but honestly the moment of transformation will be when everyone has the Model 3 and it's going to be amazing and I want that for all of us Personal agents feel like flying in a way most haven’t felt yet!
English
119
45
1.2K
78.4K
Luke Summerfield retweetledi
Marc Andreessen 🇺🇸
Magical OpenClaw experiences that use frontier models cost $300-1,000/day today, heading to $10,000/day and more. The future shape of the entire technology industry will be how to drive that to $20/month.
English
623
519
7.7K
1.7M
Luke Summerfield retweetledi
Brian Halligan
Brian Halligan@bhalligan·
Best mindset shift I’ve heard: Stop hunting for one mentor. Make every single encounter your mentor.
English
24
72
670
54.5K
Luke Summerfield
Luke Summerfield@SavvyLuke·
I’ve been putting this into practice - powered up via Readwise integration for ingestion
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
0
0
0
28
Luke Summerfield retweetledi
Brian Halligan
Brian Halligan@bhalligan·
In the AI era, the middle manager is in trouble. @ouraring CEO Tom talks about the "Dilbert problem": a middle manager whose only ambition is to make their own life manageable.
English
8
10
72
14.1K
Luke Summerfield retweetledi
Stitch by Google
Stitch by Google@stitchbygoogle·
We are completely humbled by the amazing response to our launch last week! 🫶 Now, we want to help you get the absolute best results from Stitch. In this new video, David East walks you through how to consistently get premium results. We also launched a new prompt enhancer (located under ‘+’ menu) to help you quickly collaborate on your vision before you submit your first prompt. Stitch doesn't replace the design process—it is a tool for fast exploration and refinement, which is most effective when you step into the role of Creative Director. Here are David's top strategies for taking your designs from generic to amazing: 🧠 Start with Intent: Define exactly who the design is for and how you want them to feel before you start building. 🎨 Enhance your prompt: You can use the new prompt enhancer (under the ‘+’ button’) to teach you design language and swap abstract words like "sporty" for tangible aesthetic descriptions like "high-end stationery" or "architectural limestone". 📐 Master Color Hierarchy: Treat colors as visual weight—Neutral for the canvas, Primary for ink, and Tertiary for your loudest accents. Watch the full breakdown and see the transformation here👇images in 🧵
English
56
291
3.5K
683.7K
Luke Summerfield retweetledi
BuccoCapital Bloke
BuccoCapital Bloke@buccocapital·
The most interesting part of the Dorsey essay on management TL;DR - Remote companies have an advantage in the AI era because they can only thrive with rigorous documentation, which is perfectly repurposed as context for AI
BuccoCapital Bloke tweet media
English
59
88
1.4K
94.8K
Luke Summerfield retweetledi
GREG ISENBERG
GREG ISENBERG@gregisenberg·
sequoia put out a blog post called "services is the new software" look at this map of over $1T in services being replaced by AI agents
GREG ISENBERG tweet media
English
262
501
4.2K
612.5K
Luke Summerfield
Luke Summerfield@SavvyLuke·
@bhalligan Love where this is going… but had to google “Suno” to connect the dots on the analogy. Maybe use something more well understood, ex: Mixtable Sampling or Freestyle (tho that’s arguably what Jazz is).
English
1
0
0
216
Luke Summerfield retweetledi
Brian Halligan
Brian Halligan@bhalligan·
I got a chance to interview Jack Dorsey for the Long Strange Trip pod about his new article (in comments) on how to build a modern ai native company in 2026. I took some of his ideas and mixed them with some observations about the hyper scaling ai native CEOs I work with every day. This is a first draft. Thoughts? If this is landing, I can flesh it out more.
Brian Halligan tweet media
English
33
17
203
29K
Luke Summerfield retweetledi
Alex Lieberman
Alex Lieberman@businessbarista·
Contrarian take: there's never been a better time for early career professionals to command the attention of leaders in their company. How? Become the AI Guru in your company. Every co has a few of them & they instantly earn visibility with the c-suite... If you're an SDR, map out the inbound SDR process end-to-end in your org and build an AI agent on Vercel that automates several/all steps. If you're an engineer, evangelize Claude Code & lead enablement workshops, helping other technical folks understand everything from hooks to worktrees to claude[.]md. If you're a growth marketer, build a paid media workflow that mines creative ideas from reddit, spins up 100s of ads using Nano Banana, sets up the campaign on Meta, and drives traffic to custom landing pages, so you can test ad spend far more efficiently at scale. You could be the most junior person in your company, but if you're truly viewed as the AI Guru, you are wildly valuable & have way more leverage than you think.
English
64
23
247
108.9K
Luke Summerfield retweetledi
Claude
Claude@claudeai·
Computer use is now in Claude Code. Claude can open your apps, click through your UI, and test what it built, right from the CLI. Now in research preview on Pro and Max plans.
English
2.6K
4.8K
59.3K
16M
Luke Summerfield retweetledi
Lenny Rachitsky
Lenny Rachitsky@lennysan·
Claire Vo's first day with @OpenClaw it deleted her family calendar. Now she runs 9 agents across 3 Mac Minis, and said "I haven't felt like this since I was a teenager learning to code." Her sales agent Sam does a daily CRM sweep, identifies decision-makers from new signups, and sends personalized outreach—replacing a part-time salesperson she was paying 10 hours a week. Her home agent Finn pings her and her husband every day at 3pm: "Which of you is picking up which kids?" Then flags when the oldest's basketball conflicts with the middle kid's soccer and asks how they want to split duties. She also has agents for podcast prep, kids' homework help, and course project management. Claire (host of How I AI, founder of @ChatPRD) started as one of OpenClaw's most vocal skeptics. She now calls it "a ChatGPT moment." In our in-depth conversation, she breaks down: 🔸 Her exact setup: Mac Mini, separate Gmail, dedicated local account 🔸 The progressive trust model: first calendar access, then read email, then draft, then send — just like onboarding an EA 🔸 Why one agent is a mistake—and why she thinks about it like Slack channels, not a single assistant 🔸 How to use Claude Code as a "brain surgeon" to fix and manage your OpenClaw when things break 🔸 "The yappers API" — why rambling into a voice note is the highest-bandwidth way to set up your agent 🔸 Why management skills matter more than technical skills for making this actually work Listen now 👇 youtu.be/DIa0MYJzM5I
YouTube video
YouTube
English
81
72
1K
552.4K
Luke Summerfield retweetledi
Luke Summerfield retweetledi
Claude
Claude@claudeai·
Your work tools in Claude are now available on mobile. Explore Figma designs, create Canva slides, check Amplitude dashboards, all from your phone. Give it a try: claude.com/download
English
1.4K
1.6K
21.2K
7.4M
Luke Summerfield retweetledi
Brian Halligan
Brian Halligan@bhalligan·
"Your job is process design, my job is outcome delivery" This might be my favorite single clip of the podcast to date:
English
13
13
164
25.9K
Luke Summerfield retweetledi
Claude
Claude@claudeai·
You can now enable Claude to use your computer to complete tasks. It opens your apps, navigates your browser, fills in spreadsheets—anything you'd do sitting at your desk. Research preview in Claude Cowork and Claude Code, macOS only.
English
5K
14.4K
139.2K
77.4M
Luke Summerfield retweetledi
Akshay 🚀
Akshay 🚀@akshay_pachaar·
How to setup your Claude code project? TL;DR Most developers skip the setup and just start prompting. That's the mistake. A proper Claude Code project lives inside a .𝗰𝗹𝗮𝘂𝗱𝗲/ folder. Start with 𝗖𝗟𝗔𝗨𝗗𝗘.𝗺𝗱 as Claude's instruction manual. Split it into a 𝗿𝘂𝗹𝗲𝘀/ folder as it grows. Add 𝗰𝗼𝗺𝗺𝗮𝗻𝗱𝘀/ for repeatable workflows, 𝘀𝗸𝗶𝗹𝗹𝘀/ for context-triggered automation, and 𝗮𝗴𝗲𝗻𝘁𝘀/ for isolated subagents. Lock down permissions in 𝘀𝗲𝘁𝘁𝗶𝗻𝗴𝘀.𝗷𝘀𝗼𝗻. There are two .𝗰𝗹𝗮𝘂𝗱𝗲/ folders: one committed with your repo, one global at ~/.𝗰𝗹𝗮𝘂𝗱𝗲/ for personal preferences and auto-memory across projects. The .𝗰𝗹𝗮𝘂𝗱𝗲/ folder is infrastructure. Treat it like one. The article below is a complete guide to 𝗖𝗟𝗔𝗨𝗗𝗘.𝗺𝗱, custom commands, skills, agents, and permissions, and how to set them up properly.
Akshay 🚀 tweet media
Akshay 🚀@akshay_pachaar

x.com/i/article/2034…

English
212
1.5K
12.2K
2M