Technical
The Skill Soup Thesis: What It Looks Like in Practice
My core thesis is that the future belongs to people who combine skills across domains, not those who master one. I call it the skill soup: a base of widely useful capabilities that combine in unexpected ways. Let me show you what that looks like for one real project this month.
The Problem
A client needed a content pipeline: scrape a source, transcribe audio, summarize with an LLM, format as a newsletter, send via email. Five discrete skills. No single tool did the whole thing.
The Skills Involved
Scraping used Python with httpx and BeautifulSoup. Transcription used Whisper running locally. Summarization used Claude via the API. Formatting used Jinja2 templates. Sending used Amazon SES. Five domains, one pipeline.
None of those skills are rare on their own. But the combination is where the value lives. Anyone who knew only Python could have done the scraping. Anyone who only knew AWS could have wired SES. The project required someone comfortable with all five, plus the glue between them.
The Glue Is the Skill
# The actual pipeline structure
for source_url in sources:
# Skill 1: scraping
page = fetch(source_url)
audio_url = extract_audio_url(page)
# Skill 2: transcription
transcript = whisper_transcribe(audio_url)
# Skill 3: summarization
summary = claude_summarize(transcript)
# Skill 4: formatting
email_html = render_template('newsletter.j2', summary=summary)
# Skill 5: sending
ses_send(to=subscribers, html=email_html)That loop is the skill soup. The value is not in any single function call. It is in the arrangement. Someone who knows only one of the five cannot build this. Someone who knows all five, and the error handling between them, delivers the project.
Why It Wins
Specialists command higher hourly rates for a reason: they go deeper than generalists. But the pipeline above is not one specialist deep. It is five specialists wide. The work goes to whoever can wire it together.
AI agents accelerate this. I do not need to be elite at any of the five skills. I need to be proficient enough to recognize when each one applies and competent enough to debug when things go wrong. The agents fill in the rest.
The skill soup is the practical shape of being an AI supercharger. It is not about replacing expertise. It is about composing it. See the UNIX philosophy for the intellectual ancestor of this idea.
RELATED READING
The Consulting Shift I Am Making In Year Two
After a year of writing and building, my consulting practice is changing shape. Shorter engagements. Sharper outcomes.
ReadThe Frontend Shift: Shipping Less JavaScript In Year Two
A year ago I reached for Next.js for everything. This year I often reach for nothing.
ReadThe Serverless Lesson I Would Write On A Sticky Note
After a year of shipping serverless projects, one rule explains most of the wins and all of the losses.
Read