Copy as markdown[View .md](https://docs.funnelfizz.com/tutorials/agentic-funnels "View the raw markdown for this page")[Open in Claude](https://claude.ai/new?q=Read%20https%3A%2F%2Fdocs.funnelfizz.com%2Ftutorials%2Fagentic-funnels.md%20and%20help%20me%20with%20this%20FunnelFizz%20topic%3A%20Agentic%20funnels%20basics%20%E2%80%94%20connect%20your%20agent "Open this page in Claude with context")[Open in ChatGPT](https://chat.openai.com/?q=Read%20https%3A%2F%2Fdocs.funnelfizz.com%2Ftutorials%2Fagentic-funnels.md%20and%20help%20me%20with%20this%20FunnelFizz%20topic%3A%20Agentic%20funnels%20basics%20%E2%80%94%20connect%20your%20agent "Open this page in ChatGPT with context")

# Agentic funnels basics

*\~15 minutes · Intermediate*

How to involve an AI coding agent in your FunnelFizz setup — both for initial configuration and for writing tracking code into your app.

## Who this is for[​](#who-this-is-for "Direct link to Who this is for")

* You use Claude Code, Cursor, ChatGPT, Copilot, or another AI coding agent.
* You want to hand off as much grunt work as possible and focus on the strategy.

## The setup flow (outline)[​](#the-setup-flow-outline "Direct link to The setup flow (outline)")

### 1. Point your agent at the skill bundle[​](#1-point-your-agent-at-the-skill-bundle "Direct link to 1. Point your agent at the skill bundle")

Paste this into your agent:

```
Read https://docs.funnelfizz.com/skill.md and follow it to set up FunnelFizz for this project.
```

The agent reads the bundle, asks you for any credentials it needs (Stripe key, your FunnelFizz API token), and runs through signup + tracking install + Stripe connect + domain verification automatically.

See [AI agents → Hand it to your agent](https://docs.funnelfizz.com/ai-agents/hand-it-to-your-agent.md) for the full script.

### 2. Have the agent add tracking to your codebase[​](#2-have-the-agent-add-tracking-to-your-codebase "Direct link to 2. Have the agent add tracking to your codebase")

```
Add FunnelFizz tracking to this app:

1. Install the script in the root layout's <head>.

2. On every page, fire a pageview event.

3. After successful signup, call funnelfizz('identify', { userId, email }).

4. On pricing page CTA click, fire event 'pricing_cta_clicked'.
```

Your agent will wire these into your framework's conventions (Next.js Router events, React context, whatever applies).

### 3. Have the agent write your custom events[​](#3-have-the-agent-write-your-custom-events "Direct link to 3. Have the agent write your custom events")

```
Look at the app flows we have and add a `funnelfizz('event', ...)` call at each milestone:

- signup complete

- first project created

- first 3 projects (activation signal)

- first export / first publish
```

Your agent will look at the codebase and instrument the right spots.

### 4. Agentic traffic — is your agent bringing users?[​](#4-agentic-traffic--is-your-agent-bringing-users "Direct link to 4. Agentic traffic — is your agent bringing users?")

An emerging category of traffic is "my AI agent recommended this tool." FunnelFizz's channel categorizer detects `chatgpt.com`, `claude.ai`, `perplexity.ai`, `gemini.google.com`, and `copilot.microsoft.com` as the `ai_llm` channel.

Split your funnel by channel = `ai_llm` to see how much traffic is coming from AI tools specifically — often a surprisingly good source for SaaS.

***

*Full write-up coming soon.*

**Related:**

* [AI agents → Overview](https://docs.funnelfizz.com/ai-agents/overview.md)
* [AI agents → Hand it to your agent](https://docs.funnelfizz.com/ai-agents/hand-it-to-your-agent.md)
