🍿 The Missing Tool in Your Tech Stack


Hey Reader,

A couple of weeks ago, I kicked off the AI Agent Series 🧠⚙️ and the response has been wild 🤯.

So many of you said, “I had no idea it was this fast to build AI Agents”.

I walkthrough simple AI Agent Frameworks like this to make it useful for you.

No fluff, no abstractions. Just real tools, real use cases, and clean architecture that you can build on.

And Today, we’re diving into an AI tool that every developer should be using and is probably missing from your Tech Stack.

But before we get into it, a quick word from our sponsor 👇

PRESENTED BY WORKOS AUTH KIT

Most devs start with auth that’s "good enough for now."
Until now turns into real users, real security needs, and enterprise deals on the line. I’ve seen it firsthand, clients scrambling to patch auth when it’s already too late.

Auth is something we need to think from the get-go.

WorkOS AuthKit is what serious AI startups use when they outgrow weekend-hack tools and need authentication that scales.

It’s not just another plug-and-play auth SDK.
It’s a fully baked identity layer, with SAML, SCIM, device fingerprinting, and maturity to handle enterprise scale.

🚀 Trusted by top AI companies like OpenAI, Vercel, Cursor, and Perplexity
🔐 Built for security teams and scaling startups alike
🧠 Designed with GenAI infra in mind.

What more could you ask for? 🎥 You can check out the demo video here.

Whether you’re building AI agents, SaaS, org-based tools, or B2B platforms, WorkOS AuthKit gives you the grown-up stack from day one.

🍿 Weekly Snack: Build your Own AI Agent Assistant


Let's be real. If you’ve ever tried to build with LLMs directly, you know the pain.

The code is not intuitive, and changes completely depending on the AI provider such as OpenAI, Anthropic etc.

That’s where the Vercel AI SDK saves the day.

The Vercel AI SDK is a smart wrapper around popular LLM providers like OpenAI, Anthropic, and more. It gives you a consistent API no matter which model you use.

Here's a visual snippet:

Here, we're building a simple Agent Assistant 🤖 for me.
This assistant has access to a generateKeywords tool, and we're using Anthropic (via the Vercel AI SDK) as the model behind it.

anthropic(): a wrapper from the Vercel AI SDK that gives you a clean way to use Claude 3.5.

tool() defines a real function your agent can call. In this case, generateKeywords helps make YouTube videos more searchable.

zod - a powerful validation library that makes sure your tool only runs when the inputs are correct.

Agent() (from Convex) ties everything together.

It combines the model, instructions, and tools into an AI agent that can actually do things, not just respond.


Notice how readable and flexible this is.

You don’t need to deal with model-specific logic or custom wiring. Just build your tools, give the agent instructions, and you’re done.

🚀 Latest Frontend News

🔒 Block AI crawlers with just one toggle, no need to mess with robots.txt anymore.

Want to build a smarter Slackbot? 🤖 — This guide shows you how using the Vercel AI SDK.

🧾 Receipt print UI is a vibe and yes, developers are actually recreating it on the web.

Shadcn just dropped Blocks for Wiki-style sites - finally, internal docs that don’t feel like a chore.

Meet TanStack DB 🧠 - think React Query but for fully reactive, transactional state.

You can now deploy your own MCP server on Vercel ⚙️, multi-agent LLM apps just got way easier to build.

This new notebook-style UI built 📓 with Shadcn gives Notion and Jupyter a run for their money.

Databricks acquired NeonDB - a big step toward the most dev-friendly cloud database.

🧪 CodeRabbit AI now does live AI code reviews in your IDE - like pair programming, but with an agent.

I built a full AI SaaS Agent in 13 minutes - backend, auth, UI and all. Here's how it went

🎁 I’ve made the "Why Next.js" series from my Modern Full Stack Next.js Course free for the next 48 hours. If you’ve ever wondered whether you’re using the right framework, this is your chance to go deep, for free.

🎥 Weekly Youtube Videos

Check it out and subscribe to my channel ↗️ for more Frontend, Leadership and Career Development content.

Build and Deploy an AI Agent That Codes Like a Senior Software Engineer

video preview

How I Built A Complete AI SaaS Agent From Scratch in JUST 13 Minutes!

video preview


What do you think of today's Newsletter? Simply click on one of the links below.

🔥 Love it!

✔️ It’s not bad

🫢 You can do better



All past newsletters
can be found here.

You can email me at me@kulkarniankita.com to advertise/sponsor the newsletter.

For those curious, I write all my emails using Convertkit.

Ankita Kulkarni

Join 9200+ subscribers reading by weekly personalized Newsletter that helps developers level up their skills through weekly Frontend and Leadership Snacks. You get a deep dive into a Tech topic, Actionable tips to excel in your career and a toolbox!

Read more from Ankita Kulkarni
The Subtle UX Trick That Makes Apps Feel Premium

Hey Reader, I’ve kicked off a brand-new series on YouTube: The AI Agent Series where you’ll learn how to build, deploy, and scale powerful AI Agents from scratch. To get started, check out the series here ↗. I listed down tasks I'd hire for and instead, built an AI Assistant Agent with Convex, WorkOS Authkit and Next.js. This week, I'm dropping a video showing 📹 How I shipped a AI Agent SaaS in just 13 minutes and we'll buid your own Assistant step-by-step. Now onto today’s sponsor 👇...

Create Your First AI Agent

Hey Reader, Ever Wish You Had a Senior Engineer Reviewing Your Code 24/7? 🧠Now you do and it’s powered by AI. This is Part 1 of my new AI Agent Series where we’re building and deploying real AI agents that can think, analyze, and act like a senior software engineer 🤓. This project is called AI Code Reviewer and it’s not just a fancy chatbot. It remembers past messages, gives contextual feedback and helps you ship better code, faster. Here's the Tech Stack: → ⚡ Next.js 15 + React 19 → 🧠 Convex...

after function in Next.js

Hey Reader, Next.js has a bunch of little features that feel fun at first — but can actually change the way you build. This week’s snack is one of those. That’s the whole point of Frontend Snacks: giving you small, sharp insights that make a real difference and ones you can actually apply. Weekly Snack: after function 🍿 Next.js 15 introduces after() — a new API that lets you schedule server-side code to run after the response has been sent to the browser. So your UI renders instantly, and the...