gkt-node 3.3.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/README.md +89 -0
- package/assets/.agent/brain/agent_index.json +208 -0
- package/assets/.agent/brain/project_context.json +31 -0
- package/assets/.agent/skills/ab-test-setup/SKILL.md +232 -0
- package/assets/.agent/skills/agent-evaluation/SKILL.md +64 -0
- package/assets/.agent/skills/agent-memory-mcp/SKILL.md +82 -0
- package/assets/.agent/skills/agent-memory-systems/SKILL.md +67 -0
- package/assets/.agent/skills/agent-orchestration-multi-agent-optimize/SKILL.md +239 -0
- package/assets/.agent/skills/agent-tool-builder/SKILL.md +53 -0
- package/assets/.agent/skills/ai-agents-architect/SKILL.md +90 -0
- package/assets/.agent/skills/ai-engineer/SKILL.md +171 -0
- package/assets/.agent/skills/ai-product/SKILL.md +54 -0
- package/assets/.agent/skills/ai-wrapper-product/SKILL.md +273 -0
- package/assets/.agent/skills/airflow-dag-patterns/SKILL.md +41 -0
- package/assets/.agent/skills/airflow-dag-patterns/resources/implementation-playbook.md +509 -0
- package/assets/.agent/skills/airtable-automation/SKILL.md +170 -0
- package/assets/.agent/skills/analytics-tracking/SKILL.md +404 -0
- package/assets/.agent/skills/api-design-principles/SKILL.md +37 -0
- package/assets/.agent/skills/api-design-principles/assets/__pycache__/rest-api-template.cpython-314.pyc +0 -0
- package/assets/.agent/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/assets/.agent/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/assets/.agent/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/assets/.agent/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/assets/.agent/skills/api-design-principles/resources/implementation-playbook.md +513 -0
- package/assets/.agent/skills/api-designer/SKILL.md +22 -0
- package/assets/.agent/skills/api-designer/data/api_patterns.json +107 -0
- package/assets/.agent/skills/api-designer/scripts/__pycache__/api_gen.cpython-314.pyc +0 -0
- package/assets/.agent/skills/api-designer/scripts/api_gen.py +80 -0
- package/assets/.agent/skills/api-documentation-generator/SKILL.md +484 -0
- package/assets/.agent/skills/api-documenter/SKILL.md +184 -0
- package/assets/.agent/skills/api-fuzzing-bug-bounty/SKILL.md +433 -0
- package/assets/.agent/skills/api-patterns/SKILL.md +81 -0
- package/assets/.agent/skills/api-patterns/api-style.md +42 -0
- package/assets/.agent/skills/api-patterns/auth.md +24 -0
- package/assets/.agent/skills/api-patterns/documentation.md +26 -0
- package/assets/.agent/skills/api-patterns/graphql.md +41 -0
- package/assets/.agent/skills/api-patterns/rate-limiting.md +31 -0
- package/assets/.agent/skills/api-patterns/response.md +37 -0
- package/assets/.agent/skills/api-patterns/rest.md +40 -0
- package/assets/.agent/skills/api-patterns/scripts/__pycache__/api_validator.cpython-314.pyc +0 -0
- package/assets/.agent/skills/api-patterns/scripts/api_validator.py +211 -0
- package/assets/.agent/skills/api-patterns/security-testing.md +122 -0
- package/assets/.agent/skills/api-patterns/trpc.md +41 -0
- package/assets/.agent/skills/api-patterns/versioning.md +22 -0
- package/assets/.agent/skills/api-security-best-practices/SKILL.md +907 -0
- package/assets/.agent/skills/api-testing-observability-api-mock/SKILL.md +46 -0
- package/assets/.agent/skills/api-testing-observability-api-mock/resources/implementation-playbook.md +1327 -0
- package/assets/.agent/skills/app-store-optimization/HOW_TO_USE.md +281 -0
- package/assets/.agent/skills/app-store-optimization/README.md +430 -0
- package/assets/.agent/skills/app-store-optimization/SKILL.md +403 -0
- package/assets/.agent/skills/app-store-optimization/__pycache__/ab_test_planner.cpython-314.pyc +0 -0
- package/assets/.agent/skills/app-store-optimization/__pycache__/aso_scorer.cpython-314.pyc +0 -0
- package/assets/.agent/skills/app-store-optimization/__pycache__/competitor_analyzer.cpython-314.pyc +0 -0
- package/assets/.agent/skills/app-store-optimization/__pycache__/keyword_analyzer.cpython-314.pyc +0 -0
- package/assets/.agent/skills/app-store-optimization/__pycache__/launch_checklist.cpython-314.pyc +0 -0
- package/assets/.agent/skills/app-store-optimization/__pycache__/localization_helper.cpython-314.pyc +0 -0
- package/assets/.agent/skills/app-store-optimization/__pycache__/metadata_optimizer.cpython-314.pyc +0 -0
- package/assets/.agent/skills/app-store-optimization/__pycache__/review_analyzer.cpython-314.pyc +0 -0
- package/assets/.agent/skills/app-store-optimization/ab_test_planner.py +662 -0
- package/assets/.agent/skills/app-store-optimization/aso_scorer.py +482 -0
- package/assets/.agent/skills/app-store-optimization/competitor_analyzer.py +577 -0
- package/assets/.agent/skills/app-store-optimization/expected_output.json +170 -0
- package/assets/.agent/skills/app-store-optimization/keyword_analyzer.py +406 -0
- package/assets/.agent/skills/app-store-optimization/launch_checklist.py +739 -0
- package/assets/.agent/skills/app-store-optimization/localization_helper.py +588 -0
- package/assets/.agent/skills/app-store-optimization/metadata_optimizer.py +581 -0
- package/assets/.agent/skills/app-store-optimization/review_analyzer.py +714 -0
- package/assets/.agent/skills/app-store-optimization/sample_input.json +30 -0
- package/assets/.agent/skills/architecture-auditor/SKILL.md +35 -0
- package/assets/.agent/skills/architecture-auditor/data/standards.json +45 -0
- package/assets/.agent/skills/architecture-auditor/scripts/__pycache__/auditor.cpython-314.pyc +0 -0
- package/assets/.agent/skills/architecture-auditor/scripts/auditor.py +69 -0
- package/assets/.agent/skills/architecture-decision-records/SKILL.md +441 -0
- package/assets/.agent/skills/architecture-patterns/SKILL.md +37 -0
- package/assets/.agent/skills/architecture-patterns/resources/implementation-playbook.md +479 -0
- package/assets/.agent/skills/asana-automation/SKILL.md +171 -0
- package/assets/.agent/skills/attack-tree-construction/SKILL.md +38 -0
- package/assets/.agent/skills/attack-tree-construction/resources/implementation-playbook.md +671 -0
- package/assets/.agent/skills/auth-implementation-patterns/SKILL.md +39 -0
- package/assets/.agent/skills/auth-implementation-patterns/resources/implementation-playbook.md +618 -0
- package/assets/.agent/skills/autonomous-agent-patterns/SKILL.md +761 -0
- package/assets/.agent/skills/aws-penetration-testing/SKILL.md +405 -0
- package/assets/.agent/skills/aws-penetration-testing/references/advanced-aws-pentesting.md +469 -0
- package/assets/.agent/skills/aws-serverless/SKILL.md +323 -0
- package/assets/.agent/skills/backend-architect/SKILL.md +333 -0
- package/assets/.agent/skills/billing-automation/SKILL.md +42 -0
- package/assets/.agent/skills/billing-automation/resources/implementation-playbook.md +544 -0
- package/assets/.agent/skills/broken-authentication/SKILL.md +476 -0
- package/assets/.agent/skills/bullmq-specialist/SKILL.md +57 -0
- package/assets/.agent/skills/business-analyst/SKILL.md +182 -0
- package/assets/.agent/skills/cc-skill-backend-patterns/SKILL.md +584 -0
- package/assets/.agent/skills/cc-skill-clickhouse-io/SKILL.md +431 -0
- package/assets/.agent/skills/cc-skill-coding-standards/SKILL.md +522 -0
- package/assets/.agent/skills/cc-skill-continuous-learning/SKILL.md +10 -0
- package/assets/.agent/skills/cc-skill-continuous-learning/config.json +18 -0
- package/assets/.agent/skills/cc-skill-continuous-learning/evaluate-session.sh +60 -0
- package/assets/.agent/skills/cc-skill-frontend-patterns/SKILL.md +633 -0
- package/assets/.agent/skills/cc-skill-project-guidelines-example/SKILL.md +352 -0
- package/assets/.agent/skills/cc-skill-security-review/SKILL.md +496 -0
- package/assets/.agent/skills/cc-skill-strategic-compact/SKILL.md +10 -0
- package/assets/.agent/skills/cc-skill-strategic-compact/suggest-compact.sh +52 -0
- package/assets/.agent/skills/ci-cd-setup/SKILL.md +14 -0
- package/assets/.agent/skills/ci-cd-setup/data/pipeline_templates.json +42 -0
- package/assets/.agent/skills/ci-cd-setup/scripts/__pycache__/ci_gen.cpython-314.pyc +0 -0
- package/assets/.agent/skills/ci-cd-setup/scripts/ci_gen.py +75 -0
- package/assets/.agent/skills/claude-code-guide/SKILL.md +68 -0
- package/assets/.agent/skills/clean-code/SKILL.md +94 -0
- package/assets/.agent/skills/clickup-automation/SKILL.md +234 -0
- package/assets/.agent/skills/cloud-architect/SKILL.md +135 -0
- package/assets/.agent/skills/cloud-penetration-testing/SKILL.md +501 -0
- package/assets/.agent/skills/cloud-penetration-testing/references/advanced-cloud-scripts.md +318 -0
- package/assets/.agent/skills/code-reviewer/SKILL.md +31 -0
- package/assets/.agent/skills/code-reviewer/data/review_rules.json +172 -0
- package/assets/.agent/skills/code-reviewer/scripts/__pycache__/reviewer.cpython-314.pyc +0 -0
- package/assets/.agent/skills/code-reviewer/scripts/reviewer.py +192 -0
- package/assets/.agent/skills/codebase-navigator/SKILL.md +37 -0
- package/assets/.agent/skills/codebase-navigator/data/codebase_index.json +577 -0
- package/assets/.agent/skills/codebase-navigator/scripts/__pycache__/navigator.cpython-314.pyc +0 -0
- package/assets/.agent/skills/codebase-navigator/scripts/navigator.py +240 -0
- package/assets/.agent/skills/color-palette-generator/SKILL.md +26 -0
- package/assets/.agent/skills/color-palette-generator/data/palettes.json +37 -0
- package/assets/.agent/skills/color-palette-generator/scripts/__pycache__/palette.cpython-314.pyc +0 -0
- package/assets/.agent/skills/color-palette-generator/scripts/palette.py +57 -0
- package/assets/.agent/skills/competitive-landscape/SKILL.md +34 -0
- package/assets/.agent/skills/competitive-landscape/resources/implementation-playbook.md +494 -0
- package/assets/.agent/skills/competitor-alternatives/SKILL.md +750 -0
- package/assets/.agent/skills/computer-use-agents/SKILL.md +315 -0
- package/assets/.agent/skills/content-creator/SKILL.md +248 -0
- package/assets/.agent/skills/content-creator/assets/content_calendar_template.md +99 -0
- package/assets/.agent/skills/content-creator/references/brand_guidelines.md +199 -0
- package/assets/.agent/skills/content-creator/references/content_frameworks.md +534 -0
- package/assets/.agent/skills/content-creator/references/social_media_optimization.md +317 -0
- package/assets/.agent/skills/content-creator/scripts/__pycache__/brand_voice_analyzer.cpython-314.pyc +0 -0
- package/assets/.agent/skills/content-creator/scripts/__pycache__/seo_optimizer.cpython-314.pyc +0 -0
- package/assets/.agent/skills/content-creator/scripts/brand_voice_analyzer.py +185 -0
- package/assets/.agent/skills/content-creator/scripts/seo_optimizer.py +419 -0
- package/assets/.agent/skills/content-marketer/SKILL.md +170 -0
- package/assets/.agent/skills/context-compression/SKILL.md +266 -0
- package/assets/.agent/skills/context-degradation/SKILL.md +238 -0
- package/assets/.agent/skills/context-driven-development/SKILL.md +400 -0
- package/assets/.agent/skills/context-fundamentals/SKILL.md +192 -0
- package/assets/.agent/skills/context-manager/SKILL.md +26 -0
- package/assets/.agent/skills/context-manager/scripts/__pycache__/minify.cpython-314.pyc +0 -0
- package/assets/.agent/skills/context-manager/scripts/minify.py +82 -0
- package/assets/.agent/skills/context-optimization/SKILL.md +186 -0
- package/assets/.agent/skills/context-router/SKILL.md +42 -0
- package/assets/.agent/skills/context-router/scripts/__pycache__/context_router.cpython-314.pyc +0 -0
- package/assets/.agent/skills/context-router/scripts/context_router.py +185 -0
- package/assets/.agent/skills/context-window-management/SKILL.md +53 -0
- package/assets/.agent/skills/conversation-memory/SKILL.md +61 -0
- package/assets/.agent/skills/copywriting/SKILL.md +225 -0
- package/assets/.agent/skills/cost-optimization/SKILL.md +286 -0
- package/assets/.agent/skills/cqrs-implementation/SKILL.md +35 -0
- package/assets/.agent/skills/cqrs-implementation/resources/implementation-playbook.md +540 -0
- package/assets/.agent/skills/crewai/SKILL.md +243 -0
- package/assets/.agent/skills/daily-news-report/SKILL.md +356 -0
- package/assets/.agent/skills/daily-news-report/cache.json +41 -0
- package/assets/.agent/skills/daily-news-report/sources.json +183 -0
- package/assets/.agent/skills/data-engineer/SKILL.md +224 -0
- package/assets/.agent/skills/data-engineering-data-driven-feature/SKILL.md +182 -0
- package/assets/.agent/skills/data-engineering-data-pipeline/SKILL.md +201 -0
- package/assets/.agent/skills/data-quality-frameworks/SKILL.md +40 -0
- package/assets/.agent/skills/data-quality-frameworks/resources/implementation-playbook.md +573 -0
- package/assets/.agent/skills/data-scientist/SKILL.md +199 -0
- package/assets/.agent/skills/data-storytelling/SKILL.md +465 -0
- package/assets/.agent/skills/database-admin/SKILL.md +165 -0
- package/assets/.agent/skills/database-architect/SKILL.md +268 -0
- package/assets/.agent/skills/database-cloud-optimization-cost-optimize/SKILL.md +44 -0
- package/assets/.agent/skills/database-cloud-optimization-cost-optimize/resources/implementation-playbook.md +1441 -0
- package/assets/.agent/skills/database-design/SKILL.md +52 -0
- package/assets/.agent/skills/database-design/database-selection.md +43 -0
- package/assets/.agent/skills/database-design/indexing.md +39 -0
- package/assets/.agent/skills/database-design/migrations.md +48 -0
- package/assets/.agent/skills/database-design/optimization.md +36 -0
- package/assets/.agent/skills/database-design/orm-selection.md +30 -0
- package/assets/.agent/skills/database-design/schema-design.md +56 -0
- package/assets/.agent/skills/database-design/scripts/__pycache__/schema_validator.cpython-314.pyc +0 -0
- package/assets/.agent/skills/database-design/scripts/schema_validator.py +172 -0
- package/assets/.agent/skills/database-migration/SKILL.md +436 -0
- package/assets/.agent/skills/database-migrations-migration-observability/SKILL.md +420 -0
- package/assets/.agent/skills/database-migrations-sql-migrations/SKILL.md +53 -0
- package/assets/.agent/skills/database-migrations-sql-migrations/resources/implementation-playbook.md +499 -0
- package/assets/.agent/skills/database-optimizer/SKILL.md +167 -0
- package/assets/.agent/skills/datadog-automation/SKILL.md +235 -0
- package/assets/.agent/skills/db-designer/SKILL.md +22 -0
- package/assets/.agent/skills/db-designer/data/schema_patterns.json +156 -0
- package/assets/.agent/skills/db-designer/scripts/__pycache__/sql_gen.cpython-314.pyc +0 -0
- package/assets/.agent/skills/db-designer/scripts/sql_gen.py +90 -0
- package/assets/.agent/skills/dbt-transformation-patterns/SKILL.md +34 -0
- package/assets/.agent/skills/dbt-transformation-patterns/resources/implementation-playbook.md +547 -0
- package/assets/.agent/skills/debugger/SKILL.md +49 -0
- package/assets/.agent/skills/debugging-strategies/SKILL.md +34 -0
- package/assets/.agent/skills/debugging-strategies/resources/implementation-playbook.md +511 -0
- package/assets/.agent/skills/deep-research/SKILL.md +114 -0
- package/assets/.agent/skills/deployment-engineer/SKILL.md +170 -0
- package/assets/.agent/skills/deployment-pipeline-design/SKILL.md +371 -0
- package/assets/.agent/skills/deployment-procedures/SKILL.md +241 -0
- package/assets/.agent/skills/diff-applier/SKILL.md +34 -0
- package/assets/.agent/skills/diff-applier/scripts/__pycache__/apply_patch.cpython-314.pyc +0 -0
- package/assets/.agent/skills/diff-applier/scripts/apply_patch.py +137 -0
- package/assets/.agent/skills/discord-automation/SKILL.md +187 -0
- package/assets/.agent/skills/distributed-debugging-debug-trace/SKILL.md +44 -0
- package/assets/.agent/skills/distributed-debugging-debug-trace/resources/implementation-playbook.md +1307 -0
- package/assets/.agent/skills/distributed-tracing/SKILL.md +450 -0
- package/assets/.agent/skills/doc-generator/SKILL.md +14 -0
- package/assets/.agent/skills/doc-generator/data/doc_templates.json +40 -0
- package/assets/.agent/skills/doc-generator/scripts/__pycache__/doc_gen.cpython-314.pyc +0 -0
- package/assets/.agent/skills/doc-generator/scripts/doc_gen.py +48 -0
- package/assets/.agent/skills/docker-expert/SKILL.md +409 -0
- package/assets/.agent/skills/docker-wizard/SKILL.md +14 -0
- package/assets/.agent/skills/docker-wizard/data/docker_templates.json +93 -0
- package/assets/.agent/skills/docker-wizard/scripts/__pycache__/docker_gen.cpython-314.pyc +0 -0
- package/assets/.agent/skills/docker-wizard/scripts/docker_gen.py +86 -0
- package/assets/.agent/skills/docs-architect/SKILL.md +98 -0
- package/assets/.agent/skills/e2e-testing-patterns/SKILL.md +41 -0
- package/assets/.agent/skills/e2e-testing-patterns/resources/implementation-playbook.md +531 -0
- package/assets/.agent/skills/email-sequence/SKILL.md +925 -0
- package/assets/.agent/skills/embedding-strategies/SKILL.md +491 -0
- package/assets/.agent/skills/employment-contract-templates/SKILL.md +39 -0
- package/assets/.agent/skills/employment-contract-templates/resources/implementation-playbook.md +493 -0
- package/assets/.agent/skills/env-manager/SKILL.md +33 -0
- package/assets/.agent/skills/env-manager/scripts/__pycache__/env_scanner.cpython-314.pyc +0 -0
- package/assets/.agent/skills/env-manager/scripts/env_scanner.py +181 -0
- package/assets/.agent/skills/error-detective/SKILL.md +53 -0
- package/assets/.agent/skills/error-diagnostics-error-analysis/SKILL.md +47 -0
- package/assets/.agent/skills/error-diagnostics-error-analysis/resources/implementation-playbook.md +1143 -0
- package/assets/.agent/skills/error-diagnostics-error-trace/SKILL.md +48 -0
- package/assets/.agent/skills/error-diagnostics-error-trace/resources/implementation-playbook.md +1371 -0
- package/assets/.agent/skills/error-handling-patterns/SKILL.md +35 -0
- package/assets/.agent/skills/error-handling-patterns/resources/implementation-playbook.md +635 -0
- package/assets/.agent/skills/ethical-hacking-methodology/SKILL.md +466 -0
- package/assets/.agent/skills/event-sourcing-architect/SKILL.md +58 -0
- package/assets/.agent/skills/event-store-design/SKILL.md +449 -0
- package/assets/.agent/skills/exa-search/SKILL.md +36 -0
- package/assets/.agent/skills/fastapi-pro/SKILL.md +192 -0
- package/assets/.agent/skills/fastapi-router-py/SKILL.md +52 -0
- package/assets/.agent/skills/fastapi-templates/SKILL.md +32 -0
- package/assets/.agent/skills/fastapi-templates/resources/implementation-playbook.md +566 -0
- package/assets/.agent/skills/free-tool-strategy/SKILL.md +576 -0
- package/assets/.agent/skills/freshdesk-automation/SKILL.md +219 -0
- package/assets/.agent/skills/frontend-developer/SKILL.md +171 -0
- package/assets/.agent/skills/gcp-cloud-run/SKILL.md +288 -0
- package/assets/.agent/skills/gemini-api-dev/SKILL.md +127 -0
- package/assets/.agent/skills/geo-fundamentals/SKILL.md +156 -0
- package/assets/.agent/skills/geo-fundamentals/scripts/__pycache__/geo_checker.cpython-314.pyc +0 -0
- package/assets/.agent/skills/geo-fundamentals/scripts/geo_checker.py +289 -0
- package/assets/.agent/skills/git-advanced-workflows/SKILL.md +412 -0
- package/assets/.agent/skills/git-manager/SKILL.md +22 -0
- package/assets/.agent/skills/git-manager/data/git_conventions.json +84 -0
- package/assets/.agent/skills/git-manager/scripts/__pycache__/commit.cpython-314.pyc +0 -0
- package/assets/.agent/skills/git-manager/scripts/__pycache__/log.cpython-314.pyc +0 -0
- package/assets/.agent/skills/git-manager/scripts/commit.py +70 -0
- package/assets/.agent/skills/git-manager/scripts/log.py +29 -0
- package/assets/.agent/skills/github-actions-templates/SKILL.md +345 -0
- package/assets/.agent/skills/github-automation/SKILL.md +227 -0
- package/assets/.agent/skills/gitlab-ci-patterns/SKILL.md +283 -0
- package/assets/.agent/skills/gitops-workflow/SKILL.md +303 -0
- package/assets/.agent/skills/gitops-workflow/references/argocd-setup.md +134 -0
- package/assets/.agent/skills/gitops-workflow/references/sync-policies.md +131 -0
- package/assets/.agent/skills/gmail-automation/SKILL.md +270 -0
- package/assets/.agent/skills/google-calendar-automation/SKILL.md +176 -0
- package/assets/.agent/skills/google-drive-automation/SKILL.md +193 -0
- package/assets/.agent/skills/googlesheets-automation/SKILL.md +197 -0
- package/assets/.agent/skills/grafana-dashboards/SKILL.md +381 -0
- package/assets/.agent/skills/graphql/SKILL.md +68 -0
- package/assets/.agent/skills/graphql-architect/SKILL.md +182 -0
- package/assets/.agent/skills/helm-chart-scaffolding/SKILL.md +34 -0
- package/assets/.agent/skills/helm-chart-scaffolding/assets/Chart.yaml.template +42 -0
- package/assets/.agent/skills/helm-chart-scaffolding/assets/values.yaml.template +185 -0
- package/assets/.agent/skills/helm-chart-scaffolding/references/chart-structure.md +500 -0
- package/assets/.agent/skills/helm-chart-scaffolding/resources/implementation-playbook.md +543 -0
- package/assets/.agent/skills/helm-chart-scaffolding/scripts/validate-chart.sh +244 -0
- package/assets/.agent/skills/hr-pro/SKILL.md +126 -0
- package/assets/.agent/skills/hubspot-automation/SKILL.md +178 -0
- package/assets/.agent/skills/hubspot-integration/SKILL.md +42 -0
- package/assets/.agent/skills/hybrid-search-implementation/SKILL.md +32 -0
- package/assets/.agent/skills/hybrid-search-implementation/resources/implementation-playbook.md +567 -0
- package/assets/.agent/skills/incident-responder/SKILL.md +213 -0
- package/assets/.agent/skills/incident-response-incident-response/SKILL.md +168 -0
- package/assets/.agent/skills/incident-response-smart-fix/SKILL.md +29 -0
- package/assets/.agent/skills/incident-response-smart-fix/resources/implementation-playbook.md +838 -0
- package/assets/.agent/skills/incident-runbook-templates/SKILL.md +395 -0
- package/assets/.agent/skills/infinite-gratitude/SKILL.md +26 -0
- package/assets/.agent/skills/inngest/SKILL.md +55 -0
- package/assets/.agent/skills/instagram-automation/SKILL.md +192 -0
- package/assets/.agent/skills/intercom-automation/SKILL.md +248 -0
- package/assets/.agent/skills/javascript-mastery/SKILL.md +645 -0
- package/assets/.agent/skills/javascript-testing-patterns/SKILL.md +35 -0
- package/assets/.agent/skills/javascript-testing-patterns/resources/implementation-playbook.md +1024 -0
- package/assets/.agent/skills/jira-automation/SKILL.md +185 -0
- package/assets/.agent/skills/k8s-manifest-generator/SKILL.md +35 -0
- package/assets/.agent/skills/k8s-manifest-generator/assets/configmap-template.yaml +296 -0
- package/assets/.agent/skills/k8s-manifest-generator/assets/deployment-template.yaml +203 -0
- package/assets/.agent/skills/k8s-manifest-generator/assets/service-template.yaml +171 -0
- package/assets/.agent/skills/k8s-manifest-generator/references/deployment-spec.md +753 -0
- package/assets/.agent/skills/k8s-manifest-generator/references/service-spec.md +724 -0
- package/assets/.agent/skills/k8s-manifest-generator/resources/implementation-playbook.md +510 -0
- package/assets/.agent/skills/k8s-security-policies/SKILL.md +346 -0
- package/assets/.agent/skills/k8s-security-policies/assets/network-policy-template.yaml +177 -0
- package/assets/.agent/skills/k8s-security-policies/references/rbac-patterns.md +187 -0
- package/assets/.agent/skills/knowledge-guide/SKILL.md +34 -0
- package/assets/.agent/skills/knowledge-guide/scripts/__pycache__/note_taker.cpython-314.pyc +0 -0
- package/assets/.agent/skills/knowledge-guide/scripts/note_taker.py +50 -0
- package/assets/.agent/skills/kpi-dashboard-design/SKILL.md +440 -0
- package/assets/.agent/skills/kubernetes-architect/SKILL.md +170 -0
- package/assets/.agent/skills/langchain-architecture/SKILL.md +350 -0
- package/assets/.agent/skills/langfuse/SKILL.md +238 -0
- package/assets/.agent/skills/langgraph/SKILL.md +287 -0
- package/assets/.agent/skills/launch-strategy/SKILL.md +344 -0
- package/assets/.agent/skills/legal-advisor/SKILL.md +70 -0
- package/assets/.agent/skills/linkedin-automation/SKILL.md +175 -0
- package/assets/.agent/skills/linux-privilege-escalation/SKILL.md +504 -0
- package/assets/.agent/skills/llm-app-patterns/SKILL.md +760 -0
- package/assets/.agent/skills/llm-evaluation/SKILL.md +483 -0
- package/assets/.agent/skills/mailchimp-automation/SKILL.md +231 -0
- package/assets/.agent/skills/market-sizing-analysis/SKILL.md +425 -0
- package/assets/.agent/skills/market-sizing-analysis/examples/saas-market-sizing.md +349 -0
- package/assets/.agent/skills/market-sizing-analysis/references/data-sources.md +360 -0
- package/assets/.agent/skills/marketing-ideas/SKILL.md +221 -0
- package/assets/.agent/skills/marketing-psychology/SKILL.md +255 -0
- package/assets/.agent/skills/mcp-builder/LICENSE.txt +202 -0
- package/assets/.agent/skills/mcp-builder/SKILL.md +236 -0
- package/assets/.agent/skills/mcp-builder/reference/evaluation.md +602 -0
- package/assets/.agent/skills/mcp-builder/reference/mcp_best_practices.md +249 -0
- package/assets/.agent/skills/mcp-builder/reference/node_mcp_server.md +970 -0
- package/assets/.agent/skills/mcp-builder/reference/python_mcp_server.md +719 -0
- package/assets/.agent/skills/mcp-builder/scripts/__pycache__/connections.cpython-314.pyc +0 -0
- package/assets/.agent/skills/mcp-builder/scripts/__pycache__/evaluation.cpython-314.pyc +0 -0
- package/assets/.agent/skills/mcp-builder/scripts/connections.py +151 -0
- package/assets/.agent/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/assets/.agent/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/assets/.agent/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/assets/.agent/skills/mermaid-expert/SKILL.md +59 -0
- package/assets/.agent/skills/meta-thinker/SKILL.md +41 -0
- package/assets/.agent/skills/meta-thinker/data/brainstorm_frameworks.json +614 -0
- package/assets/.agent/skills/meta-thinker/data/feature_ideas.json +352 -0
- package/assets/.agent/skills/meta-thinker/data/industry_database.json +1693 -0
- package/assets/.agent/skills/meta-thinker/data/monetization_models.json +570 -0
- package/assets/.agent/skills/meta-thinker/data/platform_guide.json +361 -0
- package/assets/.agent/skills/meta-thinker/data/product_archetypes.json +998 -0
- package/assets/.agent/skills/meta-thinker/scripts/__pycache__/idea_engine.cpython-314.pyc +0 -0
- package/assets/.agent/skills/meta-thinker/scripts/idea_engine.py +246 -0
- package/assets/.agent/skills/metasploit-framework/SKILL.md +478 -0
- package/assets/.agent/skills/micro-saas-launcher/SKILL.md +212 -0
- package/assets/.agent/skills/monday-automation/SKILL.md +233 -0
- package/assets/.agent/skills/multi-agent-patterns/SKILL.md +262 -0
- package/assets/.agent/skills/n8n-code-python/SKILL.md +750 -0
- package/assets/.agent/skills/n8n-mcp-tools-expert/SKILL.md +654 -0
- package/assets/.agent/skills/n8n-node-configuration/SKILL.md +796 -0
- package/assets/.agent/skills/neon-postgres/SKILL.md +56 -0
- package/assets/.agent/skills/nestjs-expert/SKILL.md +552 -0
- package/assets/.agent/skills/nextjs-best-practices/SKILL.md +203 -0
- package/assets/.agent/skills/nocobase-plugin-developer/SKILL.md +1289 -0
- package/assets/.agent/skills/nodejs-backend-patterns/SKILL.md +35 -0
- package/assets/.agent/skills/nodejs-backend-patterns/resources/implementation-playbook.md +1019 -0
- package/assets/.agent/skills/nodejs-best-practices/SKILL.md +333 -0
- package/assets/.agent/skills/nosql-expert/SKILL.md +111 -0
- package/assets/.agent/skills/notion-automation/SKILL.md +215 -0
- package/assets/.agent/skills/observability-engineer/SKILL.md +237 -0
- package/assets/.agent/skills/observability-monitoring-monitor-setup/SKILL.md +48 -0
- package/assets/.agent/skills/observability-monitoring-monitor-setup/resources/implementation-playbook.md +505 -0
- package/assets/.agent/skills/observability-monitoring-slo-implement/SKILL.md +43 -0
- package/assets/.agent/skills/observability-monitoring-slo-implement/resources/implementation-playbook.md +1077 -0
- package/assets/.agent/skills/on-call-handoff-patterns/SKILL.md +453 -0
- package/assets/.agent/skills/onboarding-cro/SKILL.md +433 -0
- package/assets/.agent/skills/openapi-spec-generation/SKILL.md +33 -0
- package/assets/.agent/skills/openapi-spec-generation/resources/implementation-playbook.md +1027 -0
- package/assets/.agent/skills/page-cro/SKILL.md +343 -0
- package/assets/.agent/skills/paid-ads/SKILL.md +551 -0
- package/assets/.agent/skills/payment-integration/SKILL.md +77 -0
- package/assets/.agent/skills/paypal-integration/SKILL.md +479 -0
- package/assets/.agent/skills/paywall-upgrade-cro/SKILL.md +570 -0
- package/assets/.agent/skills/pentest-checklist/SKILL.md +334 -0
- package/assets/.agent/skills/pentest-commands/SKILL.md +438 -0
- package/assets/.agent/skills/pipedrive-automation/SKILL.md +224 -0
- package/assets/.agent/skills/plaid-fintech/SKILL.md +50 -0
- package/assets/.agent/skills/popup-cro/SKILL.md +346 -0
- package/assets/.agent/skills/postgresql/SKILL.md +230 -0
- package/assets/.agent/skills/postmortem-writing/SKILL.md +386 -0
- package/assets/.agent/skills/pricing-strategy/SKILL.md +356 -0
- package/assets/.agent/skills/prisma-expert/SKILL.md +355 -0
- package/assets/.agent/skills/product-manager-toolkit/SKILL.md +351 -0
- package/assets/.agent/skills/product-manager-toolkit/references/prd_templates.md +317 -0
- package/assets/.agent/skills/product-manager-toolkit/scripts/__pycache__/customer_interview_analyzer.cpython-314.pyc +0 -0
- package/assets/.agent/skills/product-manager-toolkit/scripts/__pycache__/rice_prioritizer.cpython-314.pyc +0 -0
- package/assets/.agent/skills/product-manager-toolkit/scripts/customer_interview_analyzer.py +441 -0
- package/assets/.agent/skills/product-manager-toolkit/scripts/rice_prioritizer.py +296 -0
- package/assets/.agent/skills/programmatic-seo/SKILL.md +351 -0
- package/assets/.agent/skills/project-scaffolder/SKILL.md +26 -0
- package/assets/.agent/skills/project-scaffolder/data/scaffold_templates.json +150 -0
- package/assets/.agent/skills/project-scaffolder/scripts/__pycache__/scaffold.cpython-314.pyc +0 -0
- package/assets/.agent/skills/project-scaffolder/scripts/scaffold.py +249 -0
- package/assets/.agent/skills/projection-patterns/SKILL.md +33 -0
- package/assets/.agent/skills/projection-patterns/resources/implementation-playbook.md +501 -0
- package/assets/.agent/skills/prometheus-configuration/SKILL.md +404 -0
- package/assets/.agent/skills/prompt-caching/SKILL.md +61 -0
- package/assets/.agent/skills/prompt-engineer/README.md +659 -0
- package/assets/.agent/skills/prompt-engineer/SKILL.md +252 -0
- package/assets/.agent/skills/prompt-engineering/SKILL.md +171 -0
- package/assets/.agent/skills/prompt-engineering-patterns/SKILL.md +213 -0
- package/assets/.agent/skills/prompt-engineering-patterns/assets/few-shot-examples.json +106 -0
- package/assets/.agent/skills/prompt-engineering-patterns/assets/prompt-template-library.md +246 -0
- package/assets/.agent/skills/prompt-engineering-patterns/references/chain-of-thought.md +399 -0
- package/assets/.agent/skills/prompt-engineering-patterns/references/few-shot-learning.md +369 -0
- package/assets/.agent/skills/prompt-engineering-patterns/references/prompt-optimization.md +414 -0
- package/assets/.agent/skills/prompt-engineering-patterns/references/prompt-templates.md +470 -0
- package/assets/.agent/skills/prompt-engineering-patterns/references/system-prompts.md +189 -0
- package/assets/.agent/skills/prompt-engineering-patterns/scripts/__pycache__/optimize-prompt.cpython-314.pyc +0 -0
- package/assets/.agent/skills/prompt-engineering-patterns/scripts/optimize-prompt.py +279 -0
- package/assets/.agent/skills/prompt-library/SKILL.md +322 -0
- package/assets/.agent/skills/rag-engineer/SKILL.md +90 -0
- package/assets/.agent/skills/rag-implementation/SKILL.md +421 -0
- package/assets/.agent/skills/react-patterns/SKILL.md +198 -0
- package/assets/.agent/skills/react-state-management/SKILL.md +441 -0
- package/assets/.agent/skills/react-ui-patterns/SKILL.md +289 -0
- package/assets/.agent/skills/readme-generator/SKILL.md +14 -0
- package/assets/.agent/skills/readme-generator/data/readme_templates.json +22 -0
- package/assets/.agent/skills/readme-generator/scripts/__pycache__/readme_gen.cpython-314.pyc +0 -0
- package/assets/.agent/skills/readme-generator/scripts/readme_gen.py +81 -0
- package/assets/.agent/skills/red-team-tactics/SKILL.md +199 -0
- package/assets/.agent/skills/red-team-tools/SKILL.md +310 -0
- package/assets/.agent/skills/reference-builder/SKILL.md +188 -0
- package/assets/.agent/skills/referral-program/SKILL.md +602 -0
- package/assets/.agent/skills/release-manager/SKILL.md +30 -0
- package/assets/.agent/skills/release-manager/scripts/__pycache__/release.cpython-314.pyc +0 -0
- package/assets/.agent/skills/release-manager/scripts/release.py +210 -0
- package/assets/.agent/skills/reliability-engineer/SKILL.md +30 -0
- package/assets/.agent/skills/reliability-engineer/data/reliability.json +57 -0
- package/assets/.agent/skills/reliability-engineer/scripts/__pycache__/sre.cpython-314.pyc +0 -0
- package/assets/.agent/skills/reliability-engineer/scripts/sre.py +94 -0
- package/assets/.agent/skills/saga-orchestration/SKILL.md +496 -0
- package/assets/.agent/skills/sales-automator/SKILL.md +55 -0
- package/assets/.agent/skills/salesforce-automation/SKILL.md +190 -0
- package/assets/.agent/skills/sast-configuration/SKILL.md +212 -0
- package/assets/.agent/skills/scanning-tools/SKILL.md +589 -0
- package/assets/.agent/skills/schema-markup/SKILL.md +360 -0
- package/assets/.agent/skills/search-specialist/SKILL.md +80 -0
- package/assets/.agent/skills/secrets-management/SKILL.md +364 -0
- package/assets/.agent/skills/security-auditor/SKILL.md +169 -0
- package/assets/.agent/skills/security-bluebook-builder/SKILL.md +22 -0
- package/assets/.agent/skills/security-requirement-extraction/SKILL.md +33 -0
- package/assets/.agent/skills/security-requirement-extraction/resources/implementation-playbook.md +676 -0
- package/assets/.agent/skills/security-scanner/SKILL.md +21 -0
- package/assets/.agent/skills/security-scanner/data/security_patterns.json +101 -0
- package/assets/.agent/skills/security-scanner/scripts/__pycache__/checklist_gen.cpython-314.pyc +0 -0
- package/assets/.agent/skills/security-scanner/scripts/__pycache__/vuln_scan.cpython-314.pyc +0 -0
- package/assets/.agent/skills/security-scanner/scripts/checklist_gen.py +49 -0
- package/assets/.agent/skills/security-scanner/scripts/vuln_scan.py +81 -0
- package/assets/.agent/skills/sendgrid-automation/SKILL.md +228 -0
- package/assets/.agent/skills/seo-audit/SKILL.md +487 -0
- package/assets/.agent/skills/seo-authority-builder/SKILL.md +136 -0
- package/assets/.agent/skills/seo-cannibalization-detector/SKILL.md +123 -0
- package/assets/.agent/skills/seo-content-auditor/SKILL.md +83 -0
- package/assets/.agent/skills/seo-content-planner/SKILL.md +108 -0
- package/assets/.agent/skills/seo-content-refresher/SKILL.md +118 -0
- package/assets/.agent/skills/seo-content-writer/SKILL.md +96 -0
- package/assets/.agent/skills/seo-fundamentals/SKILL.md +173 -0
- package/assets/.agent/skills/seo-fundamentals/scripts/__pycache__/seo_checker.cpython-314.pyc +0 -0
- package/assets/.agent/skills/seo-fundamentals/scripts/seo_checker.py +219 -0
- package/assets/.agent/skills/seo-keyword-strategist/SKILL.md +95 -0
- package/assets/.agent/skills/seo-meta-optimizer/SKILL.md +92 -0
- package/assets/.agent/skills/seo-snippet-hunter/SKILL.md +114 -0
- package/assets/.agent/skills/seo-structure-architect/SKILL.md +108 -0
- package/assets/.agent/skills/service-mesh-observability/SKILL.md +395 -0
- package/assets/.agent/skills/shodan-reconnaissance/SKILL.md +503 -0
- package/assets/.agent/skills/shopify-apps/SKILL.md +42 -0
- package/assets/.agent/skills/shopify-automation/SKILL.md +168 -0
- package/assets/.agent/skills/signup-flow-cro/SKILL.md +355 -0
- package/assets/.agent/skills/similarity-search-patterns/SKILL.md +33 -0
- package/assets/.agent/skills/similarity-search-patterns/resources/implementation-playbook.md +557 -0
- package/assets/.agent/skills/skill-creator/LICENSE.txt +202 -0
- package/assets/.agent/skills/skill-creator/README.md +270 -0
- package/assets/.agent/skills/skill-creator/SKILL.md +593 -0
- package/assets/.agent/skills/skill-creator/references/output-patterns.md +82 -0
- package/assets/.agent/skills/skill-creator/references/workflows.md +28 -0
- package/assets/.agent/skills/skill-creator/scripts/__pycache__/init_skill.cpython-314.pyc +0 -0
- package/assets/.agent/skills/skill-creator/scripts/__pycache__/package_skill.cpython-314.pyc +0 -0
- package/assets/.agent/skills/skill-creator/scripts/__pycache__/quick_validate.cpython-314.pyc +0 -0
- package/assets/.agent/skills/skill-creator/scripts/init_skill.py +303 -0
- package/assets/.agent/skills/skill-creator/scripts/package_skill.py +110 -0
- package/assets/.agent/skills/skill-creator/scripts/quick_validate.py +95 -0
- package/assets/.agent/skills/skill-developer/ADVANCED.md +197 -0
- package/assets/.agent/skills/skill-developer/HOOK_MECHANISMS.md +306 -0
- package/assets/.agent/skills/skill-developer/PATTERNS_LIBRARY.md +152 -0
- package/assets/.agent/skills/skill-developer/SKILL.md +426 -0
- package/assets/.agent/skills/skill-developer/SKILL_RULES_REFERENCE.md +315 -0
- package/assets/.agent/skills/skill-developer/TRIGGER_TYPES.md +305 -0
- package/assets/.agent/skills/skill-developer/TROUBLESHOOTING.md +514 -0
- package/assets/.agent/skills/slack-automation/SKILL.md +189 -0
- package/assets/.agent/skills/slo-implementation/SKILL.md +341 -0
- package/assets/.agent/skills/social-content/SKILL.md +807 -0
- package/assets/.agent/skills/spark-optimization/SKILL.md +427 -0
- package/assets/.agent/skills/sql-injection-testing/SKILL.md +448 -0
- package/assets/.agent/skills/sql-optimization-patterns/SKILL.md +35 -0
- package/assets/.agent/skills/sql-optimization-patterns/resources/implementation-playbook.md +504 -0
- package/assets/.agent/skills/sql-pro/SKILL.md +173 -0
- package/assets/.agent/skills/ssh-penetration-testing/SKILL.md +488 -0
- package/assets/.agent/skills/startup-analyst/SKILL.md +328 -0
- package/assets/.agent/skills/startup-business-analyst-business-case/SKILL.md +487 -0
- package/assets/.agent/skills/startup-business-analyst-financial-projections/SKILL.md +353 -0
- package/assets/.agent/skills/startup-business-analyst-market-opportunity/SKILL.md +240 -0
- package/assets/.agent/skills/startup-financial-modeling/SKILL.md +467 -0
- package/assets/.agent/skills/startup-metrics-framework/SKILL.md +34 -0
- package/assets/.agent/skills/startup-metrics-framework/resources/implementation-playbook.md +500 -0
- package/assets/.agent/skills/stride-analysis-patterns/SKILL.md +33 -0
- package/assets/.agent/skills/stride-analysis-patterns/resources/implementation-playbook.md +655 -0
- package/assets/.agent/skills/stripe-automation/SKILL.md +198 -0
- package/assets/.agent/skills/stripe-integration/SKILL.md +454 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/AGENTS.md +1490 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/README.md +119 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/SKILL.md +57 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/metadata.json +13 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/_contributing.md +171 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/_sections.md +39 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/_template.md +34 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/advanced-full-text-search.md +55 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/advanced-jsonb-indexing.md +49 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/conn-idle-timeout.md +46 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/conn-limits.md +44 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/conn-pooling.md +41 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/conn-prepared-statements.md +46 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/data-batch-inserts.md +54 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/data-n-plus-one.md +53 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/data-pagination.md +50 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/data-upsert.md +50 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/lock-advisory.md +56 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/lock-deadlock-prevention.md +68 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/lock-short-transactions.md +50 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/lock-skip-locked.md +54 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/monitor-explain-analyze.md +45 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/monitor-pg-stat-statements.md +55 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/monitor-vacuum-analyze.md +55 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/query-composite-indexes.md +44 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/query-covering-indexes.md +40 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/query-index-types.md +45 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/query-missing-indexes.md +43 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/query-partial-indexes.md +45 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/schema-data-types.md +46 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/schema-foreign-key-indexes.md +59 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/schema-lowercase-identifiers.md +55 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/schema-partitioning.md +55 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/schema-primary-keys.md +61 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/security-privileges.md +54 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/security-rls-basics.md +50 -0
- package/assets/.agent/skills/supabase-postgres-best-practices/rules/security-rls-performance.md +57 -0
- package/assets/.agent/skills/system-diagrammer/SKILL.md +25 -0
- package/assets/.agent/skills/system-diagrammer/data/diagram_templates.json +69 -0
- package/assets/.agent/skills/system-diagrammer/scripts/__pycache__/diagram.cpython-314.pyc +0 -0
- package/assets/.agent/skills/system-diagrammer/scripts/diagram.py +81 -0
- package/assets/.agent/skills/system-strategist/SKILL.md +35 -0
- package/assets/.agent/skills/system-strategist/data/strategy_patterns.json +170 -0
- package/assets/.agent/skills/system-strategist/scripts/__pycache__/strategist.cpython-314.pyc +0 -0
- package/assets/.agent/skills/system-strategist/scripts/strategist.py +136 -0
- package/assets/.agent/skills/tavily-web/SKILL.md +36 -0
- package/assets/.agent/skills/team-composition-analysis/SKILL.md +413 -0
- package/assets/.agent/skills/tech-stack-advisor/SKILL.md +59 -0
- package/assets/.agent/skills/tech-stack-advisor/data/stacks.json +727 -0
- package/assets/.agent/skills/tech-stack-advisor/data/tech_data.json +1297 -0
- package/assets/.agent/skills/tech-stack-advisor/scripts/__pycache__/advisor.cpython-314.pyc +0 -0
- package/assets/.agent/skills/tech-stack-advisor/scripts/__pycache__/scanner.cpython-314.pyc +0 -0
- package/assets/.agent/skills/tech-stack-advisor/scripts/advisor.py +211 -0
- package/assets/.agent/skills/tech-stack-advisor/scripts/scanner.py +102 -0
- package/assets/.agent/skills/terraform-module-library/SKILL.md +261 -0
- package/assets/.agent/skills/terraform-module-library/references/aws-modules.md +63 -0
- package/assets/.agent/skills/terraform-skill/SKILL.md +517 -0
- package/assets/.agent/skills/terraform-specialist/SKILL.md +166 -0
- package/assets/.agent/skills/test-generator/SKILL.md +14 -0
- package/assets/.agent/skills/test-generator/data/test_patterns.json +39 -0
- package/assets/.agent/skills/test-generator/scripts/__pycache__/gen_skeleton.cpython-314.pyc +0 -0
- package/assets/.agent/skills/test-generator/scripts/gen_skeleton.py +61 -0
- package/assets/.agent/skills/testing-patterns/SKILL.md +259 -0
- package/assets/.agent/skills/threat-mitigation-mapping/SKILL.md +33 -0
- package/assets/.agent/skills/threat-mitigation-mapping/resources/implementation-playbook.md +744 -0
- package/assets/.agent/skills/threat-modeling-expert/SKILL.md +60 -0
- package/assets/.agent/skills/tool-design/SKILL.md +318 -0
- package/assets/.agent/skills/top-web-vulnerabilities/SKILL.md +543 -0
- package/assets/.agent/skills/trello-automation/SKILL.md +181 -0
- package/assets/.agent/skills/trigger-dev/SKILL.md +67 -0
- package/assets/.agent/skills/tutorial-engineer/SKILL.md +139 -0
- package/assets/.agent/skills/twitter-automation/SKILL.md +231 -0
- package/assets/.agent/skills/typescript-pro/SKILL.md +55 -0
- package/assets/.agent/skills/ui-ux-pro-max/SKILL.md +30 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/icons.csv +101 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/styles.csv +68 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/assets/.agent/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
- package/assets/.agent/skills/ui-ux-pro-max/scripts/__pycache__/core.cpython-314.pyc +0 -0
- package/assets/.agent/skills/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-314.pyc +0 -0
- package/assets/.agent/skills/ui-ux-pro-max/scripts/__pycache__/search.cpython-314.pyc +0 -0
- package/assets/.agent/skills/ui-ux-pro-max/scripts/core.py +253 -0
- package/assets/.agent/skills/ui-ux-pro-max/scripts/design_system.py +1110 -0
- package/assets/.agent/skills/ui-ux-pro-max/scripts/search.py +162 -0
- package/assets/.agent/skills/using-neon/SKILL.md +84 -0
- package/assets/.agent/skills/vector-database-engineer/SKILL.md +60 -0
- package/assets/.agent/skills/vector-index-tuning/SKILL.md +42 -0
- package/assets/.agent/skills/vector-index-tuning/resources/implementation-playbook.md +507 -0
- package/assets/.agent/skills/vercel-deployment/SKILL.md +79 -0
- package/assets/.agent/skills/voice-agents/SKILL.md +68 -0
- package/assets/.agent/skills/vulnerability-scanner/SKILL.md +276 -0
- package/assets/.agent/skills/vulnerability-scanner/checklists.md +121 -0
- package/assets/.agent/skills/vulnerability-scanner/scripts/__pycache__/security_scan.cpython-314.pyc +0 -0
- package/assets/.agent/skills/vulnerability-scanner/scripts/security_scan.py +458 -0
- package/assets/.agent/skills/whatsapp-automation/SKILL.md +214 -0
- package/assets/.agent/skills/wiki-architect/SKILL.md +60 -0
- package/assets/.agent/skills/wiki-onboarding/SKILL.md +77 -0
- package/assets/.agent/skills/wiki-page-writer/SKILL.md +65 -0
- package/assets/.agent/skills/wiki-researcher/SKILL.md +65 -0
- package/assets/.agent/skills/windows-privilege-escalation/SKILL.md +496 -0
- package/assets/.agent/skills/wireshark-analysis/SKILL.md +497 -0
- package/assets/.agent/skills/wordpress-penetration-testing/SKILL.md +485 -0
- package/assets/.agent/skills/workflow-automation/SKILL.md +68 -0
- package/assets/.agent/skills/xss-html-injection/SKILL.md +499 -0
- package/assets/.agent/skills/zapier-make-patterns/SKILL.md +67 -0
- package/assets/.agent/skills/zendesk-automation/SKILL.md +215 -0
- package/assets/.agent/workflows/ai-agent-builder.md +93 -0
- package/assets/.agent/workflows/api-graphql-dev.md +45 -0
- package/assets/.agent/workflows/architect.md +43 -0
- package/assets/.agent/workflows/backend-dev.md +43 -0
- package/assets/.agent/workflows/claude-code-dev.md +51 -0
- package/assets/.agent/workflows/cloud-deployer.md +422 -0
- package/assets/.agent/workflows/code-reviewer.md +62 -0
- package/assets/.agent/workflows/context-data-eng.md +58 -0
- package/assets/.agent/workflows/database-eng.md +60 -0
- package/assets/.agent/workflows/deep-researcher.md +175 -0
- package/assets/.agent/workflows/designer.md +36 -0
- package/assets/.agent/workflows/devops.md +37 -0
- package/assets/.agent/workflows/doc-writer.md +211 -0
- package/assets/.agent/workflows/frontend-dev.md +63 -0
- package/assets/.agent/workflows/fullstack-coder.md +141 -0
- package/assets/.agent/workflows/image-creator.md +186 -0
- package/assets/.agent/workflows/knowledge-guide.md +48 -0
- package/assets/.agent/workflows/leader.md +238 -0
- package/assets/.agent/workflows/meta-thinker.md +204 -0
- package/assets/.agent/workflows/mobile-dev.md +26 -0
- package/assets/.agent/workflows/n8n-automator.md +114 -0
- package/assets/.agent/workflows/nocobase-plugin-build.md +291 -0
- package/assets/.agent/workflows/nocobase-plugin-expert.md +250 -0
- package/assets/.agent/workflows/observability-eng.md +54 -0
- package/assets/.agent/workflows/planner.md +48 -0
- package/assets/.agent/workflows/prompt-engineer.md +303 -0
- package/assets/.agent/workflows/qa-engineer.md +65 -0
- package/assets/.agent/workflows/quality-guardian.md +126 -0
- package/assets/.agent/workflows/quickstart.md +107 -0
- package/assets/.agent/workflows/release-manager.md +56 -0
- package/assets/.agent/workflows/research-analyst.md +483 -0
- package/assets/.agent/workflows/researcher.md +98 -0
- package/assets/.agent/workflows/saas-connector.md +86 -0
- package/assets/.agent/workflows/security-auditor.md +82 -0
- package/assets/.agent/workflows/security-engineer.md +48 -0
- package/assets/.agent/workflows/seo-marketer.md +91 -0
- package/assets/.agent/workflows/seo-specialist.md +27 -0
- package/assets/.agent/workflows/solution-architect.md +164 -0
- package/assets/.agent/workflows/startup-advisor.md +94 -0
- package/assets/.agent/workflows/tech-writer.md +43 -0
- package/assets/ide-adapters/cline/architect.md +43 -0
- package/assets/ide-adapters/cline/backend-dev.md +43 -0
- package/assets/ide-adapters/cline/designer.md +36 -0
- package/assets/ide-adapters/cline/devops.md +37 -0
- package/assets/ide-adapters/cline/frontend-dev.md +63 -0
- package/assets/ide-adapters/cline/knowledge-guide.md +48 -0
- package/assets/ide-adapters/cline/leader.md +88 -0
- package/assets/ide-adapters/cline/meta-thinker.md +87 -0
- package/assets/ide-adapters/cline/mobile-dev.md +26 -0
- package/assets/ide-adapters/cline/planner.md +48 -0
- package/assets/ide-adapters/cline/qa-engineer.md +65 -0
- package/assets/ide-adapters/cline/security-engineer.md +48 -0
- package/assets/ide-adapters/cline/seo-specialist.md +27 -0
- package/assets/ide-adapters/cline/tech-writer.md +43 -0
- package/assets/ide-adapters/copilot/architect.instructions.md +43 -0
- package/assets/ide-adapters/copilot/backend-dev.instructions.md +43 -0
- package/assets/ide-adapters/copilot/designer.instructions.md +36 -0
- package/assets/ide-adapters/copilot/devops.instructions.md +37 -0
- package/assets/ide-adapters/copilot/frontend-dev.instructions.md +63 -0
- package/assets/ide-adapters/copilot/knowledge-guide.instructions.md +48 -0
- package/assets/ide-adapters/copilot/leader.instructions.md +88 -0
- package/assets/ide-adapters/copilot/meta-thinker.instructions.md +87 -0
- package/assets/ide-adapters/copilot/mobile-dev.instructions.md +26 -0
- package/assets/ide-adapters/copilot/planner.instructions.md +48 -0
- package/assets/ide-adapters/copilot/qa-engineer.instructions.md +65 -0
- package/assets/ide-adapters/copilot/security-engineer.instructions.md +48 -0
- package/assets/ide-adapters/copilot/seo-specialist.instructions.md +27 -0
- package/assets/ide-adapters/copilot/tech-writer.instructions.md +43 -0
- package/assets/ide-adapters/cursor/architect.mdc +44 -0
- package/assets/ide-adapters/cursor/backend-dev.mdc +44 -0
- package/assets/ide-adapters/cursor/designer.mdc +37 -0
- package/assets/ide-adapters/cursor/devops.mdc +38 -0
- package/assets/ide-adapters/cursor/frontend-dev.mdc +64 -0
- package/assets/ide-adapters/cursor/knowledge-guide.mdc +49 -0
- package/assets/ide-adapters/cursor/leader.mdc +89 -0
- package/assets/ide-adapters/cursor/meta-thinker.mdc +88 -0
- package/assets/ide-adapters/cursor/mobile-dev.mdc +27 -0
- package/assets/ide-adapters/cursor/planner.mdc +49 -0
- package/assets/ide-adapters/cursor/qa-engineer.mdc +66 -0
- package/assets/ide-adapters/cursor/security-engineer.mdc +49 -0
- package/assets/ide-adapters/cursor/seo-specialist.mdc +28 -0
- package/assets/ide-adapters/cursor/tech-writer.mdc +44 -0
- package/assets/ide-adapters/kilocode/architect.md +43 -0
- package/assets/ide-adapters/kilocode/backend-dev.md +43 -0
- package/assets/ide-adapters/kilocode/designer.md +36 -0
- package/assets/ide-adapters/kilocode/devops.md +37 -0
- package/assets/ide-adapters/kilocode/frontend-dev.md +63 -0
- package/assets/ide-adapters/kilocode/knowledge-guide.md +48 -0
- package/assets/ide-adapters/kilocode/leader.md +88 -0
- package/assets/ide-adapters/kilocode/meta-thinker.md +87 -0
- package/assets/ide-adapters/kilocode/mobile-dev.md +26 -0
- package/assets/ide-adapters/kilocode/planner.md +48 -0
- package/assets/ide-adapters/kilocode/qa-engineer.md +65 -0
- package/assets/ide-adapters/kilocode/security-engineer.md +48 -0
- package/assets/ide-adapters/kilocode/seo-specialist.md +27 -0
- package/assets/ide-adapters/kilocode/tech-writer.md +43 -0
- package/assets/ide-adapters/kiro/hooks/auto-lint.json +8 -0
- package/assets/ide-adapters/kiro/hooks/auto-test.json +8 -0
- package/assets/ide-adapters/kiro/specs/.gitkeep +0 -0
- package/assets/ide-adapters/kiro/steering/product.md +23 -0
- package/assets/ide-adapters/kiro/steering/structure.md +23 -0
- package/assets/ide-adapters/kiro/steering/tech.md +27 -0
- package/assets/ide-adapters/windsurf/architect.md +41 -0
- package/assets/ide-adapters/windsurf/backend-dev.md +41 -0
- package/assets/ide-adapters/windsurf/designer.md +34 -0
- package/assets/ide-adapters/windsurf/devops.md +35 -0
- package/assets/ide-adapters/windsurf/frontend-dev.md +61 -0
- package/assets/ide-adapters/windsurf/knowledge-guide.md +46 -0
- package/assets/ide-adapters/windsurf/leader.md +86 -0
- package/assets/ide-adapters/windsurf/meta-thinker.md +85 -0
- package/assets/ide-adapters/windsurf/mobile-dev.md +24 -0
- package/assets/ide-adapters/windsurf/planner.md +46 -0
- package/assets/ide-adapters/windsurf/qa-engineer.md +63 -0
- package/assets/ide-adapters/windsurf/security-engineer.md +46 -0
- package/assets/ide-adapters/windsurf/seo-specialist.md +25 -0
- package/assets/ide-adapters/windsurf/tech-writer.md +41 -0
- package/assets/skill_groups.json +574 -0
- package/bin/cli.js +101 -0
- package/lib/commands.js +133 -0
- package/lib/constants.js +76 -0
- package/lib/download.js +165 -0
- package/lib/init.js +294 -0
- package/package.json +45 -0
- package/scripts/build-assets.js +177 -0
|
@@ -0,0 +1,1693 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "e-commerce",
|
|
4
|
+
"name": "E-Commerce / Retail",
|
|
5
|
+
"pain_points": [
|
|
6
|
+
"Complex inventory management",
|
|
7
|
+
"High shipping costs",
|
|
8
|
+
"High return rates",
|
|
9
|
+
"Fierce price competition",
|
|
10
|
+
"Customer retention difficulty"
|
|
11
|
+
],
|
|
12
|
+
"opportunities": [
|
|
13
|
+
"Social commerce (TikTok Shop)",
|
|
14
|
+
"AR try-on",
|
|
15
|
+
"AI recommendation",
|
|
16
|
+
"Same-day delivery",
|
|
17
|
+
"Subscription model",
|
|
18
|
+
"Live shopping"
|
|
19
|
+
],
|
|
20
|
+
"trends": [
|
|
21
|
+
"Headless commerce",
|
|
22
|
+
"Composable commerce",
|
|
23
|
+
"Green/sustainable shopping",
|
|
24
|
+
"Buy-now-pay-later"
|
|
25
|
+
],
|
|
26
|
+
"target_users": [
|
|
27
|
+
"Online shoppers",
|
|
28
|
+
"Shop owners",
|
|
29
|
+
"Dropshippers"
|
|
30
|
+
],
|
|
31
|
+
"example_ideas": [
|
|
32
|
+
"Real-time price comparison",
|
|
33
|
+
"Virtual fitting room",
|
|
34
|
+
"Group buying platform",
|
|
35
|
+
"Local artisan marketplace"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "food-beverage",
|
|
40
|
+
"name": "Food & Beverage",
|
|
41
|
+
"pain_points": [
|
|
42
|
+
"High food waste",
|
|
43
|
+
"Opaque supply chain",
|
|
44
|
+
"Quality control difficulty",
|
|
45
|
+
"High labor costs",
|
|
46
|
+
"Hard-to-measure marketing"
|
|
47
|
+
],
|
|
48
|
+
"opportunities": [
|
|
49
|
+
"Ghost kitchen",
|
|
50
|
+
"Meal prep subscription",
|
|
51
|
+
"Food waste reduction app",
|
|
52
|
+
"AI menu optimization",
|
|
53
|
+
"Smart ordering kiosk"
|
|
54
|
+
],
|
|
55
|
+
"trends": [
|
|
56
|
+
"Cloud kitchen",
|
|
57
|
+
"Plant-based food",
|
|
58
|
+
"Hyper-local delivery",
|
|
59
|
+
"Ghost brands",
|
|
60
|
+
"Robot delivery"
|
|
61
|
+
],
|
|
62
|
+
"target_users": [
|
|
63
|
+
"Consumers",
|
|
64
|
+
"Restaurant owners",
|
|
65
|
+
"Chefs",
|
|
66
|
+
"Shippers"
|
|
67
|
+
],
|
|
68
|
+
"example_ideas": [
|
|
69
|
+
"Healthy meal delivery app",
|
|
70
|
+
"Leftover food sharing platform",
|
|
71
|
+
"AI nutrition-based menu planner"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": "education",
|
|
76
|
+
"name": "Education / EdTech",
|
|
77
|
+
"pain_points": [
|
|
78
|
+
"Cramming without interaction",
|
|
79
|
+
"Hard to measure learning efficiency",
|
|
80
|
+
"Lack of tools for teachers",
|
|
81
|
+
"High tuition fees",
|
|
82
|
+
"Outdated content"
|
|
83
|
+
],
|
|
84
|
+
"opportunities": [
|
|
85
|
+
"Personalized AI tutor",
|
|
86
|
+
"Gamification learning",
|
|
87
|
+
"Micro-learning (5-10 min)",
|
|
88
|
+
"Peer-to-peer tutoring",
|
|
89
|
+
"Skill-based certificates"
|
|
90
|
+
],
|
|
91
|
+
"trends": [
|
|
92
|
+
"AI-powered adaptive learning",
|
|
93
|
+
"Cohort-based courses",
|
|
94
|
+
"Learn-to-earn",
|
|
95
|
+
"VR/AR classroom",
|
|
96
|
+
"No-degree hiring"
|
|
97
|
+
],
|
|
98
|
+
"target_users": [
|
|
99
|
+
"Students",
|
|
100
|
+
"Self-taught developers",
|
|
101
|
+
"Teachers",
|
|
102
|
+
"Training businesses"
|
|
103
|
+
],
|
|
104
|
+
"example_ideas": [
|
|
105
|
+
"AI flashcard app",
|
|
106
|
+
"Coding platform for kids",
|
|
107
|
+
"Multiplayer quiz battle",
|
|
108
|
+
"AI grading assistant"
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"id": "healthcare",
|
|
113
|
+
"name": "Healthcare / HealthTech",
|
|
114
|
+
"pain_points": [
|
|
115
|
+
"Long wait times",
|
|
116
|
+
"Fragmented medical records",
|
|
117
|
+
"Fake/poor quality medicine",
|
|
118
|
+
"Lack of doctors in remote areas",
|
|
119
|
+
"Mental health stigma"
|
|
120
|
+
],
|
|
121
|
+
"opportunities": [
|
|
122
|
+
"Telemedicine",
|
|
123
|
+
"AI diagnosis support",
|
|
124
|
+
"Wearable health monitoring",
|
|
125
|
+
"Digital therapeutics",
|
|
126
|
+
"Mental health chatbot"
|
|
127
|
+
],
|
|
128
|
+
"trends": [
|
|
129
|
+
"Remote patient monitoring",
|
|
130
|
+
"AI drug discovery",
|
|
131
|
+
"Personalized medicine",
|
|
132
|
+
"Digital health passport"
|
|
133
|
+
],
|
|
134
|
+
"target_users": [
|
|
135
|
+
"Patients",
|
|
136
|
+
"Doctors",
|
|
137
|
+
"Pharmacists",
|
|
138
|
+
"Hospitals",
|
|
139
|
+
"Insurance companies"
|
|
140
|
+
],
|
|
141
|
+
"example_ideas": [
|
|
142
|
+
"Appointment booking app",
|
|
143
|
+
"Daily medication tracker",
|
|
144
|
+
"AI dermatology diagnosis via photos"
|
|
145
|
+
]
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "fintech",
|
|
149
|
+
"name": "Finance / FinTech",
|
|
150
|
+
"pain_points": [
|
|
151
|
+
"High international transaction fees",
|
|
152
|
+
"Lack of financial literacy",
|
|
153
|
+
"Hard access to credit",
|
|
154
|
+
"Difficult expense management",
|
|
155
|
+
"Payment fraud"
|
|
156
|
+
],
|
|
157
|
+
"opportunities": [
|
|
158
|
+
"Embedded finance",
|
|
159
|
+
"BNPL",
|
|
160
|
+
"Robo-advisor",
|
|
161
|
+
"Crypto payment",
|
|
162
|
+
"Open banking API",
|
|
163
|
+
"Micro-investment"
|
|
164
|
+
],
|
|
165
|
+
"trends": [
|
|
166
|
+
"Central bank digital currency",
|
|
167
|
+
"DeFi mainstream",
|
|
168
|
+
"AI fraud detection",
|
|
169
|
+
"Neobanking",
|
|
170
|
+
"Green finance"
|
|
171
|
+
],
|
|
172
|
+
"target_users": [
|
|
173
|
+
"Gen Z savers",
|
|
174
|
+
"Freelancers managing income",
|
|
175
|
+
"SMEs needing capital",
|
|
176
|
+
"New investors"
|
|
177
|
+
],
|
|
178
|
+
"example_ideas": [
|
|
179
|
+
"Group bill splitting app",
|
|
180
|
+
"Robo-advisor for beginners",
|
|
181
|
+
"AI expense manager",
|
|
182
|
+
"Savings challenge app"
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"id": "real-estate",
|
|
187
|
+
"name": "Real Estate / PropTech",
|
|
188
|
+
"pain_points": [
|
|
189
|
+
"Opaque pricing information",
|
|
190
|
+
"Complex procedures",
|
|
191
|
+
"Untrustworthy brokers",
|
|
192
|
+
"Hard to compare properties",
|
|
193
|
+
"Manual rental management"
|
|
194
|
+
],
|
|
195
|
+
"opportunities": [
|
|
196
|
+
"Virtual tour 3D",
|
|
197
|
+
"AI pricing estimation",
|
|
198
|
+
"Smart contract for transactions",
|
|
199
|
+
"Co-living platform",
|
|
200
|
+
"Property management SaaS"
|
|
201
|
+
],
|
|
202
|
+
"trends": [
|
|
203
|
+
"Proptech digitalization",
|
|
204
|
+
"Tokenized real estate",
|
|
205
|
+
"Smart buildings",
|
|
206
|
+
"Remote work → suburban migration"
|
|
207
|
+
],
|
|
208
|
+
"target_users": [
|
|
209
|
+
"Home buyers/renters",
|
|
210
|
+
"Landlords",
|
|
211
|
+
"Real estate investors",
|
|
212
|
+
"Brokers"
|
|
213
|
+
],
|
|
214
|
+
"example_ideas": [
|
|
215
|
+
"Area property price comparison",
|
|
216
|
+
"Rental management app",
|
|
217
|
+
"Virtual tour marketplace"
|
|
218
|
+
]
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"id": "travel",
|
|
222
|
+
"name": "Travel / Hospitality",
|
|
223
|
+
"pain_points": [
|
|
224
|
+
"Time-consuming trip planning",
|
|
225
|
+
"Fluctuating ticket prices",
|
|
226
|
+
"Fake reviews",
|
|
227
|
+
"Language barriers",
|
|
228
|
+
"Hard to find local experiences"
|
|
229
|
+
],
|
|
230
|
+
"opportunities": [
|
|
231
|
+
"AI trip planner",
|
|
232
|
+
"Local experience marketplace",
|
|
233
|
+
"Group travel matching",
|
|
234
|
+
"Sustainable tourism",
|
|
235
|
+
"Digital nomad services"
|
|
236
|
+
],
|
|
237
|
+
"trends": [
|
|
238
|
+
"Bleisure (business + leisure)",
|
|
239
|
+
"Slow travel",
|
|
240
|
+
"Workation",
|
|
241
|
+
"Audio guides AR"
|
|
242
|
+
],
|
|
243
|
+
"target_users": [
|
|
244
|
+
"Backpackers",
|
|
245
|
+
"Family travelers",
|
|
246
|
+
"Digital nomads",
|
|
247
|
+
"Tour operators",
|
|
248
|
+
"Hostel owners"
|
|
249
|
+
],
|
|
250
|
+
"example_ideas": [
|
|
251
|
+
"Auto AI itinerary planner",
|
|
252
|
+
"App connecting with local travelers",
|
|
253
|
+
"Hotel review via short video"
|
|
254
|
+
]
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"id": "logistics",
|
|
258
|
+
"name": "Logistics / Supply Chain",
|
|
259
|
+
"pain_points": [
|
|
260
|
+
"Non-real-time track & trace",
|
|
261
|
+
"Expensive last-mile delivery",
|
|
262
|
+
"Manual warehouse management",
|
|
263
|
+
"Goods damaged in transit",
|
|
264
|
+
"Complex cross-border logistics"
|
|
265
|
+
],
|
|
266
|
+
"opportunities": [
|
|
267
|
+
"Route optimization AI",
|
|
268
|
+
"Drone delivery",
|
|
269
|
+
"Smart warehouse",
|
|
270
|
+
"Blockchain traceability",
|
|
271
|
+
"Crowdsourced delivery"
|
|
272
|
+
],
|
|
273
|
+
"trends": [
|
|
274
|
+
"Autonomous vehicles",
|
|
275
|
+
"Dark stores",
|
|
276
|
+
"Micro-fulfillment",
|
|
277
|
+
"Green logistics"
|
|
278
|
+
],
|
|
279
|
+
"target_users": [
|
|
280
|
+
"E-commerce businesses",
|
|
281
|
+
"Warehouse operators",
|
|
282
|
+
"Drivers/couriers",
|
|
283
|
+
"Import/export companies"
|
|
284
|
+
],
|
|
285
|
+
"example_ideas": [
|
|
286
|
+
"Fleet management dashboard",
|
|
287
|
+
"Mini warehouse management app",
|
|
288
|
+
"Last-mile delivery optimization"
|
|
289
|
+
]
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"id": "hr-recruitment",
|
|
293
|
+
"name": "HR / Recruitment",
|
|
294
|
+
"pain_points": [
|
|
295
|
+
"Time-consuming recruitment",
|
|
296
|
+
"CV spam",
|
|
297
|
+
"Subjective candidate assessment",
|
|
298
|
+
"Fragmented onboarding",
|
|
299
|
+
"Hard to retain talent"
|
|
300
|
+
],
|
|
301
|
+
"opportunities": [
|
|
302
|
+
"AI resume screening",
|
|
303
|
+
"Video interview AI analysis",
|
|
304
|
+
"Skill-based hiring",
|
|
305
|
+
"Employee engagement platform",
|
|
306
|
+
"Internal mobility marketplace"
|
|
307
|
+
],
|
|
308
|
+
"trends": [
|
|
309
|
+
"Remote-first hiring",
|
|
310
|
+
"Skills over degrees",
|
|
311
|
+
"DEI recruiting",
|
|
312
|
+
"AI interviewer",
|
|
313
|
+
"Gig workforce management"
|
|
314
|
+
],
|
|
315
|
+
"target_users": [
|
|
316
|
+
"HR managers",
|
|
317
|
+
"Recruiters",
|
|
318
|
+
"Job seekers",
|
|
319
|
+
"Freelancers",
|
|
320
|
+
"Small business owners"
|
|
321
|
+
],
|
|
322
|
+
"example_ideas": [
|
|
323
|
+
"Platform matching devs with startups",
|
|
324
|
+
"AI mock interview",
|
|
325
|
+
"Employee feedback pulse app"
|
|
326
|
+
]
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"id": "agriculture",
|
|
330
|
+
"name": "Agriculture / AgriTech",
|
|
331
|
+
"pain_points": [
|
|
332
|
+
"Weather dependence",
|
|
333
|
+
"Unstable produce prices",
|
|
334
|
+
"Many intermediaries",
|
|
335
|
+
"Lack of farming data",
|
|
336
|
+
"Water/fertilizer waste"
|
|
337
|
+
],
|
|
338
|
+
"opportunities": [
|
|
339
|
+
"Precision farming IoT",
|
|
340
|
+
"Farm-to-table marketplace",
|
|
341
|
+
"Crop monitoring drone",
|
|
342
|
+
"Weather prediction AI",
|
|
343
|
+
"Smart irrigation"
|
|
344
|
+
],
|
|
345
|
+
"trends": [
|
|
346
|
+
"Vertical farming",
|
|
347
|
+
"Carbon credit for farmers",
|
|
348
|
+
"Agri-fintech",
|
|
349
|
+
"Biotech crops"
|
|
350
|
+
],
|
|
351
|
+
"target_users": [
|
|
352
|
+
"Farmers",
|
|
353
|
+
"Distributors",
|
|
354
|
+
"Clean consumers",
|
|
355
|
+
"Agri-investors"
|
|
356
|
+
],
|
|
357
|
+
"example_ideas": [
|
|
358
|
+
"Real-time produce price app",
|
|
359
|
+
"Soil/water IoT monitor",
|
|
360
|
+
"Clean produce marketplace"
|
|
361
|
+
]
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"id": "media-entertainment",
|
|
365
|
+
"name": "Media & Entertainment",
|
|
366
|
+
"pain_points": [
|
|
367
|
+
"Content piracy",
|
|
368
|
+
"Difficult creator monetization",
|
|
369
|
+
"Algorithm bias",
|
|
370
|
+
"Audience fragmentation",
|
|
371
|
+
"Ad fatigue"
|
|
372
|
+
],
|
|
373
|
+
"opportunities": [
|
|
374
|
+
"Creator economy tools",
|
|
375
|
+
"Short-form video",
|
|
376
|
+
"Interactive content",
|
|
377
|
+
"Web3 media",
|
|
378
|
+
"AI content generation"
|
|
379
|
+
],
|
|
380
|
+
"trends": [
|
|
381
|
+
"Creator economy 2.0",
|
|
382
|
+
"AI-generated content",
|
|
383
|
+
"Immersive media",
|
|
384
|
+
"Niche communities",
|
|
385
|
+
"Decentralized social"
|
|
386
|
+
],
|
|
387
|
+
"target_users": [
|
|
388
|
+
"Content creators",
|
|
389
|
+
"Viewers/Readers",
|
|
390
|
+
"Advertisers",
|
|
391
|
+
"Media companies"
|
|
392
|
+
],
|
|
393
|
+
"example_ideas": [
|
|
394
|
+
"AI video editor",
|
|
395
|
+
"Fan community platform",
|
|
396
|
+
"Podcast discovery app",
|
|
397
|
+
"Meme generator with AI"
|
|
398
|
+
]
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"id": "legal",
|
|
402
|
+
"name": "Legal / LegalTech",
|
|
403
|
+
"pain_points": [
|
|
404
|
+
"Expensive lawyer fees",
|
|
405
|
+
"Confusing contracts",
|
|
406
|
+
"Manual case management",
|
|
407
|
+
"Slow legal research",
|
|
408
|
+
"Complex compliance"
|
|
409
|
+
],
|
|
410
|
+
"opportunities": [
|
|
411
|
+
"AI contract review",
|
|
412
|
+
"Legal chatbot",
|
|
413
|
+
"E-signature",
|
|
414
|
+
"Compliance automation",
|
|
415
|
+
"Legal marketplace"
|
|
416
|
+
],
|
|
417
|
+
"trends": [
|
|
418
|
+
"AI legal research",
|
|
419
|
+
"No-code contract builder",
|
|
420
|
+
"RegTech",
|
|
421
|
+
"Online dispute resolution"
|
|
422
|
+
],
|
|
423
|
+
"target_users": [
|
|
424
|
+
"SMEs needing legal help",
|
|
425
|
+
"Lawyers",
|
|
426
|
+
"Startups",
|
|
427
|
+
"Individuals in disputes"
|
|
428
|
+
],
|
|
429
|
+
"example_ideas": [
|
|
430
|
+
"AI rental contract review",
|
|
431
|
+
"Basic legal consultancy chatbot",
|
|
432
|
+
"Smart contract templates"
|
|
433
|
+
]
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"id": "sustainability",
|
|
437
|
+
"name": "Sustainability / CleanTech",
|
|
438
|
+
"pain_points": [
|
|
439
|
+
"Hard to measure carbon footprint",
|
|
440
|
+
"Widespread greenwashing",
|
|
441
|
+
"High energy costs",
|
|
442
|
+
"Weak recycling infrastructure",
|
|
443
|
+
"Lack of awareness"
|
|
444
|
+
],
|
|
445
|
+
"opportunities": [
|
|
446
|
+
"Carbon tracking app",
|
|
447
|
+
"Sustainable marketplace",
|
|
448
|
+
"Energy monitoring",
|
|
449
|
+
"Circular economy platform",
|
|
450
|
+
"ESG reporting tool"
|
|
451
|
+
],
|
|
452
|
+
"trends": [
|
|
453
|
+
"Net-zero commitments",
|
|
454
|
+
"Carbon credits marketplace",
|
|
455
|
+
"Green fintech",
|
|
456
|
+
"Circular economy"
|
|
457
|
+
],
|
|
458
|
+
"target_users": [
|
|
459
|
+
"Eco-conscious consumers",
|
|
460
|
+
"Corporate sustainability teams",
|
|
461
|
+
"Energy managers",
|
|
462
|
+
"Governments"
|
|
463
|
+
],
|
|
464
|
+
"example_ideas": [
|
|
465
|
+
"Personal carbon footprint calculator",
|
|
466
|
+
"Second-hand swap app",
|
|
467
|
+
"Solar panel ROI calculator"
|
|
468
|
+
]
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"id": "automotive",
|
|
472
|
+
"name": "Automotive / Mobility",
|
|
473
|
+
"pain_points": [
|
|
474
|
+
"Opaque car buying process",
|
|
475
|
+
"Complex car maintenance",
|
|
476
|
+
"Hard to find parking",
|
|
477
|
+
"Traffic congestion",
|
|
478
|
+
"Slow EV transition"
|
|
479
|
+
],
|
|
480
|
+
"opportunities": [
|
|
481
|
+
"EV charging network",
|
|
482
|
+
"Car subscription",
|
|
483
|
+
"Used car marketplace",
|
|
484
|
+
"Fleet management",
|
|
485
|
+
"Connected car services"
|
|
486
|
+
],
|
|
487
|
+
"trends": [
|
|
488
|
+
"Autonomous driving",
|
|
489
|
+
"EV adoption",
|
|
490
|
+
"Mobility-as-a-Service",
|
|
491
|
+
"V2X communication"
|
|
492
|
+
],
|
|
493
|
+
"target_users": [
|
|
494
|
+
"Car owners",
|
|
495
|
+
"Fleet managers",
|
|
496
|
+
"EV drivers",
|
|
497
|
+
"Car dealers",
|
|
498
|
+
"Ride-hailing drivers"
|
|
499
|
+
],
|
|
500
|
+
"example_ideas": [
|
|
501
|
+
"EV charging station finder app",
|
|
502
|
+
"Inspected used car marketplace",
|
|
503
|
+
"Carpool matching app"
|
|
504
|
+
]
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"id": "fashion-beauty",
|
|
508
|
+
"name": "Fashion & Beauty",
|
|
509
|
+
"pain_points": [
|
|
510
|
+
"Inaccurate online sizing",
|
|
511
|
+
"Fast fashion waste",
|
|
512
|
+
"Hard to find suitable style",
|
|
513
|
+
"Beauty product allergies",
|
|
514
|
+
"Fake products"
|
|
515
|
+
],
|
|
516
|
+
"opportunities": [
|
|
517
|
+
"Virtual try-on AR",
|
|
518
|
+
"Personalized style AI",
|
|
519
|
+
"Sustainable fashion",
|
|
520
|
+
"Beauty tech",
|
|
521
|
+
"Made-to-order platform"
|
|
522
|
+
],
|
|
523
|
+
"trends": [
|
|
524
|
+
"Digital fashion",
|
|
525
|
+
"Resale/thrift economy",
|
|
526
|
+
"Clean beauty",
|
|
527
|
+
"Inclusive sizing",
|
|
528
|
+
"AI skin analysis"
|
|
529
|
+
],
|
|
530
|
+
"target_users": [
|
|
531
|
+
"Fashion-conscious shoppers",
|
|
532
|
+
"Beauty enthusiasts",
|
|
533
|
+
"Sustainable consumers",
|
|
534
|
+
"Fashion designers"
|
|
535
|
+
],
|
|
536
|
+
"example_ideas": [
|
|
537
|
+
"AI outfit recommender",
|
|
538
|
+
"Skin analysis app",
|
|
539
|
+
"Second-hand fashion marketplace",
|
|
540
|
+
"Custom clothing platform"
|
|
541
|
+
]
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"id": "construction",
|
|
545
|
+
"name": "Construction / ConTech",
|
|
546
|
+
"pain_points": [
|
|
547
|
+
"Large estimation errors",
|
|
548
|
+
"Slow progress",
|
|
549
|
+
"Occupational safety",
|
|
550
|
+
"Material waste",
|
|
551
|
+
"Communication gap"
|
|
552
|
+
],
|
|
553
|
+
"opportunities": [
|
|
554
|
+
"BIM digital twin",
|
|
555
|
+
"Construction management SaaS",
|
|
556
|
+
"Worker safety IoT",
|
|
557
|
+
"Material marketplace",
|
|
558
|
+
"Drone site inspection"
|
|
559
|
+
],
|
|
560
|
+
"trends": [
|
|
561
|
+
"3D printing buildings",
|
|
562
|
+
"Modular construction",
|
|
563
|
+
"AI project estimation",
|
|
564
|
+
"Green building"
|
|
565
|
+
],
|
|
566
|
+
"target_users": [
|
|
567
|
+
"Contractors",
|
|
568
|
+
"Project managers",
|
|
569
|
+
"Workers",
|
|
570
|
+
"Architects",
|
|
571
|
+
"Property developers"
|
|
572
|
+
],
|
|
573
|
+
"example_ideas": [
|
|
574
|
+
"Construction progress management app",
|
|
575
|
+
"Construction material marketplace",
|
|
576
|
+
"AI cost estimation"
|
|
577
|
+
]
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"id": "insurance",
|
|
581
|
+
"name": "Insurance / InsurTech",
|
|
582
|
+
"pain_points": [
|
|
583
|
+
"Complex contracts",
|
|
584
|
+
"Long claim process",
|
|
585
|
+
"Expensive premiums for young people",
|
|
586
|
+
"Lack of personalization",
|
|
587
|
+
"Fraud"
|
|
588
|
+
],
|
|
589
|
+
"opportunities": [
|
|
590
|
+
"On-demand insurance",
|
|
591
|
+
"AI underwriting",
|
|
592
|
+
"Parametric insurance",
|
|
593
|
+
"Peer-to-peer insurance",
|
|
594
|
+
"Health data integration"
|
|
595
|
+
],
|
|
596
|
+
"trends": [
|
|
597
|
+
"Embedded insurance",
|
|
598
|
+
"Usage-based insurance",
|
|
599
|
+
"Cyber insurance",
|
|
600
|
+
"Climate risk insurance"
|
|
601
|
+
],
|
|
602
|
+
"target_users": [
|
|
603
|
+
"Young professionals",
|
|
604
|
+
"SME owners",
|
|
605
|
+
"Gig workers",
|
|
606
|
+
"Travelers",
|
|
607
|
+
"Vehicle owners"
|
|
608
|
+
],
|
|
609
|
+
"example_ideas": [
|
|
610
|
+
"Micro-insurance per trip",
|
|
611
|
+
"AI insurance comparison",
|
|
612
|
+
"Claim process automation"
|
|
613
|
+
]
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"id": "social-impact",
|
|
617
|
+
"name": "Social Impact / Non-Profit",
|
|
618
|
+
"pain_points": [
|
|
619
|
+
"Difficult fundraising",
|
|
620
|
+
"Hard to measure impact",
|
|
621
|
+
"Lack of volunteer connection",
|
|
622
|
+
"Donation transparency",
|
|
623
|
+
"Limited scale"
|
|
624
|
+
],
|
|
625
|
+
"opportunities": [
|
|
626
|
+
"Crowdfunding platform",
|
|
627
|
+
"Impact tracking",
|
|
628
|
+
"Volunteer matching",
|
|
629
|
+
"Transparent donation blockchain",
|
|
630
|
+
"Social enterprise SaaS"
|
|
631
|
+
],
|
|
632
|
+
"trends": [
|
|
633
|
+
"Impact investing",
|
|
634
|
+
"ESG metrics",
|
|
635
|
+
"Tech for good",
|
|
636
|
+
"Community-led development"
|
|
637
|
+
],
|
|
638
|
+
"target_users": [
|
|
639
|
+
"Donors",
|
|
640
|
+
"NGOs",
|
|
641
|
+
"Volunteers",
|
|
642
|
+
"Social entrepreneurs",
|
|
643
|
+
"Corporate CSR teams"
|
|
644
|
+
],
|
|
645
|
+
"example_ideas": [
|
|
646
|
+
"Transparent donation tracking",
|
|
647
|
+
"Volunteer matching app",
|
|
648
|
+
"Impact measurement dashboard"
|
|
649
|
+
]
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"id": "gaming-esports",
|
|
653
|
+
"name": "Gaming & Esports",
|
|
654
|
+
"pain_points": [
|
|
655
|
+
"Hard to find a team",
|
|
656
|
+
"Toxicity in gaming",
|
|
657
|
+
"Limited streamer monetization",
|
|
658
|
+
"Complex tournament management",
|
|
659
|
+
"Game addiction"
|
|
660
|
+
],
|
|
661
|
+
"opportunities": [
|
|
662
|
+
"Esports tournament platform",
|
|
663
|
+
"Gaming social network",
|
|
664
|
+
"Coaching marketplace",
|
|
665
|
+
"In-game item trading",
|
|
666
|
+
"Game companion app"
|
|
667
|
+
],
|
|
668
|
+
"trends": [
|
|
669
|
+
"Cloud gaming",
|
|
670
|
+
"Play-to-earn",
|
|
671
|
+
"AI NPCs",
|
|
672
|
+
"Cross-platform play",
|
|
673
|
+
"Game streaming"
|
|
674
|
+
],
|
|
675
|
+
"target_users": [
|
|
676
|
+
"Casual gamers",
|
|
677
|
+
"Competitive players",
|
|
678
|
+
"Streamers",
|
|
679
|
+
"Esports teams",
|
|
680
|
+
"Game developers"
|
|
681
|
+
],
|
|
682
|
+
"example_ideas": [
|
|
683
|
+
"LFG (Looking for Group) app",
|
|
684
|
+
"Esports bracket generator",
|
|
685
|
+
"Game stats tracker",
|
|
686
|
+
"Coach booking platform"
|
|
687
|
+
]
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"id": "pet-care",
|
|
691
|
+
"name": "Pet Care",
|
|
692
|
+
"pain_points": [
|
|
693
|
+
"Urgent vet search at night",
|
|
694
|
+
"Pet sitting when traveling",
|
|
695
|
+
"Untrustworthy nutrition advice",
|
|
696
|
+
"Long pet adoption process",
|
|
697
|
+
"Lost pet"
|
|
698
|
+
],
|
|
699
|
+
"opportunities": [
|
|
700
|
+
"Pet health tracking",
|
|
701
|
+
"On-demand vet",
|
|
702
|
+
"Pet social network",
|
|
703
|
+
"Smart pet devices",
|
|
704
|
+
"Pet insurance"
|
|
705
|
+
],
|
|
706
|
+
"trends": [
|
|
707
|
+
"Humanization of pets",
|
|
708
|
+
"Pet tech wearables",
|
|
709
|
+
"Telehealth for pets",
|
|
710
|
+
"Premium pet food D2C"
|
|
711
|
+
],
|
|
712
|
+
"target_users": [
|
|
713
|
+
"Pet owners",
|
|
714
|
+
"Veterinarians",
|
|
715
|
+
"Pet sitters",
|
|
716
|
+
"Pet shop owners",
|
|
717
|
+
"Animal shelters"
|
|
718
|
+
],
|
|
719
|
+
"example_ideas": [
|
|
720
|
+
"Vaccination reminder app",
|
|
721
|
+
"Pet sitter matching",
|
|
722
|
+
"Lost pet notification network",
|
|
723
|
+
"Pet food subscription"
|
|
724
|
+
]
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"id": "event-management",
|
|
728
|
+
"name": "Event Management",
|
|
729
|
+
"pain_points": [
|
|
730
|
+
"Manual ticketing",
|
|
731
|
+
"Check-in chaos",
|
|
732
|
+
"Difficult sponsorship management",
|
|
733
|
+
"Fragmented feedback collection",
|
|
734
|
+
"Budget overrun"
|
|
735
|
+
],
|
|
736
|
+
"opportunities": [
|
|
737
|
+
"Virtual/hybrid events",
|
|
738
|
+
"AI matchmaking networking",
|
|
739
|
+
"Event analytics",
|
|
740
|
+
"NFT tickets",
|
|
741
|
+
"Community building post-event"
|
|
742
|
+
],
|
|
743
|
+
"trends": [
|
|
744
|
+
"Hybrid events",
|
|
745
|
+
"Immersive experiences",
|
|
746
|
+
"AI event planning",
|
|
747
|
+
"Micro-events",
|
|
748
|
+
"Creator-led events"
|
|
749
|
+
],
|
|
750
|
+
"target_users": [
|
|
751
|
+
"Event organizers",
|
|
752
|
+
"Attendees",
|
|
753
|
+
"Sponsors",
|
|
754
|
+
"Speakers",
|
|
755
|
+
"Venue owners"
|
|
756
|
+
],
|
|
757
|
+
"example_ideas": [
|
|
758
|
+
"Ticketing + CRM platform",
|
|
759
|
+
"Networking app for events",
|
|
760
|
+
"AI-powered event agenda builder"
|
|
761
|
+
]
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"id": "creative-tools",
|
|
765
|
+
"name": "Creative Tools / Design",
|
|
766
|
+
"pain_points": [
|
|
767
|
+
"Expensive software (Adobe)",
|
|
768
|
+
"High learning curve",
|
|
769
|
+
"Difficult collaboration",
|
|
770
|
+
"Asset management chaos",
|
|
771
|
+
"Export format issues"
|
|
772
|
+
],
|
|
773
|
+
"opportunities": [
|
|
774
|
+
"AI-powered design",
|
|
775
|
+
"Browser-based creative tools",
|
|
776
|
+
"Template marketplace",
|
|
777
|
+
"Brand kit management",
|
|
778
|
+
"Design-to-code"
|
|
779
|
+
],
|
|
780
|
+
"trends": [
|
|
781
|
+
"AI image generation",
|
|
782
|
+
"Collaborative design",
|
|
783
|
+
"Design systems",
|
|
784
|
+
"Motion design democratization"
|
|
785
|
+
],
|
|
786
|
+
"target_users": [
|
|
787
|
+
"Designers",
|
|
788
|
+
"Marketers",
|
|
789
|
+
"Content creators",
|
|
790
|
+
"Small businesses",
|
|
791
|
+
"Developers"
|
|
792
|
+
],
|
|
793
|
+
"example_ideas": [
|
|
794
|
+
"AI logo generator",
|
|
795
|
+
"Brand asset manager",
|
|
796
|
+
"Collaborative whiteboard",
|
|
797
|
+
"Mockup generator"
|
|
798
|
+
]
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"id": "parenting",
|
|
802
|
+
"name": "Parenting & Kids",
|
|
803
|
+
"pain_points": [
|
|
804
|
+
"Lack of reliable information",
|
|
805
|
+
"Screen time management",
|
|
806
|
+
"Finding activities for kids",
|
|
807
|
+
"Milestone tracking guesswork",
|
|
808
|
+
"Work-life balance"
|
|
809
|
+
],
|
|
810
|
+
"opportunities": [
|
|
811
|
+
"Parenting community",
|
|
812
|
+
"Kids learning app",
|
|
813
|
+
"Family organizer",
|
|
814
|
+
"Child development tracker",
|
|
815
|
+
"Safe social network for kids"
|
|
816
|
+
],
|
|
817
|
+
"trends": [
|
|
818
|
+
"Parenting tech",
|
|
819
|
+
"STEM for kids",
|
|
820
|
+
"Family wellness",
|
|
821
|
+
"Digital literacy for children"
|
|
822
|
+
],
|
|
823
|
+
"target_users": [
|
|
824
|
+
"New parents",
|
|
825
|
+
"Working parents",
|
|
826
|
+
"Children 3-12",
|
|
827
|
+
"Preschool teachers",
|
|
828
|
+
"Pediatricians"
|
|
829
|
+
],
|
|
830
|
+
"example_ideas": [
|
|
831
|
+
"Child development tracking app",
|
|
832
|
+
"Family calendar + task manager",
|
|
833
|
+
"Coding game for kids",
|
|
834
|
+
"Storytime AI"
|
|
835
|
+
]
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"id": "sports-fitness",
|
|
839
|
+
"name": "Sports & Fitness",
|
|
840
|
+
"pain_points": [
|
|
841
|
+
"Loss of workout motivation",
|
|
842
|
+
"Expensive personal trainers",
|
|
843
|
+
"Complex nutrition",
|
|
844
|
+
"Hard to find workout buddies",
|
|
845
|
+
"Crowded gyms"
|
|
846
|
+
],
|
|
847
|
+
"opportunities": [
|
|
848
|
+
"AI personal trainer",
|
|
849
|
+
"Social fitness",
|
|
850
|
+
"Wearable integration",
|
|
851
|
+
"Virtual gym",
|
|
852
|
+
"Sports booking"
|
|
853
|
+
],
|
|
854
|
+
"trends": [
|
|
855
|
+
"Connected fitness",
|
|
856
|
+
"Recovery tech",
|
|
857
|
+
"Mental fitness",
|
|
858
|
+
"Outdoor fitness",
|
|
859
|
+
"Fitness gaming"
|
|
860
|
+
],
|
|
861
|
+
"target_users": [
|
|
862
|
+
"Gym-goers",
|
|
863
|
+
"Runners",
|
|
864
|
+
"Yoga practitioners",
|
|
865
|
+
"Sports teams",
|
|
866
|
+
"Personal trainers"
|
|
867
|
+
],
|
|
868
|
+
"example_ideas": [
|
|
869
|
+
"AI workout planner",
|
|
870
|
+
"Running buddy matcher",
|
|
871
|
+
"Sports facility booking",
|
|
872
|
+
"Nutrition tracker AI"
|
|
873
|
+
]
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"id": "cybersecurity",
|
|
877
|
+
"name": "Cybersecurity",
|
|
878
|
+
"pain_points": [
|
|
879
|
+
"Increasingly sophisticated phishing",
|
|
880
|
+
"Password management mess",
|
|
881
|
+
"Lack of security budget for SMEs",
|
|
882
|
+
"Compliance complexity",
|
|
883
|
+
"Insider threats"
|
|
884
|
+
],
|
|
885
|
+
"opportunities": [
|
|
886
|
+
"Security awareness training",
|
|
887
|
+
"Password manager",
|
|
888
|
+
"Vulnerability scanner",
|
|
889
|
+
"Compliance automation",
|
|
890
|
+
"Threat intelligence"
|
|
891
|
+
],
|
|
892
|
+
"trends": [
|
|
893
|
+
"Zero trust architecture",
|
|
894
|
+
"AI threat detection",
|
|
895
|
+
"Security mesh",
|
|
896
|
+
"Cloud security posture management"
|
|
897
|
+
],
|
|
898
|
+
"target_users": [
|
|
899
|
+
"IT admins",
|
|
900
|
+
"CISOs",
|
|
901
|
+
"SME owners",
|
|
902
|
+
"Developers",
|
|
903
|
+
"End users"
|
|
904
|
+
],
|
|
905
|
+
"example_ideas": [
|
|
906
|
+
"Phishing simulation platform",
|
|
907
|
+
"Security posture dashboard for SMEs",
|
|
908
|
+
"AI-powered vulnerability scanner"
|
|
909
|
+
]
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"id": "ai-ml",
|
|
913
|
+
"name": "AI & Machine Learning",
|
|
914
|
+
"pain_points": [
|
|
915
|
+
"High compute costs for training",
|
|
916
|
+
"Data quality and labeling is expensive",
|
|
917
|
+
"Model hallucination and reliability",
|
|
918
|
+
"Explainability (black box problem)",
|
|
919
|
+
"Rapid obsolescence of models"
|
|
920
|
+
],
|
|
921
|
+
"opportunities": [
|
|
922
|
+
"AI-as-a-Service (API wrappers)",
|
|
923
|
+
"Domain-specific fine-tuned models",
|
|
924
|
+
"AI agents and automation",
|
|
925
|
+
"Synthetic data generation",
|
|
926
|
+
"Model evaluation tools",
|
|
927
|
+
"AI safety and alignment"
|
|
928
|
+
],
|
|
929
|
+
"trends": [
|
|
930
|
+
"Multi-modal AI (text + image + video)",
|
|
931
|
+
"Small language models (SLMs) on edge",
|
|
932
|
+
"AI agents with tool use",
|
|
933
|
+
"RAG (Retrieval Augmented Generation)",
|
|
934
|
+
"AI coding assistants",
|
|
935
|
+
"Open-source model explosion"
|
|
936
|
+
],
|
|
937
|
+
"target_users": [
|
|
938
|
+
"Developers",
|
|
939
|
+
"Data scientists",
|
|
940
|
+
"Product teams",
|
|
941
|
+
"Content creators",
|
|
942
|
+
"Enterprise decision-makers",
|
|
943
|
+
"Researchers"
|
|
944
|
+
],
|
|
945
|
+
"example_ideas": [
|
|
946
|
+
"AI writing assistant for specific niches",
|
|
947
|
+
"Fine-tuning platform (no-code)",
|
|
948
|
+
"AI-powered data extraction from documents",
|
|
949
|
+
"Prompt marketplace and testing platform",
|
|
950
|
+
"AI model comparison and benchmarking tool"
|
|
951
|
+
]
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"id": "mental-health",
|
|
955
|
+
"name": "Mental Health & Wellness",
|
|
956
|
+
"pain_points": [
|
|
957
|
+
"Therapist shortage and high cost",
|
|
958
|
+
"Stigma prevents seeking help",
|
|
959
|
+
"Long wait times for appointments",
|
|
960
|
+
"Lack of continuity between sessions",
|
|
961
|
+
"One-size-fits-all treatment"
|
|
962
|
+
],
|
|
963
|
+
"opportunities": [
|
|
964
|
+
"AI-assisted therapy chatbot",
|
|
965
|
+
"Mood tracking with insights",
|
|
966
|
+
"Meditation and mindfulness apps",
|
|
967
|
+
"Peer support communities",
|
|
968
|
+
"Workplace mental health tools",
|
|
969
|
+
"Sleep improvement technology"
|
|
970
|
+
],
|
|
971
|
+
"trends": [
|
|
972
|
+
"Digital therapeutics (FDA-approved)",
|
|
973
|
+
"AI emotional intelligence",
|
|
974
|
+
"Biofeedback wearables",
|
|
975
|
+
"Psychedelic-assisted therapy tracking",
|
|
976
|
+
"Employer mental health benefits"
|
|
977
|
+
],
|
|
978
|
+
"target_users": [
|
|
979
|
+
"Young adults (18-35)",
|
|
980
|
+
"Remote workers",
|
|
981
|
+
"Students",
|
|
982
|
+
"Employers/HR",
|
|
983
|
+
"Therapists",
|
|
984
|
+
"Parents"
|
|
985
|
+
],
|
|
986
|
+
"example_ideas": [
|
|
987
|
+
"Daily mood journal with AI insights",
|
|
988
|
+
"Anxiety management companion app",
|
|
989
|
+
"Therapist matching platform",
|
|
990
|
+
"Corporate wellness dashboard",
|
|
991
|
+
"Sleep tracking with personalized recommendations"
|
|
992
|
+
]
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"id": "web3-crypto",
|
|
996
|
+
"name": "Web3 & Cryptocurrency",
|
|
997
|
+
"pain_points": [
|
|
998
|
+
"Complex UX (wallets, gas fees, keys)",
|
|
999
|
+
"Scams and rug pulls",
|
|
1000
|
+
"Regulatory uncertainty",
|
|
1001
|
+
"High transaction costs on some chains",
|
|
1002
|
+
"Lack of mainstream adoption"
|
|
1003
|
+
],
|
|
1004
|
+
"opportunities": [
|
|
1005
|
+
"Wallet abstraction (invisible crypto)",
|
|
1006
|
+
"DeFi simplified for beginners",
|
|
1007
|
+
"On-chain analytics",
|
|
1008
|
+
"NFT utility beyond art",
|
|
1009
|
+
"Cross-chain bridges",
|
|
1010
|
+
"Tokenized real-world assets (RWA)"
|
|
1011
|
+
],
|
|
1012
|
+
"trends": [
|
|
1013
|
+
"Account abstraction (ERC-4337)",
|
|
1014
|
+
"Real-World Asset tokenization",
|
|
1015
|
+
"Decentralized social (Farcaster, Lens)",
|
|
1016
|
+
"Layer 2 scaling (Arbitrum, Base)",
|
|
1017
|
+
"AI x Crypto agents"
|
|
1018
|
+
],
|
|
1019
|
+
"target_users": [
|
|
1020
|
+
"Crypto traders",
|
|
1021
|
+
"DeFi users",
|
|
1022
|
+
"NFT collectors",
|
|
1023
|
+
"Web3 developers",
|
|
1024
|
+
"Institutional investors",
|
|
1025
|
+
"Curious newcomers"
|
|
1026
|
+
],
|
|
1027
|
+
"example_ideas": [
|
|
1028
|
+
"Portfolio tracker with DeFi yield",
|
|
1029
|
+
"Social trading with copy-trade",
|
|
1030
|
+
"No-code smart contract builder",
|
|
1031
|
+
"Crypto tax calculator",
|
|
1032
|
+
"Wallet-as-a-service for apps"
|
|
1033
|
+
]
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"id": "robotics-hardware",
|
|
1037
|
+
"name": "Robotics & Smart Hardware",
|
|
1038
|
+
"pain_points": [
|
|
1039
|
+
"High manufacturing costs",
|
|
1040
|
+
"Complex firmware development",
|
|
1041
|
+
"Supply chain fragility",
|
|
1042
|
+
"User safety concerns",
|
|
1043
|
+
"Integration with existing systems"
|
|
1044
|
+
],
|
|
1045
|
+
"opportunities": [
|
|
1046
|
+
"Consumer robotics (cleaning, companion)",
|
|
1047
|
+
"Warehouse automation",
|
|
1048
|
+
"Drone delivery",
|
|
1049
|
+
"Smart home ecosystem",
|
|
1050
|
+
"Agricultural robotics",
|
|
1051
|
+
"Telepresence robots"
|
|
1052
|
+
],
|
|
1053
|
+
"trends": [
|
|
1054
|
+
"Humanoid robots (Figure, Tesla Optimus)",
|
|
1055
|
+
"Robot-as-a-Service (RaaS)",
|
|
1056
|
+
"AI-powered computer vision on edge",
|
|
1057
|
+
"Modular robotics",
|
|
1058
|
+
"Swarm intelligence"
|
|
1059
|
+
],
|
|
1060
|
+
"target_users": [
|
|
1061
|
+
"Manufacturing companies",
|
|
1062
|
+
"Logistics operators",
|
|
1063
|
+
"Agriculture businesses",
|
|
1064
|
+
"Smart home consumers",
|
|
1065
|
+
"Researchers",
|
|
1066
|
+
"Hobbyists/Makers"
|
|
1067
|
+
],
|
|
1068
|
+
"example_ideas": [
|
|
1069
|
+
"Robot fleet management dashboard",
|
|
1070
|
+
"Computer vision quality inspection",
|
|
1071
|
+
"DIY robot kit with app control",
|
|
1072
|
+
"Drone flight planning platform",
|
|
1073
|
+
"IoT device management portal"
|
|
1074
|
+
]
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"id": "creator-influencer",
|
|
1078
|
+
"name": "Creator & Influencer Economy",
|
|
1079
|
+
"pain_points": [
|
|
1080
|
+
"Hard to monetize small audiences",
|
|
1081
|
+
"Platform dependency (algorithm changes)",
|
|
1082
|
+
"Burnout from constant content creation",
|
|
1083
|
+
"Difficulty tracking brand deals",
|
|
1084
|
+
"No stable income"
|
|
1085
|
+
],
|
|
1086
|
+
"opportunities": [
|
|
1087
|
+
"Creator CRM and link management",
|
|
1088
|
+
"AI content repurposing (one video → 10 shorts)",
|
|
1089
|
+
"Fan community platforms",
|
|
1090
|
+
"Sponsorship marketplace",
|
|
1091
|
+
"Creator finance (advances, invoicing)",
|
|
1092
|
+
"Live commerce for creators"
|
|
1093
|
+
],
|
|
1094
|
+
"trends": [
|
|
1095
|
+
"AI-generated content assistance",
|
|
1096
|
+
"Multi-platform distribution",
|
|
1097
|
+
"Creator-led brands (own products)",
|
|
1098
|
+
"Community-based monetization",
|
|
1099
|
+
"Short-form video dominance",
|
|
1100
|
+
"Virtual influencers"
|
|
1101
|
+
],
|
|
1102
|
+
"target_users": [
|
|
1103
|
+
"YouTubers",
|
|
1104
|
+
"TikTokers",
|
|
1105
|
+
"Instagram influencers",
|
|
1106
|
+
"Podcasters",
|
|
1107
|
+
"Newsletter writers",
|
|
1108
|
+
"Small creators (1K-100K followers)"
|
|
1109
|
+
],
|
|
1110
|
+
"example_ideas": [
|
|
1111
|
+
"AI video clip generator from long-form",
|
|
1112
|
+
"Sponsorship deal tracker + invoicing",
|
|
1113
|
+
"Creator analytics across all platforms",
|
|
1114
|
+
"Fan membership platform (alternative to Patreon)",
|
|
1115
|
+
"Content calendar with AI suggestions"
|
|
1116
|
+
]
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"id": "telecom",
|
|
1120
|
+
"name": "Telecommunications",
|
|
1121
|
+
"pain_points": [
|
|
1122
|
+
"Complex billing and plan management",
|
|
1123
|
+
"Poor customer service experience",
|
|
1124
|
+
"Network coverage gaps",
|
|
1125
|
+
"High churn rate",
|
|
1126
|
+
"Legacy infrastructure modernization"
|
|
1127
|
+
],
|
|
1128
|
+
"opportunities": [
|
|
1129
|
+
"eSIM management platform",
|
|
1130
|
+
"Network analytics dashboard",
|
|
1131
|
+
"Customer self-service portal",
|
|
1132
|
+
"5G-enabled applications",
|
|
1133
|
+
"IoT connectivity management"
|
|
1134
|
+
],
|
|
1135
|
+
"trends": [
|
|
1136
|
+
"5G rollout and edge computing",
|
|
1137
|
+
"Network slicing",
|
|
1138
|
+
"AI-powered network optimization",
|
|
1139
|
+
"Open RAN",
|
|
1140
|
+
"Satellite internet (Starlink competitors)"
|
|
1141
|
+
],
|
|
1142
|
+
"target_users": [
|
|
1143
|
+
"Telecom operators",
|
|
1144
|
+
"Enterprise IT teams",
|
|
1145
|
+
"IoT device manufacturers",
|
|
1146
|
+
"Mobile consumers",
|
|
1147
|
+
"Rural communities"
|
|
1148
|
+
],
|
|
1149
|
+
"example_ideas": [
|
|
1150
|
+
"eSIM activation and management app",
|
|
1151
|
+
"Network quality monitoring tool",
|
|
1152
|
+
"AI chatbot for telecom support",
|
|
1153
|
+
"5G-powered AR/VR experience platform"
|
|
1154
|
+
]
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"id": "energy-utilities",
|
|
1158
|
+
"name": "Energy & Utilities",
|
|
1159
|
+
"pain_points": [
|
|
1160
|
+
"High energy costs for consumers",
|
|
1161
|
+
"Grid reliability and outages",
|
|
1162
|
+
"Carbon emission tracking",
|
|
1163
|
+
"Complex regulatory compliance",
|
|
1164
|
+
"Aging infrastructure"
|
|
1165
|
+
],
|
|
1166
|
+
"opportunities": [
|
|
1167
|
+
"Smart meter analytics",
|
|
1168
|
+
"Solar/EV charging management",
|
|
1169
|
+
"Energy trading platform",
|
|
1170
|
+
"Carbon footprint tracker",
|
|
1171
|
+
"Home energy optimization"
|
|
1172
|
+
],
|
|
1173
|
+
"trends": [
|
|
1174
|
+
"Renewable energy adoption",
|
|
1175
|
+
"Battery storage technology",
|
|
1176
|
+
"Vehicle-to-grid (V2G)",
|
|
1177
|
+
"Smart grid and microgrids",
|
|
1178
|
+
"Green hydrogen"
|
|
1179
|
+
],
|
|
1180
|
+
"target_users": [
|
|
1181
|
+
"Homeowners",
|
|
1182
|
+
"Building managers",
|
|
1183
|
+
"Energy companies",
|
|
1184
|
+
"EV owners",
|
|
1185
|
+
"Sustainability officers"
|
|
1186
|
+
],
|
|
1187
|
+
"example_ideas": [
|
|
1188
|
+
"Home energy usage dashboard with AI tips",
|
|
1189
|
+
"Solar panel ROI calculator",
|
|
1190
|
+
"EV charging station finder and scheduler",
|
|
1191
|
+
"Corporate carbon offset marketplace"
|
|
1192
|
+
]
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
"id": "dating-relationships",
|
|
1196
|
+
"name": "Dating & Relationships",
|
|
1197
|
+
"pain_points": [
|
|
1198
|
+
"Superficial matching (swipe fatigue)",
|
|
1199
|
+
"Safety concerns (catfishing, harassment)",
|
|
1200
|
+
"Low-quality conversations",
|
|
1201
|
+
"Burnout from too many options",
|
|
1202
|
+
"Different intentions (casual vs serious)"
|
|
1203
|
+
],
|
|
1204
|
+
"opportunities": [
|
|
1205
|
+
"AI-powered deeper matching",
|
|
1206
|
+
"Video-first dating",
|
|
1207
|
+
"Niche communities (interests, values)",
|
|
1208
|
+
"Relationship coaching integration",
|
|
1209
|
+
"Event-based matching (speed dating online)"
|
|
1210
|
+
],
|
|
1211
|
+
"trends": [
|
|
1212
|
+
"Slow dating (quality over quantity)",
|
|
1213
|
+
"Voice/video before meeting",
|
|
1214
|
+
"AI matchmaking assistants",
|
|
1215
|
+
"Safety verification (ID check)",
|
|
1216
|
+
"Community-based dating"
|
|
1217
|
+
],
|
|
1218
|
+
"target_users": [
|
|
1219
|
+
"Singles (18-35)",
|
|
1220
|
+
"Divorced/Widowed adults",
|
|
1221
|
+
"LGBTQ+ community",
|
|
1222
|
+
"Expats and travelers",
|
|
1223
|
+
"Niche interest groups"
|
|
1224
|
+
],
|
|
1225
|
+
"example_ideas": [
|
|
1226
|
+
"Values-based matching app",
|
|
1227
|
+
"Group date organizer",
|
|
1228
|
+
"Video dating with conversation prompts",
|
|
1229
|
+
"Post-breakup recovery community",
|
|
1230
|
+
"AI date idea generator by location"
|
|
1231
|
+
]
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
"id": "marketing-adtech",
|
|
1235
|
+
"name": "Marketing & AdTech",
|
|
1236
|
+
"pain_points": [
|
|
1237
|
+
"Rising ad costs (CAC inflation)",
|
|
1238
|
+
"Cookie deprecation and privacy changes",
|
|
1239
|
+
"Attribution complexity (multi-touch)",
|
|
1240
|
+
"Content creation at scale",
|
|
1241
|
+
"Measuring ROI across channels"
|
|
1242
|
+
],
|
|
1243
|
+
"opportunities": [
|
|
1244
|
+
"AI ad creative generator",
|
|
1245
|
+
"First-party data platform",
|
|
1246
|
+
"Influencer marketing automation",
|
|
1247
|
+
"Contextual advertising (post-cookie)",
|
|
1248
|
+
"Marketing attribution tool"
|
|
1249
|
+
],
|
|
1250
|
+
"trends": [
|
|
1251
|
+
"AI-generated ad creatives",
|
|
1252
|
+
"Privacy-first marketing",
|
|
1253
|
+
"Short-form video ads (TikTok, Reels)",
|
|
1254
|
+
"Retail media networks",
|
|
1255
|
+
"Conversational marketing (chatbots)"
|
|
1256
|
+
],
|
|
1257
|
+
"target_users": [
|
|
1258
|
+
"Digital marketers",
|
|
1259
|
+
"Growth hackers",
|
|
1260
|
+
"SMB owners",
|
|
1261
|
+
"E-commerce brands",
|
|
1262
|
+
"Agencies"
|
|
1263
|
+
],
|
|
1264
|
+
"example_ideas": [
|
|
1265
|
+
"AI ad copy and creative generator",
|
|
1266
|
+
"Multi-channel attribution dashboard",
|
|
1267
|
+
"Landing page A/B testing tool",
|
|
1268
|
+
"Social media scheduler with AI captions",
|
|
1269
|
+
"Competitor ad spy tool"
|
|
1270
|
+
]
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"id": "hospitality",
|
|
1274
|
+
"name": "Hospitality & Hotels",
|
|
1275
|
+
"pain_points": [
|
|
1276
|
+
"Staff shortages and high turnover",
|
|
1277
|
+
"OTA dependency (Booking.com commission 15-25%)",
|
|
1278
|
+
"Last-minute cancellations",
|
|
1279
|
+
"Guest experience personalization",
|
|
1280
|
+
"Revenue management complexity"
|
|
1281
|
+
],
|
|
1282
|
+
"opportunities": [
|
|
1283
|
+
"Direct booking engine",
|
|
1284
|
+
"Guest experience platform",
|
|
1285
|
+
"Revenue management AI",
|
|
1286
|
+
"Contactless check-in/out",
|
|
1287
|
+
"Staff scheduling optimization"
|
|
1288
|
+
],
|
|
1289
|
+
"trends": [
|
|
1290
|
+
"Experiential travel",
|
|
1291
|
+
"Bleisure (business + leisure)",
|
|
1292
|
+
"Smart rooms (IoT)",
|
|
1293
|
+
"Sustainable hospitality",
|
|
1294
|
+
"AI concierge"
|
|
1295
|
+
],
|
|
1296
|
+
"target_users": [
|
|
1297
|
+
"Hotel owners/managers",
|
|
1298
|
+
"Boutique hotels",
|
|
1299
|
+
"Vacation rental hosts",
|
|
1300
|
+
"Travel agencies",
|
|
1301
|
+
"Business travelers"
|
|
1302
|
+
],
|
|
1303
|
+
"example_ideas": [
|
|
1304
|
+
"AI-powered dynamic pricing for hotels",
|
|
1305
|
+
"Guest feedback analyzer",
|
|
1306
|
+
"Direct booking website builder for hotels",
|
|
1307
|
+
"Smart room control app (IoT)"
|
|
1308
|
+
]
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
"id": "govtech",
|
|
1312
|
+
"name": "Government & GovTech",
|
|
1313
|
+
"pain_points": [
|
|
1314
|
+
"Bureaucratic processes and paperwork",
|
|
1315
|
+
"Outdated legacy systems",
|
|
1316
|
+
"Citizen engagement is low",
|
|
1317
|
+
"Data silos between departments",
|
|
1318
|
+
"Cybersecurity threats on public infrastructure"
|
|
1319
|
+
],
|
|
1320
|
+
"opportunities": [
|
|
1321
|
+
"Digital citizen services (e-government)",
|
|
1322
|
+
"Open data platform",
|
|
1323
|
+
"Smart city management",
|
|
1324
|
+
"Public safety analytics",
|
|
1325
|
+
"Document digitization and automation"
|
|
1326
|
+
],
|
|
1327
|
+
"trends": [
|
|
1328
|
+
"Digital identity (eID)",
|
|
1329
|
+
"AI for public policy",
|
|
1330
|
+
"Smart city IoT integration",
|
|
1331
|
+
"Blockchain for public records",
|
|
1332
|
+
"Civic engagement platforms"
|
|
1333
|
+
],
|
|
1334
|
+
"target_users": [
|
|
1335
|
+
"Government agencies",
|
|
1336
|
+
"City officials",
|
|
1337
|
+
"Citizens",
|
|
1338
|
+
"Public safety departments",
|
|
1339
|
+
"Policy makers"
|
|
1340
|
+
],
|
|
1341
|
+
"example_ideas": [
|
|
1342
|
+
"Citizen request management system",
|
|
1343
|
+
"Permit and licensing portal",
|
|
1344
|
+
"Public budget transparency dashboard",
|
|
1345
|
+
"AI-powered document processing for government"
|
|
1346
|
+
]
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"id": "elderly-care",
|
|
1350
|
+
"name": "Elderly Care & Aging",
|
|
1351
|
+
"pain_points": [
|
|
1352
|
+
"Social isolation among seniors",
|
|
1353
|
+
"Medication management complexity",
|
|
1354
|
+
"Fall detection and emergency response",
|
|
1355
|
+
"Caregiver burnout",
|
|
1356
|
+
"Navigating healthcare systems"
|
|
1357
|
+
],
|
|
1358
|
+
"opportunities": [
|
|
1359
|
+
"Remote health monitoring",
|
|
1360
|
+
"Companion AI/robot",
|
|
1361
|
+
"Caregiver coordination platform",
|
|
1362
|
+
"Simplified tech interfaces for seniors",
|
|
1363
|
+
"Memory and cognitive training"
|
|
1364
|
+
],
|
|
1365
|
+
"trends": [
|
|
1366
|
+
"Aging-in-place technology",
|
|
1367
|
+
"Wearable health monitors",
|
|
1368
|
+
"Voice-first interfaces (Alexa, Google)",
|
|
1369
|
+
"Telemedicine for seniors",
|
|
1370
|
+
"Intergenerational connection platforms"
|
|
1371
|
+
],
|
|
1372
|
+
"target_users": [
|
|
1373
|
+
"Seniors (65+)",
|
|
1374
|
+
"Family caregivers",
|
|
1375
|
+
"Nursing homes",
|
|
1376
|
+
"Home health aides",
|
|
1377
|
+
"Geriatricians"
|
|
1378
|
+
],
|
|
1379
|
+
"example_ideas": [
|
|
1380
|
+
"Medication reminder with refill ordering",
|
|
1381
|
+
"Video call app simplified for seniors",
|
|
1382
|
+
"Caregiver shift scheduling and notes",
|
|
1383
|
+
"Daily wellness check-in chatbot"
|
|
1384
|
+
]
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"id": "music-audio",
|
|
1388
|
+
"name": "Music & Audio",
|
|
1389
|
+
"pain_points": [
|
|
1390
|
+
"Low streaming payouts for artists",
|
|
1391
|
+
"Music discovery overload",
|
|
1392
|
+
"Expensive production tools",
|
|
1393
|
+
"Copyright and licensing complexity",
|
|
1394
|
+
"Fan engagement beyond streaming"
|
|
1395
|
+
],
|
|
1396
|
+
"opportunities": [
|
|
1397
|
+
"AI music generation and remixing",
|
|
1398
|
+
"Direct-to-fan platforms",
|
|
1399
|
+
"Podcast hosting and monetization",
|
|
1400
|
+
"Music collaboration tools",
|
|
1401
|
+
"Audio branding for businesses"
|
|
1402
|
+
],
|
|
1403
|
+
"trends": [
|
|
1404
|
+
"AI-generated music (Suno, Udio)",
|
|
1405
|
+
"Spatial audio (Dolby Atmos)",
|
|
1406
|
+
"Podcast explosion continues",
|
|
1407
|
+
"Stem separation technology",
|
|
1408
|
+
"Music NFTs and direct ownership"
|
|
1409
|
+
],
|
|
1410
|
+
"target_users": [
|
|
1411
|
+
"Independent musicians",
|
|
1412
|
+
"Podcasters",
|
|
1413
|
+
"Music producers",
|
|
1414
|
+
"Content creators (need background music)",
|
|
1415
|
+
"Brands (audio branding)"
|
|
1416
|
+
],
|
|
1417
|
+
"example_ideas": [
|
|
1418
|
+
"AI beat maker for content creators",
|
|
1419
|
+
"Royalty-free music marketplace",
|
|
1420
|
+
"Podcast analytics and monetization platform",
|
|
1421
|
+
"Music collaboration studio (online DAW)",
|
|
1422
|
+
"AI voice cloning for personalized audio"
|
|
1423
|
+
]
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"id": "remote-work",
|
|
1427
|
+
"name": "Remote Work & Future of Work",
|
|
1428
|
+
"pain_points": [
|
|
1429
|
+
"Team coordination across time zones",
|
|
1430
|
+
"Loneliness and isolation",
|
|
1431
|
+
"Productivity tracking without micromanaging",
|
|
1432
|
+
"Onboarding remote employees",
|
|
1433
|
+
"Meeting fatigue (Zoom fatigue)"
|
|
1434
|
+
],
|
|
1435
|
+
"opportunities": [
|
|
1436
|
+
"Async communication tools",
|
|
1437
|
+
"Virtual office / spatial audio workspace",
|
|
1438
|
+
"Remote team culture builder",
|
|
1439
|
+
"Time zone coordination",
|
|
1440
|
+
"AI meeting summarizer"
|
|
1441
|
+
],
|
|
1442
|
+
"trends": [
|
|
1443
|
+
"Hybrid work models",
|
|
1444
|
+
"AI meeting assistants",
|
|
1445
|
+
"Digital nomad infrastructure",
|
|
1446
|
+
"Asynchronous-first culture",
|
|
1447
|
+
"Employee experience platforms"
|
|
1448
|
+
],
|
|
1449
|
+
"target_users": [
|
|
1450
|
+
"Remote teams",
|
|
1451
|
+
"Digital nomads",
|
|
1452
|
+
"HR managers",
|
|
1453
|
+
"Freelancers",
|
|
1454
|
+
"Distributed companies"
|
|
1455
|
+
],
|
|
1456
|
+
"example_ideas": [
|
|
1457
|
+
"AI meeting notes and action items",
|
|
1458
|
+
"Virtual water cooler for remote teams",
|
|
1459
|
+
"Time zone overlap finder for scheduling",
|
|
1460
|
+
"Remote team mood/pulse survey tool",
|
|
1461
|
+
"Co-working space finder for nomads"
|
|
1462
|
+
]
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
"id": "biotech-pharma",
|
|
1466
|
+
"name": "Biotech & Pharmaceuticals",
|
|
1467
|
+
"pain_points": [
|
|
1468
|
+
"Drug development takes 10+ years",
|
|
1469
|
+
"Clinical trial recruitment is slow",
|
|
1470
|
+
"Regulatory approval complexity",
|
|
1471
|
+
"High R&D costs ($2B+ per drug)",
|
|
1472
|
+
"Supply chain for cold-chain biologics"
|
|
1473
|
+
],
|
|
1474
|
+
"opportunities": [
|
|
1475
|
+
"AI drug discovery",
|
|
1476
|
+
"Clinical trial management",
|
|
1477
|
+
"Patient recruitment platform",
|
|
1478
|
+
"Lab information management (LIMS)",
|
|
1479
|
+
"Regulatory compliance automation"
|
|
1480
|
+
],
|
|
1481
|
+
"trends": [
|
|
1482
|
+
"AI-accelerated drug discovery",
|
|
1483
|
+
"mRNA platform technology",
|
|
1484
|
+
"Personalized medicine (genomics)",
|
|
1485
|
+
"Digital biomarkers",
|
|
1486
|
+
"Decentralized clinical trials"
|
|
1487
|
+
],
|
|
1488
|
+
"target_users": [
|
|
1489
|
+
"Pharmaceutical companies",
|
|
1490
|
+
"Biotech startups",
|
|
1491
|
+
"Research labs",
|
|
1492
|
+
"Clinical researchers",
|
|
1493
|
+
"Regulatory affairs teams"
|
|
1494
|
+
],
|
|
1495
|
+
"example_ideas": [
|
|
1496
|
+
"AI molecule screening platform",
|
|
1497
|
+
"Clinical trial patient matching",
|
|
1498
|
+
"Lab experiment tracking dashboard",
|
|
1499
|
+
"Drug interaction checker API"
|
|
1500
|
+
]
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
"id": "transportation-mobility",
|
|
1504
|
+
"name": "Transportation & Mobility",
|
|
1505
|
+
"pain_points": [
|
|
1506
|
+
"Traffic congestion in cities",
|
|
1507
|
+
"Last-mile delivery challenge",
|
|
1508
|
+
"Public transit reliability",
|
|
1509
|
+
"Parking availability",
|
|
1510
|
+
"EV charging infrastructure gaps"
|
|
1511
|
+
],
|
|
1512
|
+
"opportunities": [
|
|
1513
|
+
"Mobility-as-a-Service (MaaS)",
|
|
1514
|
+
"Micro-mobility (e-scooter, e-bike)",
|
|
1515
|
+
"Fleet management platform",
|
|
1516
|
+
"Smart parking solutions",
|
|
1517
|
+
"Autonomous vehicle infrastructure"
|
|
1518
|
+
],
|
|
1519
|
+
"trends": [
|
|
1520
|
+
"Electric vehicles mainstream",
|
|
1521
|
+
"Autonomous driving (L2-L4)",
|
|
1522
|
+
"Micro-mobility expansion",
|
|
1523
|
+
"Mobility hubs (multi-modal)",
|
|
1524
|
+
"Drone delivery"
|
|
1525
|
+
],
|
|
1526
|
+
"target_users": [
|
|
1527
|
+
"Commuters",
|
|
1528
|
+
"Delivery companies",
|
|
1529
|
+
"City planners",
|
|
1530
|
+
"Fleet operators",
|
|
1531
|
+
"EV owners"
|
|
1532
|
+
],
|
|
1533
|
+
"example_ideas": [
|
|
1534
|
+
"Multi-modal trip planner (bus + bike + walk)",
|
|
1535
|
+
"EV charging network finder + reservation",
|
|
1536
|
+
"Fleet tracking and optimization dashboard",
|
|
1537
|
+
"Smart parking availability app"
|
|
1538
|
+
]
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"id": "food-tech",
|
|
1542
|
+
"name": "Food Tech & Restaurant Tech",
|
|
1543
|
+
"pain_points": [
|
|
1544
|
+
"High food waste (30% of production)",
|
|
1545
|
+
"Rising ingredient costs",
|
|
1546
|
+
"Staff shortages in restaurants",
|
|
1547
|
+
"Delivery commission cuts profits (30%)",
|
|
1548
|
+
"Customer loyalty in saturated market"
|
|
1549
|
+
],
|
|
1550
|
+
"opportunities": [
|
|
1551
|
+
"Ghost kitchen / cloud kitchen platform",
|
|
1552
|
+
"Food waste reduction AI",
|
|
1553
|
+
"Restaurant POS and management",
|
|
1554
|
+
"Meal planning and prep tools",
|
|
1555
|
+
"Direct ordering (bypass aggregators)"
|
|
1556
|
+
],
|
|
1557
|
+
"trends": [
|
|
1558
|
+
"Ghost kitchens",
|
|
1559
|
+
"Plant-based and lab-grown meat",
|
|
1560
|
+
"AI inventory and demand forecasting",
|
|
1561
|
+
"Robot cooking / automated kitchens",
|
|
1562
|
+
"Hyper-personalized nutrition"
|
|
1563
|
+
],
|
|
1564
|
+
"target_users": [
|
|
1565
|
+
"Restaurant owners",
|
|
1566
|
+
"Ghost kitchen operators",
|
|
1567
|
+
"Home cooks",
|
|
1568
|
+
"Food delivery drivers",
|
|
1569
|
+
"Nutrition-conscious consumers"
|
|
1570
|
+
],
|
|
1571
|
+
"example_ideas": [
|
|
1572
|
+
"Restaurant direct ordering app (no commission)",
|
|
1573
|
+
"AI recipe generator from fridge contents",
|
|
1574
|
+
"Food waste marketplace (surplus deals)",
|
|
1575
|
+
"Smart kitchen inventory tracker"
|
|
1576
|
+
]
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
"id": "photo-video",
|
|
1580
|
+
"name": "Photography & Video Production",
|
|
1581
|
+
"pain_points": [
|
|
1582
|
+
"Time-consuming editing workflows",
|
|
1583
|
+
"Storage and backup costs (TB of files)",
|
|
1584
|
+
"Client communication and proofing",
|
|
1585
|
+
"Pricing and quote complexity",
|
|
1586
|
+
"Copyright protection"
|
|
1587
|
+
],
|
|
1588
|
+
"opportunities": [
|
|
1589
|
+
"AI photo/video editing",
|
|
1590
|
+
"Client gallery and proofing platform",
|
|
1591
|
+
"Stock content marketplace",
|
|
1592
|
+
"Automated video highlights",
|
|
1593
|
+
"AI-powered color grading"
|
|
1594
|
+
],
|
|
1595
|
+
"trends": [
|
|
1596
|
+
"AI image generation (Midjourney, DALL-E)",
|
|
1597
|
+
"AI video editing (auto-cut, auto-caption)",
|
|
1598
|
+
"Drone cinematography",
|
|
1599
|
+
"Virtual production (LED walls)",
|
|
1600
|
+
"User-generated content for brands"
|
|
1601
|
+
],
|
|
1602
|
+
"target_users": [
|
|
1603
|
+
"Professional photographers",
|
|
1604
|
+
"Videographers",
|
|
1605
|
+
"Social media content creators",
|
|
1606
|
+
"Marketing teams",
|
|
1607
|
+
"Wedding industry"
|
|
1608
|
+
],
|
|
1609
|
+
"example_ideas": [
|
|
1610
|
+
"AI photo culling tool (auto-select best shots)",
|
|
1611
|
+
"Client gallery with integrated booking",
|
|
1612
|
+
"Auto-captioning tool for videos",
|
|
1613
|
+
"AI backdrop remover and replacer",
|
|
1614
|
+
"Stock footage marketplace with AI search"
|
|
1615
|
+
]
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"id": "smart-city",
|
|
1619
|
+
"name": "Smart City & Urban Tech",
|
|
1620
|
+
"pain_points": [
|
|
1621
|
+
"Data silos between city departments",
|
|
1622
|
+
"Infrastructure monitoring is manual",
|
|
1623
|
+
"Citizen engagement is low",
|
|
1624
|
+
"Emergency response coordination",
|
|
1625
|
+
"Environmental pollution tracking"
|
|
1626
|
+
],
|
|
1627
|
+
"opportunities": [
|
|
1628
|
+
"City dashboard (real-time data)",
|
|
1629
|
+
"Smart waste management",
|
|
1630
|
+
"Air quality monitoring network",
|
|
1631
|
+
"Digital twin of city infrastructure",
|
|
1632
|
+
"Citizen engagement platform"
|
|
1633
|
+
],
|
|
1634
|
+
"trends": [
|
|
1635
|
+
"Digital twins for urban planning",
|
|
1636
|
+
"IoT sensor networks",
|
|
1637
|
+
"AI traffic management",
|
|
1638
|
+
"Smart street lighting",
|
|
1639
|
+
"15-minute city concept"
|
|
1640
|
+
],
|
|
1641
|
+
"target_users": [
|
|
1642
|
+
"City governments",
|
|
1643
|
+
"Urban planners",
|
|
1644
|
+
"Infrastructure companies",
|
|
1645
|
+
"Citizens",
|
|
1646
|
+
"Environmental agencies"
|
|
1647
|
+
],
|
|
1648
|
+
"example_ideas": [
|
|
1649
|
+
"City operations dashboard",
|
|
1650
|
+
"Smart waste bin monitoring system",
|
|
1651
|
+
"Air quality real-time map",
|
|
1652
|
+
"Public infrastructure defect reporting app"
|
|
1653
|
+
]
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"id": "nonprofit-ngo",
|
|
1657
|
+
"name": "Nonprofit & NGO",
|
|
1658
|
+
"pain_points": [
|
|
1659
|
+
"Fundraising and donor retention",
|
|
1660
|
+
"Impact measurement and reporting",
|
|
1661
|
+
"Volunteer management complexity",
|
|
1662
|
+
"Limited tech budget",
|
|
1663
|
+
"Grant application is time-consuming"
|
|
1664
|
+
],
|
|
1665
|
+
"opportunities": [
|
|
1666
|
+
"Online fundraising platform",
|
|
1667
|
+
"Donor management CRM",
|
|
1668
|
+
"Impact tracking and visualization",
|
|
1669
|
+
"Volunteer matching and scheduling",
|
|
1670
|
+
"Grant writing AI assistant"
|
|
1671
|
+
],
|
|
1672
|
+
"trends": [
|
|
1673
|
+
"Peer-to-peer fundraising",
|
|
1674
|
+
"Crypto/blockchain donations",
|
|
1675
|
+
"Impact investing",
|
|
1676
|
+
"AI for social good",
|
|
1677
|
+
"Micro-donations (round-up)"
|
|
1678
|
+
],
|
|
1679
|
+
"target_users": [
|
|
1680
|
+
"Nonprofit organizations",
|
|
1681
|
+
"NGO workers",
|
|
1682
|
+
"Volunteers",
|
|
1683
|
+
"Donors",
|
|
1684
|
+
"Grant-making foundations"
|
|
1685
|
+
],
|
|
1686
|
+
"example_ideas": [
|
|
1687
|
+
"Donation platform with impact visualization",
|
|
1688
|
+
"Volunteer hour tracker and certification",
|
|
1689
|
+
"AI grant proposal writer",
|
|
1690
|
+
"Nonprofit website builder (free tier)"
|
|
1691
|
+
]
|
|
1692
|
+
}
|
|
1693
|
+
]
|