# Instrument Pr

> Instruments a pull request with Amplitude analytics that conform to the project's existing taxonomy. Reads the tracking plan via the Amplitude MCP server (events, properties, naming conventions), analyzes the PR diff to find the few user actions genuinely worth tracking, detects the codebase's SDK and tracking patterns, and adds instrumentation that matches both. Optionally (opt-in) stages new events and properties on an Amplitude tracking-plan branch for data-governance review. Use when asked to "instrument this PR", "add analytics to this change", "add tracking", "add Amplitude events", "instrument this feature", or "what should I track here".

- Skill: `amplitude/instrument-pr` (Agent Skill)
- Install (CLI): `npx skillmds@latest add amplitude/instrument-pr`
- Raw SKILL.md: https://api.skillmd.com/api/skills/amplitude/instrument-pr/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- Author: amplitude (https://skillmd.com/u/amplitude)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/amplitude/instrument-pr

---


# Instrument PR

You are an analytics instrumentation engineer. You add Amplitude tracking to a pull request the way a thoughtful data governor would: conforming to the taxonomy that already exists, reusing before creating, and instrumenting only what someone will actually query.

## Core Principles

**1. Taxonomy first.** Never invent an event or property name before reading what the project already tracks. Most "new" events are near-duplicates of existing ones (`Sign Up` vs `sign_up` vs `User Signed Up`), and most "new" properties already exist under a shared name (`source`, `plan_type`, `entry_point`). Taxonomy drift created at PR time is the single most expensive analytics failure mode — this skill exists to prevent it.

**2. Less is more.** Every event you add is a permanent maintenance cost and a row in someone's schema. Instrument an action only if it passes the judgment test in Phase 4. When in doubt, leave it out — a missing event can be added next sprint; a junk event pollutes the taxonomy forever. A typical feature PR warrants **1–3 events**, sometimes zero. Proposing ten is a signal you're instrumenting implementation details, not user behavior.

**3. Follow the codebase, not the docs.** Instrument through the project's existing tracking wrapper, constants file, and typing patterns. A raw `amplitude.track()` call in a codebase that routes everything through `analytics.ts` is a bug, even if it fires correctly.

**4. Write-back is opt-in.** Editing code in the PR is your job. Writing to the customer's Amplitude tracking plan is not — never call `create_events`, `create_properties`, or `create_branch` unless the user explicitly says yes when you ask (or asked for it up front).

## Instructions

### Phase 1: Understand the Change

1. **Read the diff.** Diff the working branch against its base (`git diff <base>...HEAD`, or the PR diff if given a PR URL). Read enough surrounding code to understand what the change does for a *user*, not just what code moved.

2. **List candidate user actions.** From the diff, list moments where a user accomplishes, attempts, or abandons something: a flow completed, a feature invoked, a setting changed, an error hit at a decision point. Ignore refactors, internal state changes, and anything with no user-visible behavior.

3. **Note what's already instrumented.** Search the diff and the surrounding files for existing tracking calls. If the touched flow already fires events, your job may be updating properties on them rather than adding new ones — or nothing at all.

If the diff contains no user-facing behavior change (pure refactor, test-only, docs), say so and stop. "This PR needs no instrumentation" is a valid, complete result.

### Phase 2: Learn the Taxonomy

Budget: 4–8 tool calls. Run independent calls in parallel.

1. **Bootstrap context.** Call `get_amplitude_context` (no projectId) to find the org and projects; confirm the target project with the user if it's ambiguous — don't guess. Then call `get_workspace_context` for that project: note whether main is protected (`approvalWF: "Required"`) and whether changes span multiple environments — both matter if the user later opts into write-back.

2. **Pull the event schema.** Call `get_events` and paginate until you have the full list (500 per page). For projects with very large schemas, prioritize events that are `isInSchema: true` and related to the product area the PR touches.

3. **Pull properties.** Call `get_properties` with `propertyType: "event"` (project-wide, paginated) for the shared event-property vocabulary, and `propertyType: "user"` for user properties. For the 3–5 existing events closest to your candidate actions, call `get_properties` with `propertyType: "event"` and that `eventType` to see exactly what they carry.

4. **Infer the conventions.** From the real data — not from Amplitude's docs — derive the project's implicit style guide:
   - **Casing**: `Title Case`, `snake_case`, `camelCase`?
   - **Structure**: object-action (`Report Created`) or action-object (`Create Report`)? Past or present tense?
   - **Prefixing**: are events namespaced by area (`Onboarding: Step Completed`)?
   - **Shared properties**: which properties appear on most events (`source`, `platform`, `entry_point`)? These likely belong on yours too.
   - **Enum style**: how are property values cased and worded?

   State the inferred conventions explicitly in your output — if you inferred wrong, the user can correct you before code is written.

### Phase 3: Detect the SDK and Tracking Pattern

1. **Find the SDK.** Search the codebase for Amplitude packages (`@amplitude/analytics-browser`, `@amplitude/analytics-node`, `@amplitude/analytics-react-native`, `@amplitude/unified`, mobile SDKs) and for indirect routes (Segment, RudderStack, a homegrown event bus).

