mango-lollipop 0.1.0
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.
- package/CLAUDE.md +69 -0
- package/LICENSE +21 -0
- package/README.md +264 -0
- package/bin/mango-lollipop.js +385 -0
- package/dist/excel.d.ts +4 -0
- package/dist/excel.js +342 -0
- package/dist/html.d.ts +4 -0
- package/dist/html.js +938 -0
- package/dist/schema.d.ts +120 -0
- package/dist/schema.js +211 -0
- package/lib/excel.ts +433 -0
- package/lib/html.ts +993 -0
- package/lib/schema.ts +394 -0
- package/package.json +44 -0
- package/skills/audit/SKILL.md +248 -0
- package/skills/dev-handoff/SKILL.md +295 -0
- package/skills/generate-dashboard/SKILL.md +195 -0
- package/skills/generate-matrix/SKILL.md +374 -0
- package/skills/generate-messages/SKILL.md +262 -0
- package/skills/iterate/SKILL.md +242 -0
- package/skills/start/SKILL.md +310 -0
- package/templates/copywriting-guide.md +155 -0
- package/templates/dashboard.html +522 -0
- package/templates/events/saas-collaboration.yaml +50 -0
- package/templates/events/saas-document.yaml +44 -0
- package/templates/events/saas-general.yaml +38 -0
- package/templates/events/saas-marketplace.yaml +48 -0
- package/templates/overview.html +598 -0
- package/templates/saas-matrix.json +172 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Collaboration / Meeting Tool Event Taxonomy
|
|
2
|
+
# For tools like Butter, Zoom, Miro, etc.
|
|
3
|
+
# Extends the general SaaS taxonomy with session and collaboration events.
|
|
4
|
+
|
|
5
|
+
identity:
|
|
6
|
+
# Inherits from saas-general
|
|
7
|
+
- user.signed_up
|
|
8
|
+
- user.email_verified
|
|
9
|
+
- user.profile_completed
|
|
10
|
+
- user.invited_teammate
|
|
11
|
+
|
|
12
|
+
sessions:
|
|
13
|
+
- session.created
|
|
14
|
+
- session.scheduled
|
|
15
|
+
- session.started
|
|
16
|
+
- session.ended
|
|
17
|
+
- session.recorded
|
|
18
|
+
|
|
19
|
+
collaboration:
|
|
20
|
+
- participant.joined
|
|
21
|
+
- participant.invited
|
|
22
|
+
- breakout.created
|
|
23
|
+
- breakout.started
|
|
24
|
+
- poll.created
|
|
25
|
+
- poll.completed
|
|
26
|
+
- whiteboard.created
|
|
27
|
+
|
|
28
|
+
content:
|
|
29
|
+
- agenda.created
|
|
30
|
+
- agenda.shared
|
|
31
|
+
- recording.available
|
|
32
|
+
- recording.shared
|
|
33
|
+
- template.created
|
|
34
|
+
- template.used
|
|
35
|
+
|
|
36
|
+
conversion:
|
|
37
|
+
- trial.started
|
|
38
|
+
- trial.ending_soon
|
|
39
|
+
- trial.expired
|
|
40
|
+
- subscription.created
|
|
41
|
+
- subscription.upgraded
|
|
42
|
+
- subscription.downgraded
|
|
43
|
+
- subscription.cancelled
|
|
44
|
+
|
|
45
|
+
retention:
|
|
46
|
+
- user.inactive_3_days
|
|
47
|
+
- user.inactive_7_days
|
|
48
|
+
- user.inactive_14_days
|
|
49
|
+
- usage.weekly_summary
|
|
50
|
+
- milestone.reached
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Document Tool Event Taxonomy
|
|
2
|
+
# For tools like PandaDoc, DocuSign, Notion, etc.
|
|
3
|
+
# Extends the general SaaS taxonomy with document workflow events.
|
|
4
|
+
|
|
5
|
+
identity:
|
|
6
|
+
- user.signed_up
|
|
7
|
+
- user.email_verified
|
|
8
|
+
- user.profile_completed
|
|
9
|
+
- user.invited_teammate
|
|
10
|
+
|
|
11
|
+
documents:
|
|
12
|
+
- document.created
|
|
13
|
+
- document.edited
|
|
14
|
+
- document.sent
|
|
15
|
+
- document.viewed
|
|
16
|
+
- document.signed
|
|
17
|
+
- document.completed
|
|
18
|
+
- document.expired
|
|
19
|
+
|
|
20
|
+
templates:
|
|
21
|
+
- template.created
|
|
22
|
+
- template.used
|
|
23
|
+
- template.shared
|
|
24
|
+
|
|
25
|
+
workflows:
|
|
26
|
+
- approval.requested
|
|
27
|
+
- approval.completed
|
|
28
|
+
- payment.collected
|
|
29
|
+
|
|
30
|
+
conversion:
|
|
31
|
+
- trial.started
|
|
32
|
+
- trial.ending_soon
|
|
33
|
+
- trial.expired
|
|
34
|
+
- subscription.created
|
|
35
|
+
- subscription.upgraded
|
|
36
|
+
- subscription.downgraded
|
|
37
|
+
- subscription.cancelled
|
|
38
|
+
|
|
39
|
+
retention:
|
|
40
|
+
- user.inactive_3_days
|
|
41
|
+
- user.inactive_7_days
|
|
42
|
+
- user.inactive_14_days
|
|
43
|
+
- usage.weekly_summary
|
|
44
|
+
- milestone.reached
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Generic SaaS Event Taxonomy
|
|
2
|
+
# Default events applicable to most SaaS products.
|
|
3
|
+
# Template variables (e.g. {key_feature}) are replaced during generation.
|
|
4
|
+
|
|
5
|
+
identity:
|
|
6
|
+
- user.signed_up
|
|
7
|
+
- user.email_verified
|
|
8
|
+
- user.profile_completed
|
|
9
|
+
- user.invited_teammate
|
|
10
|
+
|
|
11
|
+
activation:
|
|
12
|
+
- feature.{key_feature}_used_first_time
|
|
13
|
+
- onboarding.step_completed
|
|
14
|
+
- onboarding.completed
|
|
15
|
+
- project.created
|
|
16
|
+
- project.completed
|
|
17
|
+
|
|
18
|
+
engagement:
|
|
19
|
+
- session.started
|
|
20
|
+
- feature.{feature_name}_used
|
|
21
|
+
- content.shared
|
|
22
|
+
- collaboration.started
|
|
23
|
+
|
|
24
|
+
conversion:
|
|
25
|
+
- trial.started
|
|
26
|
+
- trial.ending_soon # 3 days before expiry
|
|
27
|
+
- trial.expired
|
|
28
|
+
- subscription.created
|
|
29
|
+
- subscription.upgraded
|
|
30
|
+
- subscription.downgraded
|
|
31
|
+
- subscription.cancelled
|
|
32
|
+
|
|
33
|
+
retention:
|
|
34
|
+
- user.inactive_3_days
|
|
35
|
+
- user.inactive_7_days
|
|
36
|
+
- user.inactive_14_days
|
|
37
|
+
- usage.weekly_summary
|
|
38
|
+
- milestone.reached
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Marketplace / Platform Event Taxonomy
|
|
2
|
+
# For tools like Etsy, Shopify, Upwork, etc.
|
|
3
|
+
# Extends the general SaaS taxonomy with listing, order, and seller events.
|
|
4
|
+
|
|
5
|
+
identity:
|
|
6
|
+
- user.signed_up
|
|
7
|
+
- user.email_verified
|
|
8
|
+
- user.profile_completed
|
|
9
|
+
- user.invited_teammate
|
|
10
|
+
|
|
11
|
+
listings:
|
|
12
|
+
- listing.created
|
|
13
|
+
- listing.published
|
|
14
|
+
- listing.updated
|
|
15
|
+
- listing.sold
|
|
16
|
+
|
|
17
|
+
orders:
|
|
18
|
+
- order.placed
|
|
19
|
+
- order.confirmed
|
|
20
|
+
- order.fulfilled
|
|
21
|
+
- order.cancelled
|
|
22
|
+
- order.refunded
|
|
23
|
+
|
|
24
|
+
reviews:
|
|
25
|
+
- review.received
|
|
26
|
+
- review.responded
|
|
27
|
+
- rating.updated
|
|
28
|
+
|
|
29
|
+
sellers:
|
|
30
|
+
- seller.onboarded
|
|
31
|
+
- seller.verified
|
|
32
|
+
- seller.payout_processed
|
|
33
|
+
|
|
34
|
+
conversion:
|
|
35
|
+
- trial.started
|
|
36
|
+
- trial.ending_soon
|
|
37
|
+
- trial.expired
|
|
38
|
+
- subscription.created
|
|
39
|
+
- subscription.upgraded
|
|
40
|
+
- subscription.downgraded
|
|
41
|
+
- subscription.cancelled
|
|
42
|
+
|
|
43
|
+
retention:
|
|
44
|
+
- user.inactive_3_days
|
|
45
|
+
- user.inactive_7_days
|
|
46
|
+
- user.inactive_14_days
|
|
47
|
+
- usage.weekly_summary
|
|
48
|
+
- milestone.reached
|