@miao-vision/cli 0.1.6 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,110 @@
1
+ title: Product Metrics Review
2
+ theme: editorial
3
+ slides:
4
+ - layout: cover
5
+ eyebrow: "Product Review"
6
+ title: "Product Adoption Is Moving Toward AI Workflows"
7
+ claim: "AI Report and SQL Workspace usage are becoming the strongest adoption signals."
8
+
9
+ - layout: metrics-chart
10
+ eyebrow: "01 · EXECUTIVE SNAPSHOT"
11
+ title: "Adoption Is Growing While Churn Trends Down"
12
+ metrics:
13
+ - label: Active Users
14
+ format: ",.0f"
15
+ data:
16
+ transform:
17
+ - type: aggregate
18
+ measures:
19
+ - field: active_users
20
+ op: sum
21
+ as: total_users
22
+ - label: Signups
23
+ format: ",.0f"
24
+ data:
25
+ transform:
26
+ - type: aggregate
27
+ measures:
28
+ - field: signups
29
+ op: sum
30
+ as: total_signups
31
+ - label: Avg Churn
32
+ format: "%"
33
+ data:
34
+ transform:
35
+ - type: aggregate
36
+ measures:
37
+ - field: churn_rate
38
+ op: avg
39
+ as: avg_churn
40
+ charts:
41
+ - type: line
42
+ title: Monthly Active Users
43
+ data:
44
+ transform:
45
+ - type: derive-month
46
+ field: event_date
47
+ as: month
48
+ - type: aggregate
49
+ groupBy: [month]
50
+ measures:
51
+ - field: active_users
52
+ op: sum
53
+ as: users
54
+ - type: sort
55
+ field: month
56
+ order: asc
57
+ encoding:
58
+ x: { field: month }
59
+ y: { field: users }
60
+
61
+ - layout: text-chart
62
+ eyebrow: "02 · SEGMENTS"
63
+ title: "Enterprise Accounts Lead Usage Depth"
64
+ annotation: "Enterprise usage carries higher revenue and lower churn."
65
+ bullets:
66
+ - "Enterprise has the strongest active user base."
67
+ - "SMB continues to supply signup volume."
68
+ - "AI workflow onboarding should target both segments."
69
+ charts:
70
+ - type: bar
71
+ title: Revenue by Segment
72
+ data:
73
+ transform:
74
+ - type: aggregate
75
+ groupBy: [segment]
76
+ measures:
77
+ - field: revenue
78
+ op: sum
79
+ as: total_revenue
80
+ - type: sort
81
+ field: total_revenue
82
+ order: desc
83
+ encoding:
84
+ x: { field: segment }
85
+ y: { field: total_revenue }
86
+
87
+ - layout: chart-full
88
+ eyebrow: "03 · FEATURES"
89
+ title: "Feature Revenue Is Concentrated In Core Workflows"
90
+ charts:
91
+ - type: bar
92
+ title: Revenue by Feature
93
+ data:
94
+ transform:
95
+ - type: aggregate
96
+ groupBy: [feature]
97
+ measures:
98
+ - field: revenue
99
+ op: sum
100
+ as: total_revenue
101
+ - type: sort
102
+ field: total_revenue
103
+ order: desc
104
+ encoding:
105
+ x: { field: feature }
106
+ y: { field: total_revenue }
107
+
108
+ - layout: ending
109
+ title: "Focus onboarding on AI workflows"
110
+ claim: "Prioritize activation paths that turn signups into repeat analytical work."
@@ -0,0 +1,7 @@
1
+ event_date,segment,feature,active_users,signups,churn_rate,revenue
2
+ 2025-01-01,Enterprise,Dashboard,1200,90,0.035,42000
3
+ 2025-01-01,SMB,Dashboard,860,130,0.052,21000
4
+ 2025-02-01,Enterprise,AI Report,1380,110,0.031,48600
5
+ 2025-02-01,SMB,AI Report,940,150,0.049,23800
6
+ 2025-03-01,Enterprise,SQL Workspace,1510,125,0.029,53200
7
+ 2025-03-01,SMB,SQL Workspace,990,170,0.046,25100
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miao-vision/cli",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "Miao Vision local data visualization CLI for agent workflows",
5
5
  "license": "MIT",
6
6
  "type": "module",