retentioneering-product-analytics

retentioneering-product-analytics is a skill for Claude Code, Codex from retentioneering/retentioneering-tools. It costs 108 tokens per session (1,456 once invoked), scanned A, original, Apache-2.0.

A product-analytics workflow for studying event logs, which record actions such as clicks, sessions, and purchases over time. It uses user paths, funnels, transitions, and behavioral groups to examine why people convert, leave, or get stuck.

In plain words
What is it for?
Use it with CSV, Parquet, pandas, or database event data containing a user or session identifier, event name, and timestamp or reliable order field.
Why use it?
It turns raw event data into a traceable analysis tied to a product question. It also separates observed patterns from explanations and does not treat correlations as proof of cause.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it with CSV, Parquet, pandas, or database event data containing a user or session identifier, event name, and timestamp or reliable order field.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/retentioneering/retentioneering-tools/retentioneering-product-analytics
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add retentioneering/retentioneering-tools --skill retentioneering-product-analytics
Clone the repo
git clone --depth 1 https://github.com/retentioneering/retentioneering-tools

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for retentioneering-product-analytics

README.md
[![agentmods](https://agentmods.dev/badge/skills/retentioneering/retentioneering-tools/retentioneering-product-analytics/github.svg)](https://agentmods.dev/skills/retentioneering/retentioneering-tools/retentioneering-product-analytics)
Your own site
<a href="https://agentmods.dev/skills/retentioneering/retentioneering-tools/retentioneering-product-analytics"><img src="https://agentmods.dev/badge/skills/retentioneering/retentioneering-tools/retentioneering-product-analytics/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for retentioneering-product-analytics

Your own site · 80×15
<a href="https://agentmods.dev/skills/retentioneering/retentioneering-tools/retentioneering-product-analytics"><img src="https://agentmods.dev/badge/skills/retentioneering/retentioneering-tools/retentioneering-product-analytics.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 108 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,456 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00108 $0.01456
Opus 5 $0.00054 $0.00728
Sonnet 5 $0.00022 $0.00291
Haiku 4.5 $0.00011 $0.00146

Measured 11d ago against content hash 9bdbdbbf13fb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

retentioneering-product-analytics scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/inspect_event_log.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/retentioneering-product-analytics/SKILL.md · 129 lines

How it starts

The opening of the file, as written. The whole thing — 129 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Retentioneering product analytics

Objective

Turn event-level behavioral data into a reproducible answer to a product question — why users convert, churn, loop, or abandon — using user trajectories, transitions, funnels, and behavioral segments.

Do not merely generate visualizations. Connect each output to the question, separate observation from interpretation, and never present path correlations as causal effects.

Bundled references (read on demand, not upfront)

File Read it when
references/api-map.md before writing any Retentioneering call — verified signatures, argument conventions, return shapes for 5.x
references/analysis-recipes.md after the question is clear — 10 field-tested patterns (R1–R10) with skeletons and pitfalls
references/gotchas-and-validation.md before executing (API gotchas G1–G10) and before presenting (integrity checklist B1–B10)
scripts/inspect_event_log.py step 2 — automated data profiling and schema suggestion

Required event-log semantics

Minimum: a path identifier (user or session), an event name, a timestamp (or a reliable order column — see gotcha G2 for order-only data). Useful extras: session id, segment attributes (device, source, plan), event properties, conversion labels.

Workflow

1. Environment

  1. Confirm the package: python -c "import retentioneering; print(retentioneering.__version__)". Expect 5.x; this skill's API map is version-verified for 5.0 — on a different major version, trust installed docstrings over the map.
  2. Locate the event data (CSV / Parquet / frames in existing code). Never modify inputs.
  3. Do not invent methods: anything not in references/api-map.md must be verified against the installed package before use.

2. Inspect the data BEFORE choosing methods

Run scripts/inspect_event_log.py <path> [--sep ...] (or replicate its checks inline for in-memory frames). It profiles columns, infers the user/event/timestamp mapping, checks timestamp parseability, duplicates, per-path ordering, path-length distribution, and emits artifacts/data-profile.json plus a ready-to-paste Eventstream(...) schema.

Read the full file on GitHub · 129 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 129 lines · 108 tokens per session scan A 9bdbdbbf13fb

Subscribe to this mod's changes

retentioneering-product-analytics is a skill published in the GitHub repository retentioneering/retentioneering-tools (918 stars, last pushed 5d ago), licensed Apache-2.0. It adds 108 tokens to every session and 1,456 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

hugging-face-paper-publisher

Publish and manage research papers on Hugging Face Hub. Supports creating paper pages, linking papers to models/datasets, claiming authorship, and generating professional markdown-based research articles.

patchy631/ai-engineering-hub · 42 tokens

ticker-snapshot

Quick structured overview of a single public equity — identity, sector, market cap, valuation ratios, current price, recent trend.

google-research/google-research · 29 tokens

swarms

Build agents and multi-agent systems with the Swarms framework — the Agent class, tools, autonomous loops, memory, and the 15+ multi-agent architectures (SequentialWorkflow, ConcurrentWorkflow, GraphWorkflow, HierarchicalSwarm, SwarmRouter, and more). Use whenever writing, reviewing, or debugging code that imports…

kyegomez/swarms · 73 tokens

wax

Swift framework guidance for Wax on-device memory/RAG. Use when writing Swift code with the public Memory facade, experimental PhotoMemory / VideoMemory, BuiltInMultimodalEmbeddings, embedding providers, retrieval modes, or hybrid search. For agent operators using the Wax MCP server tools, use the separate wax-mcp…

christopherkarani/Wax · 68 tokens

dstack-presets

Create and manage dstack presets: a toolkit that streamlines model inference optimization with agents, and a portable preset format. Use together with the dstack skill, and only when the user explicitly asks to create a preset or manage existing presets, not for deploying or serving a model.

dstackai/dstack · 61 tokens

hugging-face-jobs

This skill should be used when users want to run any workload on Hugging Face Jobs infrastructure. Covers UV scripts, Docker-based jobs, hardware selection, cost estimation, authentication with tokens, secrets management, timeout configuration, and result persistence. Designed for general-purpose compute workloads…

patchy631/ai-engineering-hub · 103 tokens