Pendo platform help — product analytics, in-app guides, session replay, NPS/CSAT surveys, feature adoption tracking, Leo AI. Use when Pendo guides aren't showing, feature tagging is tedious, analytics data looks wrong, users aren't completing onboarding, NPS scores are flat, need help with Pendo API or aggregation queries, setting up Pendo for the first time, or comparing Pendo to Appcues or WalkMe. Do NOT use for in-app messaging strategy across platforms (use /sales-in-app-messaging) or general customer feedback strategy (use /sales-customer-feedback).
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Pendo platform help — product analytics, in-app guides, session replay, NPS/CSAT surveys, feature adoption tracking, Leo AI. Use when Pendo guides aren't showing, feature tagging is tedious, analytics data looks wrong, users aren't completing onboarding, NPS scores are flat, need help with Pendo API or aggregation queries, setting up Pendo for the first time, or comparing Pendo to Appcues or WalkMe. Do NOT use for in-app messaging strategy across platforms (use /sales-in-app-messaging) or general customer feedback strategy (use /sales-customer-feedback).
If you discover a gotcha, workaround, or tip not covered in references/learnings.md, append it there.
Gotchas
Best-effort from research — review these, especially items about plan-gated features and integration gotchas that may be outdated.
Free plan caps at 500 MAU. Above that you need Base or higher — no public pricing, expect $15K+/year.
HubSpot and Salesforce integrations are paid add-ons. Not included in any standard plan — budget separately.
Retroactive analytics only works for tagged pages/features. Pendo captures raw events automatically, but you can only analyze them retroactively once you tag the pages/features. Tag early.
Guide targeting uses CSS selectors. If your app redesigns a page, guide anchors break. Use stable selectors (data attributes) instead of auto-generated class names.
Aggregation API uses MongoDB-style pipelines. The query syntax is powerful but unfamiliar to most teams — expect a learning curve.
Session Replay requires Core plan or higher (or as a paid add-on on Base). Not available on Free.
Metadata must be pre-defined in the UI before you can send custom visitor/account properties via the install script or API.
No native email channel. Pendo only reaches users inside your app. For dormant users, pair with an email tool.
/sales-do — Not sure which skill to use? The router matches any sales objective to the right skill. Install: npx skills add sales-skills/sales --skill sales-do
Examples
Example 1: Feature adoption is low after launch
User says: "We shipped a new dashboard feature two weeks ago but Pendo shows only 12% of users have tried it. How do I increase adoption?"
Skill does: Analyzes the feature's Pendo analytics (paths, funnels from entry points), designs a targeted in-app guide campaign: tooltip on the nav item for users who haven't visited the feature, a walkthrough guide for first-time visitors, and a banner announcement for the broader user base. Includes targeting rules, display frequency, and success metrics.
Result: Multi-touch guide campaign with targeting, plus analytics setup to measure before/after adoption rate.
Example 2: Pendo aggregation query for monthly active features
User says: "I need to pull feature usage data from Pendo into our data warehouse for executive reporting."
Skill does: Walks through the Aggregation API: endpoint (POST /api/v1/aggregation), authentication header, query structure with featureEvents source, date filtering with timeSeries, and grouping by feature and account. Provides a working JSON query example and suggests scheduling via cron or an ETL tool.
Result: Working aggregation query with authentication setup and ETL integration pattern.
Example 3: Setting up Pendo for the first time
User says: "I just got Pendo and need to install it on our React SaaS app. Where do I start?"
Skill does: Covers the install script snippet placement, visitor ID and account ID strategy (use your internal user ID, not email), metadata schema design (role, plan, signup date), initial page and feature tagging plan, and first guide creation. Flags common mistakes: using email as visitor ID (breaks on email changes), not pre-defining metadata fields in the UI, and over-tagging features on day one.
Result: Complete setup plan with install script, metadata schema, and tagging strategy.
Troubleshooting
Guides not appearing for target users
Symptom: Guide is active but users don't see it.
Cause: CSS selector changed after a deploy, segment targeting is too narrow, or display frequency limit reached.
Solution: 1) Check the guide's element targeting — if using auto-detected selectors, switch to a data-pendo attribute. 2) Preview the guide on your own account to verify targeting. 3) Check display rules — "show once" means users who dismissed it won't see it again. 4) Verify the user matches the guide's segment.
Analytics showing data discrepancies
Symptom: Feature usage numbers in Pendo don't match your own analytics.
Cause: Different event definitions, Pendo deduplication logic, or install script not firing on all pages.
Solution: 1) Verify the install script loads on every page (check for SPA route-change handling). 2) Compare event definitions — Pendo counts unique visitors per day by default, not raw events. 3) Check if ad blockers are suppressing the Pendo agent in your user base. 4) Use the browser console (pendo.validateInstall()) to verify the agent is running.
Feature/page tagging is overwhelming
Symptom: Hundreds of untagged pages and features, unclear where to start.
Cause: Pendo captures all clicks and page views but requires manual tagging to make them meaningful.
Solution: 1) Start with your top 5-10 features by business value — don't try to tag everything. 2) Use URL rules for pages (wildcards for dynamic segments). 3) For features, tag the primary CTA element, not every clickable item. 4) Establish a naming convention early (Module > Feature > Action). 5) Assign tagging ownership by product area.