@hasna/microservices 0.0.10 → 0.0.11
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/bin/index.js +86 -1
- package/bin/mcp.js +86 -1
- package/dist/index.js +86 -1
- package/microservices/microservice-analytics/package.json +27 -0
- package/microservices/microservice-analytics/src/cli/index.ts +373 -0
- package/microservices/microservice-analytics/src/db/analytics.ts +564 -0
- package/microservices/microservice-analytics/src/db/database.ts +93 -0
- package/microservices/microservice-analytics/src/db/migrations.ts +50 -0
- package/microservices/microservice-analytics/src/index.ts +37 -0
- package/microservices/microservice-analytics/src/mcp/index.ts +334 -0
- package/microservices/microservice-assets/package.json +27 -0
- package/microservices/microservice-assets/src/cli/index.ts +375 -0
- package/microservices/microservice-assets/src/db/assets.ts +370 -0
- package/microservices/microservice-assets/src/db/database.ts +93 -0
- package/microservices/microservice-assets/src/db/migrations.ts +51 -0
- package/microservices/microservice-assets/src/index.ts +32 -0
- package/microservices/microservice-assets/src/mcp/index.ts +346 -0
- package/microservices/microservice-compliance/package.json +27 -0
- package/microservices/microservice-compliance/src/cli/index.ts +467 -0
- package/microservices/microservice-compliance/src/db/compliance.ts +633 -0
- package/microservices/microservice-compliance/src/db/database.ts +93 -0
- package/microservices/microservice-compliance/src/db/migrations.ts +63 -0
- package/microservices/microservice-compliance/src/index.ts +46 -0
- package/microservices/microservice-compliance/src/mcp/index.ts +438 -0
- package/microservices/microservice-habits/package.json +27 -0
- package/microservices/microservice-habits/src/cli/index.ts +315 -0
- package/microservices/microservice-habits/src/db/database.ts +93 -0
- package/microservices/microservice-habits/src/db/habits.ts +451 -0
- package/microservices/microservice-habits/src/db/migrations.ts +46 -0
- package/microservices/microservice-habits/src/index.ts +31 -0
- package/microservices/microservice-habits/src/mcp/index.ts +313 -0
- package/microservices/microservice-health/package.json +27 -0
- package/microservices/microservice-health/src/cli/index.ts +484 -0
- package/microservices/microservice-health/src/db/database.ts +93 -0
- package/microservices/microservice-health/src/db/health.ts +708 -0
- package/microservices/microservice-health/src/db/migrations.ts +70 -0
- package/microservices/microservice-health/src/index.ts +63 -0
- package/microservices/microservice-health/src/mcp/index.ts +437 -0
- package/microservices/microservice-notifications/package.json +27 -0
- package/microservices/microservice-notifications/src/cli/index.ts +349 -0
- package/microservices/microservice-notifications/src/db/database.ts +93 -0
- package/microservices/microservice-notifications/src/db/migrations.ts +62 -0
- package/microservices/microservice-notifications/src/db/notifications.ts +509 -0
- package/microservices/microservice-notifications/src/index.ts +41 -0
- package/microservices/microservice-notifications/src/mcp/index.ts +422 -0
- package/microservices/microservice-products/package.json +27 -0
- package/microservices/microservice-products/src/cli/index.ts +416 -0
- package/microservices/microservice-products/src/db/categories.ts +154 -0
- package/microservices/microservice-products/src/db/database.ts +93 -0
- package/microservices/microservice-products/src/db/migrations.ts +58 -0
- package/microservices/microservice-products/src/db/pricing-tiers.ts +66 -0
- package/microservices/microservice-products/src/db/products.ts +452 -0
- package/microservices/microservice-products/src/index.ts +53 -0
- package/microservices/microservice-products/src/mcp/index.ts +453 -0
- package/microservices/microservice-projects/package.json +27 -0
- package/microservices/microservice-projects/src/cli/index.ts +480 -0
- package/microservices/microservice-projects/src/db/database.ts +93 -0
- package/microservices/microservice-projects/src/db/migrations.ts +65 -0
- package/microservices/microservice-projects/src/db/projects.ts +715 -0
- package/microservices/microservice-projects/src/index.ts +57 -0
- package/microservices/microservice-projects/src/mcp/index.ts +501 -0
- package/microservices/microservice-proposals/package.json +27 -0
- package/microservices/microservice-proposals/src/cli/index.ts +400 -0
- package/microservices/microservice-proposals/src/db/database.ts +93 -0
- package/microservices/microservice-proposals/src/db/migrations.ts +52 -0
- package/microservices/microservice-proposals/src/db/proposals.ts +532 -0
- package/microservices/microservice-proposals/src/index.ts +37 -0
- package/microservices/microservice-proposals/src/mcp/index.ts +375 -0
- package/microservices/microservice-reading/package.json +27 -0
- package/microservices/microservice-reading/src/cli/index.ts +464 -0
- package/microservices/microservice-reading/src/db/database.ts +93 -0
- package/microservices/microservice-reading/src/db/migrations.ts +59 -0
- package/microservices/microservice-reading/src/db/reading.ts +524 -0
- package/microservices/microservice-reading/src/index.ts +51 -0
- package/microservices/microservice-reading/src/mcp/index.ts +368 -0
- package/microservices/microservice-travel/package.json +27 -0
- package/microservices/microservice-travel/src/cli/index.ts +505 -0
- package/microservices/microservice-travel/src/db/database.ts +93 -0
- package/microservices/microservice-travel/src/db/migrations.ts +77 -0
- package/microservices/microservice-travel/src/db/travel.ts +802 -0
- package/microservices/microservice-travel/src/index.ts +60 -0
- package/microservices/microservice-travel/src/mcp/index.ts +495 -0
- package/microservices/microservice-wiki/package.json +27 -0
- package/microservices/microservice-wiki/src/cli/index.ts +345 -0
- package/microservices/microservice-wiki/src/db/database.ts +93 -0
- package/microservices/microservice-wiki/src/db/migrations.ts +55 -0
- package/microservices/microservice-wiki/src/db/wiki.ts +395 -0
- package/microservices/microservice-wiki/src/index.ts +32 -0
- package/microservices/microservice-wiki/src/mcp/index.ts +344 -0
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -3962,7 +3962,8 @@ var CATEGORIES = [
|
|
|
3962
3962
|
"Productivity",
|
|
3963
3963
|
"HR",
|
|
3964
3964
|
"Analytics",
|
|
3965
|
-
"Management"
|
|
3965
|
+
"Management",
|
|
3966
|
+
"Personal"
|
|
3966
3967
|
];
|
|
3967
3968
|
var MICROSERVICES = [
|
|
3968
3969
|
{
|
|
@@ -4035,6 +4036,13 @@ var MICROSERVICES = [
|
|
|
4035
4036
|
category: "CRM",
|
|
4036
4037
|
tags: ["leads", "lead-generation", "scoring", "enrichment", "pipeline", "dedup", "import", "export"]
|
|
4037
4038
|
},
|
|
4039
|
+
{
|
|
4040
|
+
name: "proposals",
|
|
4041
|
+
displayName: "Proposals",
|
|
4042
|
+
description: "Create, send, track, and convert proposals with templates, expiry tracking, and conversion analytics",
|
|
4043
|
+
category: "CRM",
|
|
4044
|
+
tags: ["proposals", "quotes", "estimates", "sales", "clients", "conversion"]
|
|
4045
|
+
},
|
|
4038
4046
|
{
|
|
4039
4047
|
name: "inventory",
|
|
4040
4048
|
displayName: "Inventory",
|
|
@@ -4063,6 +4071,34 @@ var MICROSERVICES = [
|
|
|
4063
4071
|
category: "Operations",
|
|
4064
4072
|
tags: ["domains", "dns", "ssl", "registrar", "nameservers", "whois", "certificates"]
|
|
4065
4073
|
},
|
|
4074
|
+
{
|
|
4075
|
+
name: "products",
|
|
4076
|
+
displayName: "Products",
|
|
4077
|
+
description: "Product catalog with categories, pricing tiers, variants, bulk import/export, and inventory status tracking",
|
|
4078
|
+
category: "Operations",
|
|
4079
|
+
tags: ["products", "catalog", "pricing", "categories", "sku", "inventory", "import", "export"]
|
|
4080
|
+
},
|
|
4081
|
+
{
|
|
4082
|
+
name: "notifications",
|
|
4083
|
+
displayName: "Notifications",
|
|
4084
|
+
description: "Send notifications across channels (email, Slack, SMS, webhook, in-app) with rules, templates, variable substitution, and event processing",
|
|
4085
|
+
category: "Operations",
|
|
4086
|
+
tags: ["notifications", "alerts", "email", "slack", "sms", "webhook", "in-app", "templates", "rules", "events"]
|
|
4087
|
+
},
|
|
4088
|
+
{
|
|
4089
|
+
name: "projects",
|
|
4090
|
+
displayName: "Projects",
|
|
4091
|
+
description: "Project management with milestones, deliverables, budget tracking, timelines, and progress reporting",
|
|
4092
|
+
category: "Operations",
|
|
4093
|
+
tags: ["projects", "milestones", "deliverables", "budget", "timeline", "planning", "tracking"]
|
|
4094
|
+
},
|
|
4095
|
+
{
|
|
4096
|
+
name: "compliance",
|
|
4097
|
+
displayName: "Compliance",
|
|
4098
|
+
description: "Compliance management with requirements tracking, license management, and audit scheduling across regulatory frameworks (GDPR, SOC2, HIPAA, PCI, ISO 27001)",
|
|
4099
|
+
category: "Operations",
|
|
4100
|
+
tags: ["compliance", "gdpr", "soc2", "hipaa", "pci", "iso27001", "audit", "licenses", "requirements", "regulatory"]
|
|
4101
|
+
},
|
|
4066
4102
|
{
|
|
4067
4103
|
name: "notes",
|
|
4068
4104
|
displayName: "Notes",
|
|
@@ -4118,6 +4154,55 @@ var MICROSERVICES = [
|
|
|
4118
4154
|
description: "Transcribe audio and video from files and URLs (YouTube, Vimeo, Wistia, etc.) using ElevenLabs or OpenAI Whisper",
|
|
4119
4155
|
category: "Productivity",
|
|
4120
4156
|
tags: ["transcription", "audio", "video", "youtube", "vimeo", "wistia", "elevenlabs", "openai", "whisper", "speech-to-text"]
|
|
4157
|
+
},
|
|
4158
|
+
{
|
|
4159
|
+
name: "wiki",
|
|
4160
|
+
displayName: "Wiki",
|
|
4161
|
+
description: "Wiki with pages, version history, internal links, and hierarchical page trees",
|
|
4162
|
+
category: "Productivity",
|
|
4163
|
+
tags: ["wiki", "pages", "knowledge-base", "versioning", "links", "markdown"]
|
|
4164
|
+
},
|
|
4165
|
+
{
|
|
4166
|
+
name: "assets",
|
|
4167
|
+
displayName: "Assets",
|
|
4168
|
+
description: "Digital asset management with collections, tagging, metadata, and type-based organization",
|
|
4169
|
+
category: "Productivity",
|
|
4170
|
+
tags: ["assets", "files", "collections", "media", "images", "documents", "digital-assets"]
|
|
4171
|
+
},
|
|
4172
|
+
{
|
|
4173
|
+
name: "habits",
|
|
4174
|
+
displayName: "Habits",
|
|
4175
|
+
description: "Habit tracking with streaks, completions, and analytics \u2014 daily, weekly, and monthly habits with completion rates and reports",
|
|
4176
|
+
category: "Personal",
|
|
4177
|
+
tags: ["habits", "streaks", "tracking", "completions", "daily", "weekly", "goals", "wellness"]
|
|
4178
|
+
},
|
|
4179
|
+
{
|
|
4180
|
+
name: "health",
|
|
4181
|
+
displayName: "Health",
|
|
4182
|
+
description: "Health tracking with metrics, medications, appointments, and fitness logs",
|
|
4183
|
+
category: "Personal",
|
|
4184
|
+
tags: ["health", "metrics", "medications", "appointments", "fitness", "wellness", "medical"]
|
|
4185
|
+
},
|
|
4186
|
+
{
|
|
4187
|
+
name: "reading",
|
|
4188
|
+
displayName: "Reading",
|
|
4189
|
+
description: "Reading tracker with books, highlights, reading sessions, pace analytics, and progress tracking",
|
|
4190
|
+
category: "Personal",
|
|
4191
|
+
tags: ["reading", "books", "highlights", "sessions", "tracking", "pace", "library"]
|
|
4192
|
+
},
|
|
4193
|
+
{
|
|
4194
|
+
name: "travel",
|
|
4195
|
+
displayName: "Travel",
|
|
4196
|
+
description: "Travel management with trips, bookings, documents, loyalty programs, and budget tracking",
|
|
4197
|
+
category: "Personal",
|
|
4198
|
+
tags: ["travel", "trips", "bookings", "flights", "hotels", "loyalty", "documents", "budget"]
|
|
4199
|
+
},
|
|
4200
|
+
{
|
|
4201
|
+
name: "analytics",
|
|
4202
|
+
displayName: "Analytics",
|
|
4203
|
+
description: "Business analytics with KPIs, dashboards, reports, and AI-powered executive summaries",
|
|
4204
|
+
category: "Analytics",
|
|
4205
|
+
tags: ["analytics", "kpis", "dashboards", "reports", "metrics", "business-intelligence", "executive-summary"]
|
|
4121
4206
|
}
|
|
4122
4207
|
];
|
|
4123
4208
|
function getMicroservice(name) {
|
package/bin/mcp.js
CHANGED
|
@@ -19463,7 +19463,8 @@ var CATEGORIES = [
|
|
|
19463
19463
|
"Productivity",
|
|
19464
19464
|
"HR",
|
|
19465
19465
|
"Analytics",
|
|
19466
|
-
"Management"
|
|
19466
|
+
"Management",
|
|
19467
|
+
"Personal"
|
|
19467
19468
|
];
|
|
19468
19469
|
var MICROSERVICES = [
|
|
19469
19470
|
{
|
|
@@ -19536,6 +19537,13 @@ var MICROSERVICES = [
|
|
|
19536
19537
|
category: "CRM",
|
|
19537
19538
|
tags: ["leads", "lead-generation", "scoring", "enrichment", "pipeline", "dedup", "import", "export"]
|
|
19538
19539
|
},
|
|
19540
|
+
{
|
|
19541
|
+
name: "proposals",
|
|
19542
|
+
displayName: "Proposals",
|
|
19543
|
+
description: "Create, send, track, and convert proposals with templates, expiry tracking, and conversion analytics",
|
|
19544
|
+
category: "CRM",
|
|
19545
|
+
tags: ["proposals", "quotes", "estimates", "sales", "clients", "conversion"]
|
|
19546
|
+
},
|
|
19539
19547
|
{
|
|
19540
19548
|
name: "inventory",
|
|
19541
19549
|
displayName: "Inventory",
|
|
@@ -19564,6 +19572,34 @@ var MICROSERVICES = [
|
|
|
19564
19572
|
category: "Operations",
|
|
19565
19573
|
tags: ["domains", "dns", "ssl", "registrar", "nameservers", "whois", "certificates"]
|
|
19566
19574
|
},
|
|
19575
|
+
{
|
|
19576
|
+
name: "products",
|
|
19577
|
+
displayName: "Products",
|
|
19578
|
+
description: "Product catalog with categories, pricing tiers, variants, bulk import/export, and inventory status tracking",
|
|
19579
|
+
category: "Operations",
|
|
19580
|
+
tags: ["products", "catalog", "pricing", "categories", "sku", "inventory", "import", "export"]
|
|
19581
|
+
},
|
|
19582
|
+
{
|
|
19583
|
+
name: "notifications",
|
|
19584
|
+
displayName: "Notifications",
|
|
19585
|
+
description: "Send notifications across channels (email, Slack, SMS, webhook, in-app) with rules, templates, variable substitution, and event processing",
|
|
19586
|
+
category: "Operations",
|
|
19587
|
+
tags: ["notifications", "alerts", "email", "slack", "sms", "webhook", "in-app", "templates", "rules", "events"]
|
|
19588
|
+
},
|
|
19589
|
+
{
|
|
19590
|
+
name: "projects",
|
|
19591
|
+
displayName: "Projects",
|
|
19592
|
+
description: "Project management with milestones, deliverables, budget tracking, timelines, and progress reporting",
|
|
19593
|
+
category: "Operations",
|
|
19594
|
+
tags: ["projects", "milestones", "deliverables", "budget", "timeline", "planning", "tracking"]
|
|
19595
|
+
},
|
|
19596
|
+
{
|
|
19597
|
+
name: "compliance",
|
|
19598
|
+
displayName: "Compliance",
|
|
19599
|
+
description: "Compliance management with requirements tracking, license management, and audit scheduling across regulatory frameworks (GDPR, SOC2, HIPAA, PCI, ISO 27001)",
|
|
19600
|
+
category: "Operations",
|
|
19601
|
+
tags: ["compliance", "gdpr", "soc2", "hipaa", "pci", "iso27001", "audit", "licenses", "requirements", "regulatory"]
|
|
19602
|
+
},
|
|
19567
19603
|
{
|
|
19568
19604
|
name: "notes",
|
|
19569
19605
|
displayName: "Notes",
|
|
@@ -19619,6 +19655,55 @@ var MICROSERVICES = [
|
|
|
19619
19655
|
description: "Transcribe audio and video from files and URLs (YouTube, Vimeo, Wistia, etc.) using ElevenLabs or OpenAI Whisper",
|
|
19620
19656
|
category: "Productivity",
|
|
19621
19657
|
tags: ["transcription", "audio", "video", "youtube", "vimeo", "wistia", "elevenlabs", "openai", "whisper", "speech-to-text"]
|
|
19658
|
+
},
|
|
19659
|
+
{
|
|
19660
|
+
name: "wiki",
|
|
19661
|
+
displayName: "Wiki",
|
|
19662
|
+
description: "Wiki with pages, version history, internal links, and hierarchical page trees",
|
|
19663
|
+
category: "Productivity",
|
|
19664
|
+
tags: ["wiki", "pages", "knowledge-base", "versioning", "links", "markdown"]
|
|
19665
|
+
},
|
|
19666
|
+
{
|
|
19667
|
+
name: "assets",
|
|
19668
|
+
displayName: "Assets",
|
|
19669
|
+
description: "Digital asset management with collections, tagging, metadata, and type-based organization",
|
|
19670
|
+
category: "Productivity",
|
|
19671
|
+
tags: ["assets", "files", "collections", "media", "images", "documents", "digital-assets"]
|
|
19672
|
+
},
|
|
19673
|
+
{
|
|
19674
|
+
name: "habits",
|
|
19675
|
+
displayName: "Habits",
|
|
19676
|
+
description: "Habit tracking with streaks, completions, and analytics \u2014 daily, weekly, and monthly habits with completion rates and reports",
|
|
19677
|
+
category: "Personal",
|
|
19678
|
+
tags: ["habits", "streaks", "tracking", "completions", "daily", "weekly", "goals", "wellness"]
|
|
19679
|
+
},
|
|
19680
|
+
{
|
|
19681
|
+
name: "health",
|
|
19682
|
+
displayName: "Health",
|
|
19683
|
+
description: "Health tracking with metrics, medications, appointments, and fitness logs",
|
|
19684
|
+
category: "Personal",
|
|
19685
|
+
tags: ["health", "metrics", "medications", "appointments", "fitness", "wellness", "medical"]
|
|
19686
|
+
},
|
|
19687
|
+
{
|
|
19688
|
+
name: "reading",
|
|
19689
|
+
displayName: "Reading",
|
|
19690
|
+
description: "Reading tracker with books, highlights, reading sessions, pace analytics, and progress tracking",
|
|
19691
|
+
category: "Personal",
|
|
19692
|
+
tags: ["reading", "books", "highlights", "sessions", "tracking", "pace", "library"]
|
|
19693
|
+
},
|
|
19694
|
+
{
|
|
19695
|
+
name: "travel",
|
|
19696
|
+
displayName: "Travel",
|
|
19697
|
+
description: "Travel management with trips, bookings, documents, loyalty programs, and budget tracking",
|
|
19698
|
+
category: "Personal",
|
|
19699
|
+
tags: ["travel", "trips", "bookings", "flights", "hotels", "loyalty", "documents", "budget"]
|
|
19700
|
+
},
|
|
19701
|
+
{
|
|
19702
|
+
name: "analytics",
|
|
19703
|
+
displayName: "Analytics",
|
|
19704
|
+
description: "Business analytics with KPIs, dashboards, reports, and AI-powered executive summaries",
|
|
19705
|
+
category: "Analytics",
|
|
19706
|
+
tags: ["analytics", "kpis", "dashboards", "reports", "metrics", "business-intelligence", "executive-summary"]
|
|
19622
19707
|
}
|
|
19623
19708
|
];
|
|
19624
19709
|
function getMicroservice(name) {
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,8 @@ var CATEGORIES = [
|
|
|
7
7
|
"Productivity",
|
|
8
8
|
"HR",
|
|
9
9
|
"Analytics",
|
|
10
|
-
"Management"
|
|
10
|
+
"Management",
|
|
11
|
+
"Personal"
|
|
11
12
|
];
|
|
12
13
|
var MICROSERVICES = [
|
|
13
14
|
{
|
|
@@ -80,6 +81,13 @@ var MICROSERVICES = [
|
|
|
80
81
|
category: "CRM",
|
|
81
82
|
tags: ["leads", "lead-generation", "scoring", "enrichment", "pipeline", "dedup", "import", "export"]
|
|
82
83
|
},
|
|
84
|
+
{
|
|
85
|
+
name: "proposals",
|
|
86
|
+
displayName: "Proposals",
|
|
87
|
+
description: "Create, send, track, and convert proposals with templates, expiry tracking, and conversion analytics",
|
|
88
|
+
category: "CRM",
|
|
89
|
+
tags: ["proposals", "quotes", "estimates", "sales", "clients", "conversion"]
|
|
90
|
+
},
|
|
83
91
|
{
|
|
84
92
|
name: "inventory",
|
|
85
93
|
displayName: "Inventory",
|
|
@@ -108,6 +116,34 @@ var MICROSERVICES = [
|
|
|
108
116
|
category: "Operations",
|
|
109
117
|
tags: ["domains", "dns", "ssl", "registrar", "nameservers", "whois", "certificates"]
|
|
110
118
|
},
|
|
119
|
+
{
|
|
120
|
+
name: "products",
|
|
121
|
+
displayName: "Products",
|
|
122
|
+
description: "Product catalog with categories, pricing tiers, variants, bulk import/export, and inventory status tracking",
|
|
123
|
+
category: "Operations",
|
|
124
|
+
tags: ["products", "catalog", "pricing", "categories", "sku", "inventory", "import", "export"]
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
name: "notifications",
|
|
128
|
+
displayName: "Notifications",
|
|
129
|
+
description: "Send notifications across channels (email, Slack, SMS, webhook, in-app) with rules, templates, variable substitution, and event processing",
|
|
130
|
+
category: "Operations",
|
|
131
|
+
tags: ["notifications", "alerts", "email", "slack", "sms", "webhook", "in-app", "templates", "rules", "events"]
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: "projects",
|
|
135
|
+
displayName: "Projects",
|
|
136
|
+
description: "Project management with milestones, deliverables, budget tracking, timelines, and progress reporting",
|
|
137
|
+
category: "Operations",
|
|
138
|
+
tags: ["projects", "milestones", "deliverables", "budget", "timeline", "planning", "tracking"]
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
name: "compliance",
|
|
142
|
+
displayName: "Compliance",
|
|
143
|
+
description: "Compliance management with requirements tracking, license management, and audit scheduling across regulatory frameworks (GDPR, SOC2, HIPAA, PCI, ISO 27001)",
|
|
144
|
+
category: "Operations",
|
|
145
|
+
tags: ["compliance", "gdpr", "soc2", "hipaa", "pci", "iso27001", "audit", "licenses", "requirements", "regulatory"]
|
|
146
|
+
},
|
|
111
147
|
{
|
|
112
148
|
name: "notes",
|
|
113
149
|
displayName: "Notes",
|
|
@@ -163,6 +199,55 @@ var MICROSERVICES = [
|
|
|
163
199
|
description: "Transcribe audio and video from files and URLs (YouTube, Vimeo, Wistia, etc.) using ElevenLabs or OpenAI Whisper",
|
|
164
200
|
category: "Productivity",
|
|
165
201
|
tags: ["transcription", "audio", "video", "youtube", "vimeo", "wistia", "elevenlabs", "openai", "whisper", "speech-to-text"]
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
name: "wiki",
|
|
205
|
+
displayName: "Wiki",
|
|
206
|
+
description: "Wiki with pages, version history, internal links, and hierarchical page trees",
|
|
207
|
+
category: "Productivity",
|
|
208
|
+
tags: ["wiki", "pages", "knowledge-base", "versioning", "links", "markdown"]
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
name: "assets",
|
|
212
|
+
displayName: "Assets",
|
|
213
|
+
description: "Digital asset management with collections, tagging, metadata, and type-based organization",
|
|
214
|
+
category: "Productivity",
|
|
215
|
+
tags: ["assets", "files", "collections", "media", "images", "documents", "digital-assets"]
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
name: "habits",
|
|
219
|
+
displayName: "Habits",
|
|
220
|
+
description: "Habit tracking with streaks, completions, and analytics \u2014 daily, weekly, and monthly habits with completion rates and reports",
|
|
221
|
+
category: "Personal",
|
|
222
|
+
tags: ["habits", "streaks", "tracking", "completions", "daily", "weekly", "goals", "wellness"]
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
name: "health",
|
|
226
|
+
displayName: "Health",
|
|
227
|
+
description: "Health tracking with metrics, medications, appointments, and fitness logs",
|
|
228
|
+
category: "Personal",
|
|
229
|
+
tags: ["health", "metrics", "medications", "appointments", "fitness", "wellness", "medical"]
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
name: "reading",
|
|
233
|
+
displayName: "Reading",
|
|
234
|
+
description: "Reading tracker with books, highlights, reading sessions, pace analytics, and progress tracking",
|
|
235
|
+
category: "Personal",
|
|
236
|
+
tags: ["reading", "books", "highlights", "sessions", "tracking", "pace", "library"]
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
name: "travel",
|
|
240
|
+
displayName: "Travel",
|
|
241
|
+
description: "Travel management with trips, bookings, documents, loyalty programs, and budget tracking",
|
|
242
|
+
category: "Personal",
|
|
243
|
+
tags: ["travel", "trips", "bookings", "flights", "hotels", "loyalty", "documents", "budget"]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
name: "analytics",
|
|
247
|
+
displayName: "Analytics",
|
|
248
|
+
description: "Business analytics with KPIs, dashboards, reports, and AI-powered executive summaries",
|
|
249
|
+
category: "Analytics",
|
|
250
|
+
tags: ["analytics", "kpis", "dashboards", "reports", "metrics", "business-intelligence", "executive-summary"]
|
|
166
251
|
}
|
|
167
252
|
];
|
|
168
253
|
function getMicroservice(name) {
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hasna/microservice-analytics",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Business analytics microservice with KPIs, dashboards, reports, and AI-powered executive summaries",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"microservice-analytics": "./src/cli/index.ts",
|
|
8
|
+
"microservice-analytics-mcp": "./src/mcp/index.ts"
|
|
9
|
+
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./src/index.ts"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "bun run ./src/cli/index.ts",
|
|
15
|
+
"test": "bun test"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
19
|
+
"commander": "^12.1.0",
|
|
20
|
+
"zod": "^3.24.0"
|
|
21
|
+
},
|
|
22
|
+
"license": "Apache-2.0",
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"registry": "https://registry.npmjs.org",
|
|
25
|
+
"access": "public"
|
|
26
|
+
}
|
|
27
|
+
}
|