rudder-cli-setup
Installs and authenticates rudder-cli. Use when installing rudder-cli, setting up rudder cli, rudder-cli command not found, or authenticating with RudderStack
Plans instrumentation for new features starting from product requirements before code exists. Use when building new features and need to define events as part of product definition.
$ npx -y skills add rudderlabs/rudder-agent-skills --skill rudder-design-first-instrumentation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/rudder-design-first-instrumentationContext preview
The summary Claude sees to decide when to auto-load this skill.
Plans instrumentation for new features starting from product requirements before code exists. Use when building new features and need to define events as part of product definition.
name: rudder-design-first-instrumentation description: Plans instrumentation for new features starting from product requirements before code exists. Use when building new features and need to define events as part of product definition. allowed-tools: "Bash(rudder-cli *), Read, Write, Edit"
This skill guides instrumentation planning for **new features** where events are defined during product definition, before implementation begins.
| Scenario | Use This Skill? | |----------|-----------------| | Building a new feature, events not yet defined | Yes | | Product requirements include analytics needs | Yes | | PM and engineering collaborating on what to track | Yes | | Existing product needs instrumentation | No — use `rudder-code-first-instrumentation` | | Restructuring existing tracking | No — use `rudder-code-first-instrumentation` |
┌─────────────────────────────────────────────────────────────────────┐
│ DESIGN-FIRST INSTRUMENTATION │
└─────────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────┐
│ 1. REQUIREMENTS │ ← What questions must the data answer?
└────────┬────────┘
▼
┌─────────────────┐
│ 2. EVENT DESIGN │ ← Define events (names only, no properties yet)
└────────┬────────┘
▼
┌─────────────────┐
│ 3. HUMAN │ ← PM/Eng review: Are these the right events?
│ CHECKPOINT │
└────────┬────────┘
▼
┌─────────────────┐
│ 4. PROPERTY │ ← Define properties for approved events
│ DESIGN │
└────────┬────────┘
▼
┌─────────────────┐
│ 5. BUILD YAML │ ← Create tracking plan definitions
└────────┬────────┘
▼
┌─────────────────┐
│ 6. IMPLEMENT │ ← Code the feature with instrumentation
└─────────────────┘Start with the questions the data must answer:
## Feature: [Feature Name] ### Business Questions - [ ] What is the conversion rate through this feature? - [ ] Where do users drop off? - [ ] How long does it take users to complete the flow? - [ ] What variations do users prefer? ### Success Metrics - Primary: _______________ - Secondary: _______________ ### Funnel Stages 1. Entry point: _______________ 2. Key action: _______________ 3. Completion: _______________ ### Stakeholders - PM: _______________ - Engineering: _______________ - Data/Analytics: _______________
Define events as user stories or behavioral descriptions first — **no properties yet**.
Use clear, behavioral language:
## Events for [Feature Name] ### Event: Feature Opened - **When:** User opens the feature for the first time in a session - **Why track:** Measures feature discovery and initial engagement - **Funnel position:** Entry ### Event: Configuration Started - **When:** User begins configuring the feature - **Why track:** Measures intent to use feature - **Funnel position:** Middle ### Event: Configuration Completed - **When:** User successfully completes configuration - **Why track:** Measures successful adoption - **Funnel position:** Completion ### Event: Configuration Failed - **When:** User encounters an error during configuration - **Why track:** Identifies friction points - **Funnel position:** Error state
| Pattern | Example | Use For | |---------|---------|---------| | Feature + Action (Past Tense) | `Audience Created` | Completed actions | | Feature + State | `Checkout Started` | State transitions | | Object + Action | `Product Viewed` | Standard interactions |
**Critical:** Before defining properties, get alignment on events.
## Event Review Sign-Off Feature: _______________ Date: _______________ Approved Events: - [ ] Event 1: _______________ - [ ] Event 2: _______________ - [ ] Event 3: _______________ Rejected/Deferred: - [ ] _______________ Approved by: - PM: _______________ - Engineering: _______________
After events are approved, define properties for each.
For each event, ask:
1. **What context is needed to answer the business questions?** 2. **What attributes describe this action?** 3. **What will we group/filter by in dashboards?**
## Event: Audience Created ### Required Properties | Property | Type | Description | Example | |----------|------|-------------|---------| | audience_id | string | Unique identifier | "aud_123" | | audience_name | string | User-provided name | "High Value Users" | | condition_count | integer | Number of conditions | 3 | ### Optional Properties | Property | Type | Description | Example | |----------|------|-------------|---------| | template_used | string | If created from template | "ecommerce-buyers" | | creation_method | string | How it was created | "wizard" \| "manual" | ### Context (Auto-included) - workspace_id (from session context) - user_id (from identify)
Look for properties used across multiple events — these become **custom types**:
## Shared Patterns Identified ### AudienceType (used by: Created, Updated, Deleted) - audience_id - audience_name - audience_type ### ConditionType (used by: Created, Updated) - condition_id - condition_type - condition_operator
Convert approved designs to tracking plan YAML.
1. Custom Types ← Reusable patterns identified in
A Claude Code plugin marketplace and Agent Skills collection that teaches your AI coding agent how to drive every programmatic RudderStack surface — CLI, MCP server, Terraform, and Profiles — with the right preflight checks, commands, and recovery paths.
Installs and authenticates rudder-cli. Use when installing rudder-cli, setting up rudder cli, rudder-cli command not found, or authenticating with RudderStack
Validates, previews, and applies RudderStack resource changes via YAML specs. Use when iterating on RudderStack resources with rudder-cli - validates specs,…
Imports existing RudderStack workspace resources into YAML files for git-based management. Use when importing existing RudderStack resources to CLI management…
Creates and manages RudderStack transformations and libraries with local testing. Use when creating, editing, or managing RudderStack transformations and…
Generates type-safe SDKs (Swift/Kotlin) from tracking plans with compile-time validation. Use when generating type-safe event tracking code from tracking plans…
Derives tracking plans from existing codebase types and structures. Use when instrumenting an existing product that wasn't well-instrumented or restructuring…