-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "funnel-optimize",
"version": "0.2.0",
"description": "AI-driven product & funnel optimization: an always-on session-replay repair loop (deterministic layout audit + Gemini vision) plus gated Triple-Agent A/B design (Claude + Codex + Gemini). Six gates, real-revenue ship decisions, DAU-aware experiment windows, accumulated learning. PostHog-powered.",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"discover": "node scripts/discover.mjs",
"collect": "node scripts/collect-data.mjs",
"evaluate": "node scripts/evaluate-experiment.mjs",
"implement": "node scripts/implement-experiment.mjs",
"archive": "node scripts/archive.mjs",
"dashboard": "node scripts/render-dashboard.mjs",
"orchestrate": "bash scripts/orchestrate-triple-agent.sh",
"audit-replays": "node scripts/audit-replays.mjs",
"analyze-replays": "node scripts/analyze-replays.mjs",
"test": "node --test scripts/render-dashboard.test.mjs"
},
"optionalDependencies": {
"playwright-core": "^1.45.0"
},
"keywords": [
"ab-testing",
"claude-code",
"experimentation",
"funnel",
"growth",
"kpi",
"posthog",
"rrweb",
"session-replay",
"ux-audit"
],
"repository": {
"type": "git",
"url": "https://github.com/youtube-jocoding/funnel-optimize.git"
},
"bugs": {
"url": "https://github.com/youtube-jocoding/funnel-optimize/issues"
}
}