make-mp-data 2.1.11 → 3.0.1
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/README.md +31 -0
- package/dungeons/adspend.js +2 -2
- package/dungeons/ai-chat-analytics-ed.js +3 -2
- package/dungeons/anon.js +2 -2
- package/dungeons/array-of-object-loopup.js +181 -0
- package/dungeons/benchmark-heavy.js +241 -0
- package/dungeons/benchmark-light.js +141 -0
- package/dungeons/big.js +9 -8
- package/dungeons/business.js +2 -1
- package/dungeons/clinch-agi.js +632 -0
- package/dungeons/complex.js +3 -2
- package/dungeons/copilot.js +383 -0
- package/dungeons/ecommerce-store.js +0 -0
- package/dungeons/experiments.js +5 -4
- package/dungeons/foobar.js +1 -1
- package/dungeons/funnels.js +2 -2
- package/dungeons/gaming.js +3 -2
- package/dungeons/harness/harness-education.js +988 -0
- package/dungeons/harness/harness-fintech.js +976 -0
- package/dungeons/harness/harness-food.js +985 -0
- package/dungeons/harness/harness-gaming.js +1178 -0
- package/dungeons/harness/harness-media.js +961 -0
- package/dungeons/harness/harness-sass.js +923 -0
- package/dungeons/harness/harness-social.js +928 -0
- package/dungeons/kurby.js +211 -0
- package/dungeons/media.js +5 -4
- package/dungeons/mil.js +4 -3
- package/dungeons/mirror.js +2 -2
- package/dungeons/money2020-ed.js +8 -7
- package/dungeons/sanity.js +3 -2
- package/dungeons/scd.js +3 -2
- package/dungeons/simple.js +30 -15
- package/dungeons/strict-event-test.js +30 -0
- package/dungeons/student-teacher.js +3 -2
- package/dungeons/text-generation.js +84 -85
- package/dungeons/too-big-events.js +166 -0
- package/dungeons/uday-schema.json +220 -0
- package/dungeons/userAgent.js +4 -3
- package/index.js +41 -54
- package/lib/core/config-validator.js +122 -7
- package/lib/core/context.js +7 -14
- package/lib/core/storage.js +57 -25
- package/lib/generators/adspend.js +12 -12
- package/lib/generators/events.js +6 -5
- package/lib/generators/funnels.js +32 -10
- package/lib/generators/product-lookup.js +262 -0
- package/lib/generators/product-names.js +195 -0
- package/lib/generators/profiles.js +3 -3
- package/lib/generators/scd.js +13 -3
- package/lib/generators/text.js +17 -4
- package/lib/orchestrators/mixpanel-sender.js +244 -204
- package/lib/orchestrators/user-loop.js +54 -16
- package/lib/templates/funnels-instructions.txt +272 -0
- package/lib/templates/hook-examples.json +187 -0
- package/lib/templates/hooks-instructions.txt +295 -8
- package/lib/templates/phrases.js +473 -16
- package/lib/templates/refine-instructions.txt +485 -0
- package/lib/templates/schema-instructions.txt +239 -109
- package/lib/templates/schema.d.ts +173 -0
- package/lib/templates/verbose-schema.js +140 -206
- package/lib/utils/ai.js +853 -77
- package/lib/utils/chart.js +210 -0
- package/lib/utils/function-registry.js +285 -0
- package/lib/utils/json-evaluator.js +172 -0
- package/lib/utils/logger.js +38 -0
- package/lib/utils/mixpanel.js +101 -0
- package/lib/utils/project.js +3 -2
- package/lib/utils/utils.js +41 -4
- package/package.json +15 -21
- package/types.d.ts +15 -5
- package/lib/generators/text-bak-old.js +0 -1121
- package/lib/orchestrators/worker-manager.js +0 -203
- package/lib/templates/phrases-bak.js +0 -925
- package/lib/templates/prompt (old).txt +0 -98
- package/lib/templates/scratch-dungeon-template.js +0 -116
- package/lib/templates/textQuickTest.js +0 -172
package/lib/templates/phrases.js
CHANGED
|
@@ -14,7 +14,10 @@ export const PHRASE_BANK = {
|
|
|
14
14
|
"the interface", "the UI", "the experience", "the workflow",
|
|
15
15
|
"the solution", "the service", "the implementation", "the framework",
|
|
16
16
|
"the codebase", "the infrastructure", "the ecosystem", "the stack",
|
|
17
|
-
|
|
17
|
+
"the product", "the application", "the program", "the suite",
|
|
18
|
+
"the module", "the package", "the library", "the SDK",
|
|
19
|
+
"the console", "the portal", "the hub", "the workspace",
|
|
20
|
+
|
|
18
21
|
// Specific features/areas
|
|
19
22
|
"the analytics dashboard", "the admin panel", "the settings page",
|
|
20
23
|
"the export function", "the search feature", "the API",
|
|
@@ -22,18 +25,33 @@ export const PHRASE_BANK = {
|
|
|
22
25
|
"the integration", "the plugin", "the extension", "the widget",
|
|
23
26
|
"the microservice", "the component library", "the database layer",
|
|
24
27
|
"the frontend framework", "the backend service", "the CLI tool",
|
|
25
|
-
|
|
28
|
+
"the reporting module", "the billing system", "the user management",
|
|
29
|
+
"the notification center", "the marketplace", "the app store",
|
|
30
|
+
"the developer portal", "the customer portal", "the partner portal",
|
|
31
|
+
"the knowledge base", "the documentation", "the sandbox environment",
|
|
32
|
+
"the testing suite", "the monitoring dashboard", "the metrics panel",
|
|
33
|
+
"the configuration manager", "the deployment pipeline", "the CI/CD system",
|
|
34
|
+
"the data pipeline", "the ETL process", "the analytics engine",
|
|
35
|
+
"the recommendation engine", "the search algorithm", "the ML model",
|
|
36
|
+
|
|
26
37
|
// Natural references
|
|
27
38
|
"this thing", "what we're using", "our setup", "the whole system",
|
|
28
39
|
"everything", "the current version", "the new update", "the latest changes",
|
|
29
40
|
"this contraption", "the whole shebang", "the entire apparatus",
|
|
30
41
|
"our deployment", "the current iteration", "this implementation",
|
|
31
|
-
|
|
42
|
+
"the tech stack", "our tooling", "the dev environment", "the production system",
|
|
43
|
+
"what you built", "your platform", "the company's product", "the team's solution",
|
|
44
|
+
"the entire platform", "all components", "the full suite", "the complete package",
|
|
45
|
+
|
|
32
46
|
// Version-specific
|
|
33
47
|
"v3.2.1", "the beta", "the stable release", "production",
|
|
34
48
|
"the March update", "2.0", "the legacy version", "the new architecture",
|
|
35
49
|
"the canary build", "the hotfix", "the patch release", "staging",
|
|
36
|
-
"the preview version", "the RC candidate", "the nightly build", "our instance"
|
|
50
|
+
"the preview version", "the RC candidate", "the nightly build", "our instance",
|
|
51
|
+
"the alpha release", "the GA version", "the LTS release", "the edge build",
|
|
52
|
+
"the experimental branch", "the dev build", "the QA environment", "the UAT version",
|
|
53
|
+
"version 4.0.0-beta.2", "the rollback version", "the emergency patch", "the security update",
|
|
54
|
+
"the feature branch", "the master build", "the production-ready version", "the MVP"
|
|
37
55
|
],
|
|
38
56
|
|
|
39
57
|
features: [
|
|
@@ -42,34 +60,55 @@ export const PHRASE_BANK = {
|
|
|
42
60
|
"notifications", "alerts", "reports", "dashboards", "analytics",
|
|
43
61
|
"permissions", "authentication", "authorization", "SSO", "2FA",
|
|
44
62
|
"indexing", "archival", "replication", "migration", "orchestration",
|
|
45
|
-
|
|
63
|
+
"scheduling", "automation", "workflows", "pipelines", "jobs",
|
|
64
|
+
"queuing", "messaging", "streaming", "broadcasting", "webhooks",
|
|
65
|
+
"versioning", "branching", "merging", "rollback", "recovery",
|
|
66
|
+
"monitoring", "logging", "tracing", "debugging", "profiling",
|
|
67
|
+
|
|
46
68
|
// UI features
|
|
47
69
|
"dark mode", "themes", "customization", "drag and drop",
|
|
48
70
|
"keyboard shortcuts", "tooltips", "hover states", "animations",
|
|
49
71
|
"responsive design", "mobile view", "print layout", "fullscreen",
|
|
50
72
|
"accessibility", "internationalization", "localization", "virtualization",
|
|
51
73
|
"lazy loading", "infinite scroll", "modal dialogs", "breadcrumbs",
|
|
52
|
-
|
|
74
|
+
"context menus", "floating action buttons", "progress bars", "spinners",
|
|
75
|
+
"toasts", "snackbars", "sidebars", "navigation drawers", "tabs",
|
|
76
|
+
"accordions", "carousels", "galleries", "timelines", "calendars",
|
|
77
|
+
"data tables", "charts", "graphs", "visualizations", "heatmaps",
|
|
78
|
+
"forms", "wizards", "steppers", "validation", "autocomplete",
|
|
79
|
+
|
|
53
80
|
// Data features
|
|
54
81
|
"filtering", "sorting", "pagination", "bulk operations",
|
|
55
82
|
"batch processing", "real-time updates", "auto-save",
|
|
56
83
|
"version history", "change tracking", "audit logs",
|
|
57
84
|
"data validation", "schema evolution", "ETL pipelines", "data lineage",
|
|
58
85
|
"anomaly detection", "data profiling", "metadata management",
|
|
59
|
-
|
|
86
|
+
"data masking", "encryption", "compression", "deduplication",
|
|
87
|
+
"aggregation", "transformation", "normalization", "denormalization",
|
|
88
|
+
"indexing strategies", "query optimization", "caching layers",
|
|
89
|
+
"data governance", "compliance tracking", "retention policies",
|
|
90
|
+
|
|
60
91
|
// Specific problematic areas
|
|
61
92
|
"the login flow", "password reset", "file upload",
|
|
62
93
|
"data export", "CSV import", "PDF generation",
|
|
63
94
|
"email notifications", "push alerts", "webhook configuration",
|
|
64
95
|
"CORS handling", "rate limiting", "circuit breakers", "health checks",
|
|
65
96
|
"feature flags", "A/B testing", "rollback mechanisms",
|
|
66
|
-
|
|
97
|
+
"session management", "cookie handling", "token refresh",
|
|
98
|
+
"image processing", "video transcoding", "document parsing",
|
|
99
|
+
"payment processing", "subscription management", "invoice generation",
|
|
100
|
+
"user onboarding", "team invitations", "role assignments",
|
|
101
|
+
"API versioning", "backward compatibility", "deprecation notices",
|
|
102
|
+
|
|
67
103
|
// Performance related
|
|
68
104
|
"loading times", "response time", "caching", "optimization",
|
|
69
105
|
"memory usage", "CPU utilization", "network requests",
|
|
70
106
|
"database queries", "API calls", "rendering performance",
|
|
71
107
|
"latency", "throughput", "scalability", "concurrency",
|
|
72
108
|
"garbage collection", "connection pooling", "resource allocation",
|
|
109
|
+
"lazy evaluation", "memoization", "debouncing", "throttling",
|
|
110
|
+
"code splitting", "tree shaking", "minification", "bundling",
|
|
111
|
+
"CDN integration", "edge caching", "prefetching", "preloading",
|
|
73
112
|
"the API", "the admin panel", "settings", "integrations",
|
|
74
113
|
"the mobile app", "the workflow", "automation", "templates"
|
|
75
114
|
],
|
|
@@ -80,7 +119,17 @@ export const PHRASE_BANK = {
|
|
|
80
119
|
"disconnects", "hangs", "corrupts files", "memory leaks",
|
|
81
120
|
"throws errors", "returns 404", "gives me 500 errors",
|
|
82
121
|
"doesn't respond", "goes blank", "stops working", "malfunctions",
|
|
83
|
-
"acts up", "behaves strangely", "performs poorly", "lags severely"
|
|
122
|
+
"acts up", "behaves strangely", "performs poorly", "lags severely",
|
|
123
|
+
"won't start", "keeps restarting", "gets stuck", "loops infinitely",
|
|
124
|
+
"becomes unresponsive", "shows blank screen", "displays incorrectly",
|
|
125
|
+
"renders improperly", "duplicates entries", "skips records", "misses data",
|
|
126
|
+
"drops connections", "refuses connections", "throttles randomly",
|
|
127
|
+
"spikes CPU", "consumes memory", "fills disk space", "blocks threads",
|
|
128
|
+
"deadlocks", "race conditions", "data races", "buffer overflows",
|
|
129
|
+
"segfaults", "core dumps", "panics", "blue screens", "kernel panics",
|
|
130
|
+
"fails silently", "errors randomly", "behaves inconsistently",
|
|
131
|
+
"produces garbage output", "returns null", "throws exceptions",
|
|
132
|
+
"violates constraints", "breaks dependencies", "cascade failures"
|
|
84
133
|
],
|
|
85
134
|
|
|
86
135
|
// Advanced vocabulary from phrases-bak.js
|
|
@@ -107,7 +156,16 @@ export const PHRASE_BANK = {
|
|
|
107
156
|
"the product team", "the UX folks", "QA",
|
|
108
157
|
"you guys", "y'all", "the folks at [company]",
|
|
109
158
|
"whoever built this", "whoever's responsible",
|
|
110
|
-
"the person who designed this", "management"
|
|
159
|
+
"the person who designed this", "management",
|
|
160
|
+
"the development team", "the tech team", "the IT department",
|
|
161
|
+
"the design team", "the data team", "the analytics team",
|
|
162
|
+
"the infrastructure team", "the DevOps team", "the SRE team",
|
|
163
|
+
"the security team", "the compliance team", "the legal team",
|
|
164
|
+
"the marketing team", "the sales team", "the success team",
|
|
165
|
+
"the support engineers", "the solution architects", "the consultants",
|
|
166
|
+
"the project managers", "the product owners", "the stakeholders",
|
|
167
|
+
"the C-suite", "the executives", "the board", "leadership",
|
|
168
|
+
"the vendor", "the provider", "the supplier", "the partner"
|
|
111
169
|
],
|
|
112
170
|
|
|
113
171
|
// Emotional/Reaction Vocabulary
|
|
@@ -287,7 +345,60 @@ export const PHRASE_BANK = {
|
|
|
287
345
|
"encounters byzantine errors",
|
|
288
346
|
"plagued by intermittent glitches",
|
|
289
347
|
"riddled with concurrency issues",
|
|
290
|
-
"hamstrung by architectural limitations"
|
|
348
|
+
"hamstrung by architectural limitations",
|
|
349
|
+
"crashes on special characters",
|
|
350
|
+
"fails with non-ASCII input",
|
|
351
|
+
"breaks on timezone changes",
|
|
352
|
+
"corrupts data on save",
|
|
353
|
+
"loses state on refresh",
|
|
354
|
+
"deadlocks under concurrent access",
|
|
355
|
+
"leaks memory like a sieve",
|
|
356
|
+
"spinning beach ball of death",
|
|
357
|
+
"infinite redirect loop",
|
|
358
|
+
"stack trace explosion",
|
|
359
|
+
"null reference everywhere",
|
|
360
|
+
"circular dependency hell",
|
|
361
|
+
"event loop blocked",
|
|
362
|
+
"thread starvation occurring",
|
|
363
|
+
"connection pool exhausted",
|
|
364
|
+
"cache invalidation broken",
|
|
365
|
+
"session expires randomly",
|
|
366
|
+
"authentication loop bug",
|
|
367
|
+
"CSRF token mismatch",
|
|
368
|
+
"XSS vulnerability exposed",
|
|
369
|
+
"SQL injection possible",
|
|
370
|
+
"buffer overflow detected",
|
|
371
|
+
"integer overflow errors",
|
|
372
|
+
"floating point precision lost",
|
|
373
|
+
"encoding mismatch issues",
|
|
374
|
+
"locale-specific failures",
|
|
375
|
+
"platform-dependent bugs",
|
|
376
|
+
"browser-specific glitches",
|
|
377
|
+
"mobile layout broken",
|
|
378
|
+
"responsive design fails",
|
|
379
|
+
"accessibility features missing",
|
|
380
|
+
"screen reader incompatible",
|
|
381
|
+
"keyboard navigation broken",
|
|
382
|
+
"focus trap issues",
|
|
383
|
+
"z-index conflicts",
|
|
384
|
+
"CSS specificity wars",
|
|
385
|
+
"JavaScript heap exhaustion",
|
|
386
|
+
"WebSocket disconnection spam",
|
|
387
|
+
"GraphQL query depth exceeded",
|
|
388
|
+
"REST API rate limited",
|
|
389
|
+
"database connection timeout",
|
|
390
|
+
"transaction deadlock detected",
|
|
391
|
+
"index corruption occurred",
|
|
392
|
+
"data integrity violated",
|
|
393
|
+
"foreign key constraint failed",
|
|
394
|
+
"unique constraint duplicate",
|
|
395
|
+
"partition key hot spotting",
|
|
396
|
+
"replication lag issues",
|
|
397
|
+
"consensus protocol failures",
|
|
398
|
+
"distributed lock timeout",
|
|
399
|
+
"eventual consistency violated",
|
|
400
|
+
"CAP theorem trade-offs wrong",
|
|
401
|
+
"Byzantine fault intolerance"
|
|
291
402
|
],
|
|
292
403
|
|
|
293
404
|
specific_praise: [
|
|
@@ -328,7 +439,47 @@ export const PHRASE_BANK = {
|
|
|
328
439
|
"index out of bounds",
|
|
329
440
|
"syntax error unexpected token",
|
|
330
441
|
"module not found",
|
|
331
|
-
"permission denied"
|
|
442
|
+
"permission denied",
|
|
443
|
+
"403 forbidden",
|
|
444
|
+
"404 not found",
|
|
445
|
+
"502 bad gateway",
|
|
446
|
+
"503 service unavailable",
|
|
447
|
+
"504 gateway timeout",
|
|
448
|
+
"400 bad request",
|
|
449
|
+
"422 unprocessable entity",
|
|
450
|
+
"429 too many requests",
|
|
451
|
+
"connection reset by peer",
|
|
452
|
+
"ECONNREFUSED",
|
|
453
|
+
"ETIMEDOUT",
|
|
454
|
+
"ENOTFOUND",
|
|
455
|
+
"EADDRINUSE",
|
|
456
|
+
"ENOENT: no such file or directory",
|
|
457
|
+
"heap out of memory",
|
|
458
|
+
"stack overflow",
|
|
459
|
+
"type error",
|
|
460
|
+
"reference error",
|
|
461
|
+
"range error",
|
|
462
|
+
"assertion failed",
|
|
463
|
+
"invalid argument",
|
|
464
|
+
"illegal state exception",
|
|
465
|
+
"deadlock detected",
|
|
466
|
+
"transaction rollback",
|
|
467
|
+
"constraint violation",
|
|
468
|
+
"foreign key violation",
|
|
469
|
+
"unique constraint violation",
|
|
470
|
+
"division by zero",
|
|
471
|
+
"floating point exception",
|
|
472
|
+
"bus error",
|
|
473
|
+
"access violation",
|
|
474
|
+
"unhandled promise rejection",
|
|
475
|
+
"cyclic dependency detected",
|
|
476
|
+
"circular reference",
|
|
477
|
+
"maximum retry attempts exceeded",
|
|
478
|
+
"rate limit exceeded",
|
|
479
|
+
"quota exceeded",
|
|
480
|
+
"disk full",
|
|
481
|
+
"socket hang up",
|
|
482
|
+
"broken pipe"
|
|
332
483
|
],
|
|
333
484
|
|
|
334
485
|
user_actions: [
|
|
@@ -346,7 +497,43 @@ export const PHRASE_BANK = {
|
|
|
346
497
|
"tweeted about it",
|
|
347
498
|
"gave up and used Excel",
|
|
348
499
|
"built a workaround",
|
|
349
|
-
"wrote a script"
|
|
500
|
+
"wrote a script",
|
|
501
|
+
"cleared cookies",
|
|
502
|
+
"disabled extensions",
|
|
503
|
+
"tried incognito mode",
|
|
504
|
+
"switched browsers",
|
|
505
|
+
"updated the version",
|
|
506
|
+
"downgraded the version",
|
|
507
|
+
"checked permissions",
|
|
508
|
+
"verified credentials",
|
|
509
|
+
"regenerated tokens",
|
|
510
|
+
"reset password",
|
|
511
|
+
"created new account",
|
|
512
|
+
"asked colleagues",
|
|
513
|
+
"posted on Reddit",
|
|
514
|
+
"checked GitHub issues",
|
|
515
|
+
"read the changelog",
|
|
516
|
+
"watched YouTube tutorials",
|
|
517
|
+
"joined the Slack channel",
|
|
518
|
+
"attended office hours",
|
|
519
|
+
"scheduled a demo",
|
|
520
|
+
"escalated to manager",
|
|
521
|
+
"threatened to cancel",
|
|
522
|
+
"left a bad review",
|
|
523
|
+
"recommended alternatives",
|
|
524
|
+
"built our own solution",
|
|
525
|
+
"hired a consultant",
|
|
526
|
+
"opened a PR",
|
|
527
|
+
"forked the repo",
|
|
528
|
+
"debugged with DevTools",
|
|
529
|
+
"analyzed network traffic",
|
|
530
|
+
"checked server logs",
|
|
531
|
+
"monitored performance",
|
|
532
|
+
"ran diagnostics",
|
|
533
|
+
"tested on different device",
|
|
534
|
+
"tried VPN",
|
|
535
|
+
"disabled firewall",
|
|
536
|
+
"checked DNS settings"
|
|
350
537
|
],
|
|
351
538
|
|
|
352
539
|
business_impact: [
|
|
@@ -364,7 +551,44 @@ export const PHRASE_BANK = {
|
|
|
364
551
|
"burning budget",
|
|
365
552
|
"losing competitive edge",
|
|
366
553
|
"preventing scaling",
|
|
367
|
-
"limiting growth"
|
|
554
|
+
"limiting growth",
|
|
555
|
+
"affecting productivity",
|
|
556
|
+
"disrupting operations",
|
|
557
|
+
"impacting performance",
|
|
558
|
+
"reducing efficiency",
|
|
559
|
+
"increasing costs",
|
|
560
|
+
"delaying deliverables",
|
|
561
|
+
"blocking development",
|
|
562
|
+
"preventing deployment",
|
|
563
|
+
"halting production",
|
|
564
|
+
"stopping sales",
|
|
565
|
+
"losing market share",
|
|
566
|
+
"missing opportunities",
|
|
567
|
+
"damaging partnerships",
|
|
568
|
+
"violating contracts",
|
|
569
|
+
"risking penalties",
|
|
570
|
+
"exposing vulnerabilities",
|
|
571
|
+
"creating bottlenecks",
|
|
572
|
+
"causing downtime",
|
|
573
|
+
"generating complaints",
|
|
574
|
+
"triggering escalations",
|
|
575
|
+
"requiring overtime",
|
|
576
|
+
"depleting resources",
|
|
577
|
+
"exhausting budget",
|
|
578
|
+
"missing targets",
|
|
579
|
+
"failing KPIs",
|
|
580
|
+
"underperforming metrics",
|
|
581
|
+
"declining NPS scores",
|
|
582
|
+
"increasing churn",
|
|
583
|
+
"reducing retention",
|
|
584
|
+
"lowering satisfaction",
|
|
585
|
+
"hurting morale",
|
|
586
|
+
"causing turnover",
|
|
587
|
+
"blocking innovation",
|
|
588
|
+
"stifling creativity",
|
|
589
|
+
"hampering collaboration",
|
|
590
|
+
"creating technical debt",
|
|
591
|
+
"accumulating backlogs"
|
|
368
592
|
],
|
|
369
593
|
|
|
370
594
|
comparisons: [
|
|
@@ -385,7 +609,34 @@ export const PHRASE_BANK = {
|
|
|
385
609
|
"falls woefully short of [Industry Standard]",
|
|
386
610
|
"demonstrates inferior craftsmanship to [Reference]",
|
|
387
611
|
"seems primitive alongside [Contemporary Tool]",
|
|
388
|
-
"appears rudimentary next to [Advanced Platform]"
|
|
612
|
+
"appears rudimentary next to [Advanced Platform]",
|
|
613
|
+
"Google Sheets is more reliable",
|
|
614
|
+
"Notion handles this better",
|
|
615
|
+
"Airtable solved this ages ago",
|
|
616
|
+
"even Microsoft Access works better",
|
|
617
|
+
"MySpace had better UX",
|
|
618
|
+
"feels like GeoCities era design",
|
|
619
|
+
"AOL dial-up was faster",
|
|
620
|
+
"Netscape Navigator was more stable",
|
|
621
|
+
"Windows 95 had fewer bugs",
|
|
622
|
+
"Flash was more responsive",
|
|
623
|
+
"Internet Explorer 6 was better",
|
|
624
|
+
"makes Lotus Notes look good",
|
|
625
|
+
"worse than shareware from the 2000s",
|
|
626
|
+
"like a bootleg version of [Product]",
|
|
627
|
+
"discount store [Competitor]",
|
|
628
|
+
"budget version gone wrong",
|
|
629
|
+
"alpha version of [Better Tool]",
|
|
630
|
+
"student project version of [Real Product]",
|
|
631
|
+
"[Competitor] from 10 years ago",
|
|
632
|
+
"stuck in the stone age",
|
|
633
|
+
"hasn't caught up to 2015",
|
|
634
|
+
"lightyears behind the competition",
|
|
635
|
+
"embarrassingly outdated",
|
|
636
|
+
"hopelessly behind the curve",
|
|
637
|
+
"not even in the same league as [Leader]",
|
|
638
|
+
"can't hold a candle to [Alternative]",
|
|
639
|
+
"doesn't deserve to be mentioned with [Premium]"
|
|
389
640
|
],
|
|
390
641
|
|
|
391
642
|
credibility: [
|
|
@@ -398,7 +649,41 @@ export const PHRASE_BANK = {
|
|
|
398
649
|
"not my first rodeo",
|
|
399
650
|
"I know what I'm talking about",
|
|
400
651
|
"trust me on this",
|
|
401
|
-
"I've built similar systems"
|
|
652
|
+
"I've built similar systems",
|
|
653
|
+
"20 years in the industry",
|
|
654
|
+
"former [Big Tech Company] engineer",
|
|
655
|
+
"I've shipped products at scale",
|
|
656
|
+
"managed teams of 50+ developers",
|
|
657
|
+
"CTO of a startup",
|
|
658
|
+
"I wrote the book on this",
|
|
659
|
+
"published papers on this topic",
|
|
660
|
+
"conference speaker on this subject",
|
|
661
|
+
"certified in multiple technologies",
|
|
662
|
+
"PhD in Computer Science",
|
|
663
|
+
"worked at Fortune 500 companies",
|
|
664
|
+
"been doing this since the dot-com era",
|
|
665
|
+
"veteran software architect",
|
|
666
|
+
"expert in this domain",
|
|
667
|
+
"consulted for major enterprises",
|
|
668
|
+
"implemented this at 3 companies",
|
|
669
|
+
"migration specialist",
|
|
670
|
+
"I teach this at university",
|
|
671
|
+
"industry thought leader",
|
|
672
|
+
"open source contributor",
|
|
673
|
+
"maintainer of popular libraries",
|
|
674
|
+
"tech blogger with 100k followers",
|
|
675
|
+
"I literally invented this pattern",
|
|
676
|
+
"patent holder in this space",
|
|
677
|
+
"advisory board member",
|
|
678
|
+
"technical reviewer for O'Reilly",
|
|
679
|
+
"speaking as a customer since day 1",
|
|
680
|
+
"beta tester since the beginning",
|
|
681
|
+
"power user for 5+ years",
|
|
682
|
+
"evangelist turned critic",
|
|
683
|
+
"used to recommend this everywhere",
|
|
684
|
+
"was your biggest champion",
|
|
685
|
+
"brought you 50+ customers",
|
|
686
|
+
"case study participant"
|
|
402
687
|
],
|
|
403
688
|
|
|
404
689
|
emotional_markers: [
|
|
@@ -2013,6 +2298,178 @@ export const GENERATION_PATTERNS = {
|
|
|
2013
2298
|
]
|
|
2014
2299
|
},
|
|
2015
2300
|
|
|
2301
|
+
// E-commerce Product Names - Realistic store inventory
|
|
2302
|
+
store_products: {
|
|
2303
|
+
// Electronics & Tech
|
|
2304
|
+
electronics: [
|
|
2305
|
+
"Wireless Bluetooth Headphones", "USB-C Charging Cable", "Portable Power Bank 20000mAh",
|
|
2306
|
+
"Smart Watch Series 7", "Wireless Gaming Mouse", "Mechanical Keyboard RGB",
|
|
2307
|
+
"4K Webcam Pro", "Laptop Stand Aluminum", "Phone Case Clear", "Screen Protector Tempered Glass",
|
|
2308
|
+
"Bluetooth Speaker Waterproof", "Ring Light for Streaming", "HDMI Cable 6ft",
|
|
2309
|
+
"Wall Charger 65W Fast Charge", "Wireless Charging Pad", "USB Hub 7-Port",
|
|
2310
|
+
"External SSD 1TB", "Microphone Condenser", "Gaming Headset 7.1 Surround",
|
|
2311
|
+
"Smart LED Light Bulb", "Security Camera 1080p", "Tablet Case Leather",
|
|
2312
|
+
"Stylus Pen for iPad", "Cable Organizer Set", "Laptop Sleeve 15 inch",
|
|
2313
|
+
"Ergonomic Mouse Pad", "Phone Car Mount Magnetic", "Dash Cam Front and Rear",
|
|
2314
|
+
"Fitness Tracker Heart Rate", "Earbuds True Wireless", "Drone with 4K Camera",
|
|
2315
|
+
"Action Camera Waterproof", "VR Headset Meta Quest", "Smart Doorbell Camera",
|
|
2316
|
+
"WiFi Router Dual Band", "Graphics Tablet for Drawing", "Streaming Deck Mini",
|
|
2317
|
+
"Portable Monitor 15.6 inch", "Noise Cancelling Headphones", "Smart Thermostat WiFi"
|
|
2318
|
+
],
|
|
2319
|
+
|
|
2320
|
+
// Home & Kitchen
|
|
2321
|
+
home_kitchen: [
|
|
2322
|
+
"Stainless Steel Cookware Set", "Non-Stick Frying Pan 12 inch", "Chef Knife Professional 8 inch",
|
|
2323
|
+
"Cutting Board Bamboo Large", "Mixing Bowl Set Glass", "Measuring Cups and Spoons",
|
|
2324
|
+
"Coffee Maker Programmable", "Electric Kettle 1.7L", "Blender High Speed 1200W",
|
|
2325
|
+
"Air Fryer 6 Quart Digital", "Instant Pot 8 Quart", "Toaster 4 Slice Stainless",
|
|
2326
|
+
"Food Storage Containers Set", "Wine Glasses Set of 6", "Dinnerware Set 16 Piece",
|
|
2327
|
+
"Utensil Holder Ceramic", "Dish Drying Rack", "Kitchen Towels Cotton Set",
|
|
2328
|
+
"Spice Rack Organizer", "Can Opener Manual", "Vegetable Peeler Set",
|
|
2329
|
+
"Salad Spinner Large", "Cheese Grater Stainless Steel", "Pizza Cutter Wheel",
|
|
2330
|
+
"Garlic Press Stainless Steel", "Whisk Set Silicone", "Spatula Set Heat Resistant",
|
|
2331
|
+
"Baking Sheet Pan Set", "Muffin Pan 12 Cup", "Cake Pan Round 9 inch",
|
|
2332
|
+
"Cooling Rack Wire", "Rolling Pin Wood", "Oven Mitts Heat Resistant",
|
|
2333
|
+
"Apron Adjustable Cotton", "Trash Can 13 Gallon", "Vacuum Sealer Machine",
|
|
2334
|
+
"Water Filter Pitcher", "Ice Cube Trays Silicone", "Dish Soap Dispenser Pump",
|
|
2335
|
+
"Sponge Holder Sink Caddy", "Paper Towel Holder Wall Mount"
|
|
2336
|
+
],
|
|
2337
|
+
|
|
2338
|
+
// Clothing & Accessories
|
|
2339
|
+
clothing: [
|
|
2340
|
+
"Men's Cotton T-Shirt Basic", "Women's Yoga Pants High Waist", "Unisex Hoodie Pullover",
|
|
2341
|
+
"Athletic Shorts Moisture Wicking", "Crew Socks 6 Pack", "Ankle Socks No Show",
|
|
2342
|
+
"Baseball Cap Adjustable", "Beanie Winter Warm", "Sunglasses Polarized UV400",
|
|
2343
|
+
"Leather Belt Casual", "Canvas Backpack Laptop", "Crossbody Bag Leather",
|
|
2344
|
+
"Tote Bag Canvas Large", "Wallet RFID Blocking", "Watch Analog Quartz",
|
|
2345
|
+
"Sneakers Running Lightweight", "Sandals Comfort Slides", "Boots Waterproof Hiking",
|
|
2346
|
+
"Dress Shoes Leather Oxford", "Slippers Memory Foam", "Fleece Jacket Zip Up",
|
|
2347
|
+
"Rain Jacket Waterproof", "Denim Jeans Slim Fit", "Cargo Pants Tactical",
|
|
2348
|
+
"Leggings Compression", "Tank Top Racerback", "Long Sleeve Shirt Thermal",
|
|
2349
|
+
"Polo Shirt Cotton Pique", "Button Down Shirt Oxford", "Blazer Casual Slim Fit",
|
|
2350
|
+
"Sweater Crewneck Pullover", "Cardigan Cable Knit", "Scarf Infinity Loop",
|
|
2351
|
+
"Gloves Winter Touchscreen", "Tie Silk Classic", "Bow Tie Adjustable",
|
|
2352
|
+
"Suspenders Adjustable", "Cufflinks Silver Plated", "Dress Socks Argyle Pattern",
|
|
2353
|
+
"Compression Socks Athletic", "Pajama Set Cotton Soft"
|
|
2354
|
+
],
|
|
2355
|
+
|
|
2356
|
+
// Beauty & Personal Care
|
|
2357
|
+
beauty: [
|
|
2358
|
+
"Facial Cleanser Gentle Formula", "Moisturizer SPF 30 Daily", "Serum Vitamin C Brightening",
|
|
2359
|
+
"Face Mask Sheet Pack of 10", "Eye Cream Anti-Aging", "Lip Balm SPF 15 Set",
|
|
2360
|
+
"Shampoo Sulfate Free", "Conditioner Deep Moisture", "Hair Mask Repair Treatment",
|
|
2361
|
+
"Body Lotion Shea Butter", "Body Wash Exfoliating", "Hand Cream Intensive Care",
|
|
2362
|
+
"Deodorant Natural Aluminum Free", "Toothpaste Whitening Fluoride", "Electric Toothbrush Rechargeable",
|
|
2363
|
+
"Dental Floss Mint Flavored", "Mouthwash Antiseptic", "Razor 5 Blade Refills",
|
|
2364
|
+
"Shaving Cream Sensitive Skin", "Aftershave Balm Soothing", "Nail Clippers Set Professional",
|
|
2365
|
+
"Tweezers Stainless Steel Slant", "Makeup Brushes Set 12 Piece", "Beauty Blender Sponge Set",
|
|
2366
|
+
"Foundation Liquid Full Coverage", "Concealer Creamy Buildable", "Powder Compact Translucent",
|
|
2367
|
+
"Blush Powder Matte Finish", "Bronzer Contour Palette", "Highlighter Shimmer Glow",
|
|
2368
|
+
"Eyeshadow Palette Neutral Tones", "Eyeliner Liquid Waterproof", "Mascara Volumizing Black",
|
|
2369
|
+
"Eyebrow Pencil Retractable", "Lip Gloss Plumping Shine", "Lipstick Matte Long Lasting",
|
|
2370
|
+
"Lip Liner Nude Shades", "Makeup Remover Wipes", "Cotton Rounds 100 Count",
|
|
2371
|
+
"Q-Tips Cotton Swabs", "Hair Dryer Ionic 1875W", "Curling Iron Ceramic 1 inch",
|
|
2372
|
+
"Flat Iron Titanium Plates", "Hair Straightener Mini Travel"
|
|
2373
|
+
],
|
|
2374
|
+
|
|
2375
|
+
// Sports & Outdoors
|
|
2376
|
+
sports: [
|
|
2377
|
+
"Yoga Mat Non-Slip 6mm", "Resistance Bands Set of 5", "Dumbbells Set Adjustable",
|
|
2378
|
+
"Kettlebell Cast Iron 25lb", "Pull Up Bar Doorway", "Jump Rope Speed Adjustable",
|
|
2379
|
+
"Exercise Ball 65cm Anti-Burst", "Foam Roller Muscle Massage", "Ab Roller Wheel Dual",
|
|
2380
|
+
"Push Up Bars Non-Slip", "Workout Gloves Padded", "Water Bottle Insulated 32oz",
|
|
2381
|
+
"Gym Bag Duffel Large", "Yoga Block Set of 2", "Yoga Strap 8ft Cotton",
|
|
2382
|
+
"Tennis Racket Lightweight", "Basketball Official Size", "Soccer Ball Size 5",
|
|
2383
|
+
"Football Official Size", "Baseball Glove Leather", "Golf Balls Pack of 12",
|
|
2384
|
+
"Frisbee Ultimate Flying Disc", "Camping Tent 4 Person", "Sleeping Bag 20°F",
|
|
2385
|
+
"Camping Chair Folding", "Cooler 50 Quart Wheeled", "Backpack Hiking 40L",
|
|
2386
|
+
"Trekking Poles Adjustable", "Headlamp Rechargeable LED", "Camping Hammock Double",
|
|
2387
|
+
"Water Bottle Filter Portable", "First Aid Kit Complete", "Multi-Tool Stainless Steel",
|
|
2388
|
+
"Pocket Knife Folding", "Fire Starter Waterproof", "Compass Lensatic Military",
|
|
2389
|
+
"Binoculars 10x42 Waterproof", "Fishing Rod Spinning 7ft", "Tackle Box Organizer",
|
|
2390
|
+
"Bicycle Helmet Adjustable", "Bike Lock Cable Heavy Duty", "Bike Lights Front and Rear"
|
|
2391
|
+
],
|
|
2392
|
+
|
|
2393
|
+
// Books & Media
|
|
2394
|
+
books: [
|
|
2395
|
+
"Bestseller Novel Hardcover", "Self-Help Book Personal Growth", "Cookbook Healthy Recipes",
|
|
2396
|
+
"Biography Historical Figure", "Mystery Thriller Paperback", "Science Fiction Series Book 1",
|
|
2397
|
+
"Fantasy Novel Epic Adventure", "Romance Novel Contemporary", "Children's Picture Book",
|
|
2398
|
+
"Young Adult Fiction", "Graphic Novel Collection", "Coloring Book Adult Relaxation",
|
|
2399
|
+
"Journal Hardcover Lined", "Planner Daily Undated", "Notebook Spiral Bound",
|
|
2400
|
+
"Sketchbook Drawing Pad", "Art Book Photography Collection", "Travel Guide City Edition",
|
|
2401
|
+
"Language Learning Book Spanish", "Music Theory Beginner Guide", "Poetry Anthology Modern"
|
|
2402
|
+
],
|
|
2403
|
+
|
|
2404
|
+
// Toys & Games
|
|
2405
|
+
toys: [
|
|
2406
|
+
"Building Blocks Set 1000 Pieces", "Action Figure Collectible", "Doll Fashion Accessories",
|
|
2407
|
+
"Board Game Strategy Family", "Card Game Classic Deck", "Puzzle Jigsaw 1000 Pieces",
|
|
2408
|
+
"Remote Control Car Racing", "Drone Quadcopter Kids", "STEM Learning Kit Robotics",
|
|
2409
|
+
"Art Set Drawing Supplies", "Play-Doh Modeling Compound", "Slime Making Kit DIY",
|
|
2410
|
+
"Stuffed Animal Plush Bear", "Educational Toy Toddler", "Musical Instrument Keyboard Kids",
|
|
2411
|
+
"Outdoor Play Set Swing", "Bubble Machine Automatic", "Water Gun Super Soaker",
|
|
2412
|
+
"Nerf Blaster Foam Darts", "Science Experiment Kit", "Magic Tricks Set Beginner"
|
|
2413
|
+
],
|
|
2414
|
+
|
|
2415
|
+
// Pet Supplies
|
|
2416
|
+
pet_supplies: [
|
|
2417
|
+
"Dog Food Dry Grain Free 30lb", "Cat Food Wet Variety Pack", "Pet Bed Orthopedic Memory Foam",
|
|
2418
|
+
"Dog Leash Retractable 16ft", "Cat Litter Clumping Unscented", "Pet Carrier Airline Approved",
|
|
2419
|
+
"Dog Collar Adjustable", "Cat Scratching Post Tall", "Pet Bowls Stainless Steel Set",
|
|
2420
|
+
"Dog Toys Chew Durable", "Cat Toys Interactive", "Pet Grooming Brush",
|
|
2421
|
+
"Pet Shampoo Hypoallergenic", "Flea and Tick Collar", "Pet Nail Clippers",
|
|
2422
|
+
"Aquarium Tank 20 Gallon", "Fish Food Tropical Flakes", "Hamster Cage Wire Large",
|
|
2423
|
+
"Bird Cage Parakeet", "Reptile Tank Terrarium"
|
|
2424
|
+
],
|
|
2425
|
+
|
|
2426
|
+
// Office & Stationery
|
|
2427
|
+
office: [
|
|
2428
|
+
"Pens Ballpoint Black 12 Pack", "Pencils #2 HB Box of 24", "Highlighters Assorted Colors",
|
|
2429
|
+
"Markers Permanent Fine Point", "Sticky Notes 3x3 Bright Colors", "Index Cards Ruled 4x6",
|
|
2430
|
+
"Notebook College Ruled", "Binder 3 Ring 1 inch", "Folders Manila Letter Size",
|
|
2431
|
+
"Paper Clips Jumbo Box", "Stapler Heavy Duty", "Staples Standard 5000 Count",
|
|
2432
|
+
"Tape Dispenser Desktop", "Scissors 8 inch Sharp", "Ruler 12 inch Plastic",
|
|
2433
|
+
"Calculator Scientific", "Desk Organizer Mesh Metal", "File Cabinet 2 Drawer",
|
|
2434
|
+
"Desk Lamp LED Adjustable", "Mouse Pad Large Extended", "Desk Chair Ergonomic",
|
|
2435
|
+
"Standing Desk Converter", "Monitor Stand Riser", "Cable Management Box",
|
|
2436
|
+
"Whiteboard Magnetic Dry Erase", "Dry Erase Markers Set", "Bulletin Board Cork"
|
|
2437
|
+
],
|
|
2438
|
+
|
|
2439
|
+
// Baby Products
|
|
2440
|
+
baby: [
|
|
2441
|
+
"Diapers Size 3 Box of 100", "Baby Wipes Sensitive 12 Pack", "Baby Bottles 8oz Set of 4",
|
|
2442
|
+
"Pacifier Orthodontic 2 Pack", "Baby Formula Powder 30oz", "Baby Food Organic Pouches",
|
|
2443
|
+
"Bibs Waterproof Set of 6", "Burp Cloths Cotton Pack", "Baby Blanket Soft Fleece",
|
|
2444
|
+
"Crib Sheet Fitted Cotton", "Baby Monitor Video Camera", "Baby Swing Electric",
|
|
2445
|
+
"High Chair Adjustable", "Stroller Lightweight Compact", "Car Seat Infant Convertible",
|
|
2446
|
+
"Diaper Bag Backpack Multi-Pocket", "Baby Bathtub Foldable", "Baby Shampoo Tear Free",
|
|
2447
|
+
"Baby Lotion Gentle Fragrance Free", "Teething Toys BPA Free", "Play Mat Activity Gym"
|
|
2448
|
+
],
|
|
2449
|
+
|
|
2450
|
+
// Automotive
|
|
2451
|
+
automotive: [
|
|
2452
|
+
"Motor Oil Synthetic 5W-30 5qt", "Air Freshener Car Vent Clip", "Phone Mount Car Dashboard",
|
|
2453
|
+
"Car Charger Dual USB Fast Charge", "Jumper Cables Heavy Duty 20ft", "Tire Pressure Gauge Digital",
|
|
2454
|
+
"Windshield Wipers 22 inch", "Car Wash Soap Concentrate", "Microfiber Towels Car Cleaning",
|
|
2455
|
+
"Car Wax Polish Spray", "Leather Cleaner and Conditioner", "Floor Mats All Weather Rubber",
|
|
2456
|
+
"Seat Covers Universal Fit", "Steering Wheel Cover Leather", "Sunshade Windshield Reflective",
|
|
2457
|
+
"Emergency Kit Roadside", "Trunk Organizer Collapsible", "Vacuum Cleaner Car Portable",
|
|
2458
|
+
"Dash Cam 1080p Front", "Backup Camera Wireless"
|
|
2459
|
+
],
|
|
2460
|
+
|
|
2461
|
+
// Garden & Outdoor
|
|
2462
|
+
garden: [
|
|
2463
|
+
"Garden Hose 50ft Heavy Duty", "Sprinkler Oscillating Adjustable", "Garden Gloves Durable",
|
|
2464
|
+
"Hand Trowel Stainless Steel", "Pruning Shears Sharp Bypass", "Watering Can 2 Gallon",
|
|
2465
|
+
"Plant Pots Ceramic Set of 3", "Potting Soil Organic 8qt", "Fertilizer All Purpose 10lb",
|
|
2466
|
+
"Garden Seeds Vegetable Variety", "Weed Killer Spray Concentrate", "Mulch Rubber Nuggets 50lb",
|
|
2467
|
+
"Garden Kneeler Seat Folding", "Wheelbarrow Heavy Duty", "Rake Leaf Wide 24 Tine",
|
|
2468
|
+
"Shovel Round Point Long Handle", "Hedge Trimmer Electric", "Lawn Mower Push Reel",
|
|
2469
|
+
"Edger Gas Powered", "Leaf Blower Cordless Battery"
|
|
2470
|
+
]
|
|
2471
|
+
},
|
|
2472
|
+
|
|
2016
2473
|
narratives: {
|
|
2017
2474
|
support: [
|
|
2018
2475
|
{ template: "#greeting# I need help with #products#", optional: false },
|