惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
The GitHub Blog
The GitHub Blog
I
InfoQ
A
About on SuperTechFans
GbyAI
GbyAI
宝玉的分享
宝玉的分享
爱范儿
爱范儿
博客园 - 【当耐特】
博客园 - 司徒正美
博客园 - 聂微东
P
Proofpoint News Feed
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
B
Blog RSS Feed
Jina AI
Jina AI
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
博客园 - 叶小钗

Amplitude

Bring headless Amplitude where you work Should I install the Amplitude SDK? Amplitude climbs to #3 in G2 Digital Analytics Momentum I was the bottleneck Your agents are only as good as your data context The New Trust Economy in Financial Services See how Agent Analytics governs agent trace data with access controls and privacy redaction making it safe to send us your agent traces. Connecting Agent Performance to Product Outcomes The Hidden Cost of a Bad AI Answer Verification loops in software factories: What PMs need to know Your AI Chat Box Isn't a Strategy. Where You Put It Is. The Neobank Squeeze: Why Classic Banks Need to Learn to Move at Challenger Speed From Context to Intelligence: Building Self-Improving Products in Banking and Insurance Practical Guide to Evaluating Open Models: Achieving Sonnet-level performance with Kimi AI Can Build. Can It Know What Worked? Your Analytics Just Joined Discord How HYBRD Turned Agent Evals into a Retention Signal Use Amplitude with Your Existing Adobe Tags Beyond the Rate: Retail Banking's New Competitive Front How NS Prevented €1.8M in Revenue Loss Through Experimentation Go from Product Launch to Insight to Action in Minutes What Makes a Good vs Bad North Star Metric The Role of Feature Management in Successful Product Development Cohort Retention Analysis: Reduce Churn Using Customer Data 7 Steps to Measuring the Success of a Feature 14 Best Product Management Tools for 2026 (Plus Tips from Senior PMs) The Definitive Guide to Behavioral Cohorting Putting A Number On AI Quality Meet the Winners of the 2026 Amplitude AI Impact Awards Beyond Last-Touch Attribution: Find Out Which Interactions Really Matter
Introducing Amplitude Wizard CLI: Set Up Amplitude from Y...
Cassie Peretore · 2026-04-30 · via Amplitude

This blog post was co-authored by Will Chin, Principal Product Manager at Amplitude.

TL;DR:

LITTLE BIT LONGER VERSION:

We just shipped the Amplitude Wizard CLI, an AI-powered command-line tool that sets up the Amplitude platform from the heart of your product: your code. It handles sign-up, SDK installation, custom instrumentation derived from your product flows, verification, MCP install, and more.

Today’s Wizard handles setup. Coming soon: every Amplitude operation is a first-class command. Built for developers and the AI agents working alongside them.

Setting up an analytics tool usually looks something like this: one tab for the analytics tool itself, one for developer docs, one for your app, plus your terminal or IDE. You get all that prepped, and you’re about ready to decide where to install the SDK. Then it dawns on you …

What exactly do I need to track? How do I translate my analysis questions into events? What about event properties? Shoot, user properties too?

These fundamental questions are hard to answer if you aren’t already an analytics expert, and the decisions you make today could shape what your data looks like for years. That’s a lot of pressure.

But honestly, you really shouldn’t have to figure this out alone. Your code holds the answers. So we built a setup CLI that starts there.

Figuring out what to track is the hard part, but your code already knows

The whole point of analytics is to answer your top-of-mind product questions. But in order to set up the instrumentation that allows you to answer those questions, you’ve had to get into the technical weeds of what to track and how to track it:

  • For a multi-step checkout, do you fire one event per step, or one event with current_step as a property?
  • If Autocapture captures clicks, is your custom cta_clicked event a duplicate or a useful semantic layer on top?
  • What do you name your events?

All this just to check on your conversion rate? That seems harder than it needs to be. And from instrumenting thousands of products, we realized that it is. Your routes, pages, and key flows already encode your instrumentation answers.

We built the Amplitude Wizard to uncover those answers in your codebase. It reads your code, then proposes and executes a starter tracking plan. And it isn’t just an easier way to build your schema: instrumentation from the codebase is faster, higher-quality, and fits how your product actually works.

Initiating the whole Amplitude platform

To use the Wizard, go into your project and run:

An agent then guides you through a full-scale Amplitude implementation in about 20 minutes or less.

Beyond not having to leave your tools, the thing that really makes the Wizard CLI feel different is that it doesn’t stop at “package installed.” Real instrumentation touches every Amplitude surface, and the code is the only place with enough context to wire all of them in one pass.

What it handles end-to-end
  1. Sign up or sign in via browser-based OAuth
  2. Detects your framework
    1. Supported: Next.js, Vue, React Router, Django, Flask, FastAPI, Swift, React Native, Android, Flutter, Go, Java, Unreal, Unity, plus JavaScript (web and Node), Python, and a generic fallback
  3. Installs the right SDK with whichever package manager your project already uses: npm, pnpm, yarn, bun, pip, and friends
  4. Writes the init code and your first events by reading your codebase for context so you’re not starting from a blank track() call
  5. Configures the power of the Amplitude platform: Autocapture, Session Replay, Feature Experiment, Guides & Surveys, etc.
  6. Drops the right API key into your .env file (no copy/paste from the Amplitude UI, the Wizard pulls it for you)
  7. Verifies ingestion by polling until it sees your first event land, so you know it worked
  8. MCP install for your IDE, so you can query Amplitude from your code, too
    1. Supported: Claude Code, Claude Desktop, Cursor, VS Code, Zed, and Codex
  9. Slack integration, so you can share learnings where your team works
Security defaults
  • API keys are never printed to the terminal after they’re written to .env
  • Logs are redacted
  • .gitignore is checked before any key hits disk
  • OAuth follows the same browser-based pattern Claude Code uses for auth
  • Telemetry can be disabled with DO_NOT_TRACK=1. Diagnostics shared via /feedback are consent-gated.

What’s next for the Wizard

The Wizard CLI is so much of an improvement to traditional setup that it’s our new recommended path to a working Amplitude implementation. We’re not stopping there.

Today’s Wizard is a CLI you run and step through. The custom instrumentation is a first pass. It covers the obvious flows well, but doesn’t yet handle the harder taxonomy work or stay in sync as your code changes.

We’re building to turn the CLI into an engine, and the interface won’t be the CLI for long. It’ll be the AI agent you’re already chatting with:

“Hey Claude, I want to add Amplitude to this app. Go sign up and set it up for me.”

That self-driving version is coming really soon. And once it’s here, every Amplitude operation, not just setup, will become a first-class command the agent can call:

npx @amplitude/wizard        # first-run wizard (today)
amplitude chart list         # list charts
amplitude cohort create      # create a cohort
amplitude experiment deploy  # deploy an experiment

Setup is the first step

The Wizard CLI is useful right now. It will get you set up faster than existing setup options, and we’d love for you to try it. But even though CLIs are a hot commodity right now, the CLI isn’t really the point.

The point is that analytics work belongs in the same place as the code that generates the events. Your IDE is the surface. Your AI coding agent is the interface. Your code is the context. Setup is just the most obvious place to start this mindset shift because it’s the most easily-isolated piece of work, but the same logic extends well past setup.

The setup Wizard makes the first step easier. Everything else gets easier once you realize that this is where the work belongs.

Try the Wizard now:

npx @amplitude/wizard

or read more about it in our docs.

Tell us what’s missing by filing an issue on GitHub, using /feedback within the Wizard, or dropping us a note at wizard@amplitude.com. We’re shipping fast and reading everything.