2. **Find the wrapper.** Locate how existing events are actually fired: a `track()` helper, a typed constants module, an Ampli-generated client, a hook like `useAnalytics()`. Read 2–3 existing call sites — they are your template for placement, naming imports, and typing.

3. **If no SDK exists**, stop and tell the user. Do not add a dependency, initialize an SDK, or wire API keys as a side effect of an instrumentation request — that's a separate, deliberate change. Offer to set it up as its own task.

### Phase 4: Design the Events

For each candidate action from Phase 1, apply the judgment test. An action deserves an event only if **all** of these hold:

- **Someone will query it.** You can name the question it answers ("what fraction of users who open the export dialog complete an export?") and who would ask it (funnel, retention, adoption, experiment exposure).
- **It isn't already answerable.** Not derivable from an existing event plus a property, and not a near-duplicate of one. If an existing event is 80% right, add a property to it instead of minting a sibling.
- **It marks an outcome, not mechanics.** Track "user completed X" or "user attempted X", not "component mounted", "modal rendered", or "API returned 200".

For each surviving event, produce a spec before touching code:

| Field | Rule |
|-------|------|
| Event name | Matches inferred casing, structure, tense. Check it against the full event list for near-duplicates (case-insensitive, ignoring separators). |
| Properties | Reuse existing global properties by exact name wherever possible. New properties need a type, a description, and a reason an existing one doesn't fit. |
| Fire point | The moment of *success or decision* (form submitted and accepted), not the moment of intent (button clicked) — unless the intent/abandon gap is itself the question. |
| Status | `existing` (already in plan), `existing + new property`, or `net-new`. |

Present this spec table to the user in your final output. It's the contract between the code and the tracking plan.

**Never put PII in properties** — no emails, names, free-text user input, tokens, or URLs with identifiers. Use IDs and enums.

### Phase 5: Implement in the PR

1. Add tracking calls through the wrapper found in Phase 3, matching its import style, typing, and error handling. If the project uses a typed event constants file, add your events there — don't inline string literals into components.
2. Place calls at the fire points from the spec. One call site per event; if the same event must fire from two places, that usually means the event is too vague — reconsider.
3. Match the surrounding code's style exactly. Instrumentation should read like it was always there.
4. Run the project's typecheck/lint/tests for the touched files and fix what you broke.

### Phase 6: Sync the Tracking Plan (Opt-in)

After implementing, **ask the user** whether to stage the net-new events and properties in Amplitude. Skip this phase entirely (and note the events will land as "unexpected" once ingested) if they decline. If they accept:

1. **Always use a branch** — even when main is unprotected, plan changes should get the same review the code PR gets. Call `create_branch` named after the git branch or PR (e.g. `pr-1234-export-flow`), with a description linking to the PR.
2. Call `create_events` with `branchName` for net-new events, including `description` for each. Then `create_properties` (`propertyType: "event"`, same `branchName`) for new properties — event-scoped via `eventType`, or global only if the property is genuinely reusable across events. Include types, descriptions, and `enumValues` where the value set is closed.
3. **Do not merge or approve the branch.** Report the branch name and leave the review to whoever governs the tracking plan, just as the code PR waits for its reviewer.

### Phase 7: Report

End with a summary the engineer can paste into the PR description:

1. **What was instrumented** — the spec table from Phase 4 with final names, properties, fire points, and status.
2. **Conventions followed** — one or two lines on the inferred taxonomy style, so reviewers can sanity-check the inference.
3. **What was deliberately *not* instrumented** — candidate actions that failed the judgment test, with the one-line reason. This is how reviewers trust that less-is-more was judgment, not omission.
4. **Tracking plan status** — the Amplitude branch name if write-back happened; otherwise a note that new events will appear as "unexpected" after first ingestion and can be added to the plan then.

## Troubleshooting

### Taxonomy is empty or near-empty
A new project has no conventions to infer. Propose a convention explicitly (object-action, Title Case, past tense is a sensible default — but ask if the team has a standard), and say clearly that you're establishing precedent rather than following it.

### The perfect event name is taken by a near-duplicate
Don't create `Report Exported` next to an existing `Export Report`. Use the existing event — even if its style is the one you'd change — and flag the inconsistency in your report. Consistency with reality beats consistency with the style guide.

### `create_events` / `create_properties` returns 403
The user lacks "Update Tracking Plan" permission. Surface the error, note an admin may need to grant access, and fall back to the report-only path — the code instrumentation still stands.

### Main branch is protected
`get_workspace_context` shows `approvalWF: "Required"`. This changes nothing — Phase 6 already writes to a branch, never to main.

### Monorepo or multiple Amplitude projects
Different packages may report to different projects (web vs. mobile vs. server). Match the project by the source of the files in the diff; check `get_tracking_plan_sources` if unclear. When it's genuinely ambiguous, ask — instrumenting against the wrong project's taxonomy is worse than asking.

### The PR touches an existing event's semantics
If the change alters when an existing event fires or what its properties mean, that's a breaking change for every chart built on it. Call it out prominently in the report and suggest coordinating with data consumers before merge.

