@tomako/tools-runtime 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/package.json +629 -0
- package/src/assets/icons/brands/social/bluesky-icon.tsx +9 -0
- package/src/assets/icons/brands/social/facebook-icon.tsx +9 -0
- package/src/assets/icons/brands/social/index.ts +8 -0
- package/src/assets/icons/brands/social/instagram-icon.tsx +9 -0
- package/src/assets/icons/brands/social/linkedin-icon.tsx +9 -0
- package/src/assets/icons/brands/social/threads-icon.tsx +9 -0
- package/src/assets/icons/brands/social/tiktok-icon.tsx +10 -0
- package/src/assets/icons/brands/social/x-icon.tsx +9 -0
- package/src/assets/icons/brands/social/youtube-icon.tsx +9 -0
- package/src/assets/icons/social-profile/facebook-icon.tsx +12 -0
- package/src/assets/icons/social-profile/index.ts +29 -0
- package/src/assets/icons/social-profile/instagram-icon.tsx +18 -0
- package/src/assets/icons/social-profile/linkedin-icon.tsx +12 -0
- package/src/assets/icons/social-profile/tiktok-icon.tsx +12 -0
- package/src/assets/icons/social-profile/x-icon.tsx +13 -0
- package/src/assets/icons/social-profile/youtube-icon.tsx +12 -0
- package/src/components/tools/engine/form-builder.tsx +219 -0
- package/src/components/tools/engine/package-widget-loader.tsx +38 -0
- package/src/components/tools/engine/package-widget-runtime.tsx +409 -0
- package/src/components/tools/engine/package-widget.tsx +77 -0
- package/src/components/tools/engine/result-view.tsx +596 -0
- package/src/components/tools/engine/use-legacy-llm-task.ts +64 -0
- package/src/components/tools/engine/use-tool-task.ts +195 -0
- package/src/components/tools/market-forecast-report.tsx +1150 -0
- package/src/components/tools/registry.ts +13 -0
- package/src/components/tools/workspace/index.ts +39 -0
- package/src/components/tools/workspace/tool-action-bar.tsx +99 -0
- package/src/components/tools/workspace/tool-empty-panel.tsx +32 -0
- package/src/components/tools/workspace/tool-error-panel.tsx +40 -0
- package/src/components/tools/workspace/tool-field.tsx +124 -0
- package/src/components/tools/workspace/tool-file-upload.tsx +112 -0
- package/src/components/tools/workspace/tool-form-section.tsx +21 -0
- package/src/components/tools/workspace/tool-form-shell.tsx +36 -0
- package/src/components/tools/workspace/tool-loading-panel.tsx +269 -0
- package/src/components/tools/workspace/tool-option-row.tsx +97 -0
- package/src/components/tools/workspace/tool-preview-panel.tsx +31 -0
- package/src/components/tools/workspace/tool-result-actions.tsx +67 -0
- package/src/components/tools/workspace/tool-result-file-actions.ts +31 -0
- package/src/components/tools/workspace/tool-result-header.tsx +39 -0
- package/src/components/tools/workspace/tool-status.tsx +13 -0
- package/src/components/tools/workspace/tool-workspace-layout.tsx +226 -0
- package/src/constants/LKS.ts +29 -0
- package/src/constants/related-tools.ts +18 -0
- package/src/constants/social-profile-kit.ts +284 -0
- package/src/constants/tool-assets.ts +7 -0
- package/src/env.d.ts +3 -0
- package/src/features/tools/_templates/standard-tool.container.tsx +90 -0
- package/src/features/tools/app-icon-resizer/app-icon-resizer.container.tsx +11 -0
- package/src/features/tools/app-icon-resizer/app-icon-resizer.spec.ts +15 -0
- package/src/features/tools/app-icon-resizer/widget/app-icon-resizer.tsx +444 -0
- package/src/features/tools/app-icon-resizer/widget/constants.ts +19 -0
- package/src/features/tools/app-icon-resizer/widget/helpers.ts +314 -0
- package/src/features/tools/app-icon-resizer/widget/index.ts +7 -0
- package/src/features/tools/app-icon-resizer/widget/platform-icons.tsx +59 -0
- package/src/features/tools/app-icon-resizer/widget/preview-dialogs.tsx +139 -0
- package/src/features/tools/app-icon-resizer/widget/result-shell.tsx +165 -0
- package/src/features/tools/app-icon-resizer/widget/types.ts +36 -0
- package/src/features/tools/app-store-screenshot-generator/app-store-screenshot-generator.container.tsx +108 -0
- package/src/features/tools/app-store-screenshot-generator/app-store-screenshot-generator.spec.ts +14 -0
- package/src/features/tools/app-store-screenshot-generator/config.ts +3 -0
- package/src/features/tools/app-store-screenshot-generator/widget/app-store-screenshot-generator.tsx +1250 -0
- package/src/features/tools/app-store-screenshot-generator/widget/asset-slots.ts +76 -0
- package/src/features/tools/app-store-screenshot-generator/widget/constants.ts +43 -0
- package/src/features/tools/app-store-screenshot-generator/widget/form-controls.tsx +214 -0
- package/src/features/tools/app-store-screenshot-generator/widget/generation.ts +528 -0
- package/src/features/tools/app-store-screenshot-generator/widget/index.ts +7 -0
- package/src/features/tools/app-store-screenshot-generator/widget/input-media.ts +175 -0
- package/src/features/tools/app-store-screenshot-generator/widget/types.ts +60 -0
- package/src/features/tools/app-store-screenshot-generator/widget/zip.ts +119 -0
- package/src/features/tools/build-in-public-story-generator/build-in-public-story-generator.container.tsx +135 -0
- package/src/features/tools/build-in-public-story-generator/build-in-public-story-generator.spec.ts +15 -0
- package/src/features/tools/build-in-public-story-generator/widget/build-in-public-story-generator.tsx +314 -0
- package/src/features/tools/build-in-public-story-generator/widget/constants.ts +3 -0
- package/src/features/tools/build-in-public-story-generator/widget/helpers.ts +25 -0
- package/src/features/tools/build-in-public-story-generator/widget/index.ts +7 -0
- package/src/features/tools/build-in-public-story-generator/widget/preview-panels.tsx +58 -0
- package/src/features/tools/build-in-public-story-generator/widget/result-shell.tsx +164 -0
- package/src/features/tools/build-in-public-story-generator/widget/types.ts +6 -0
- package/src/features/tools/cold-start-channel-selector/cold-start-channel-selector.container.tsx +30 -0
- package/src/features/tools/cold-start-channel-selector/cold-start-channel-selector.spec.ts +15 -0
- package/src/features/tools/cold-start-channel-selector/widget/cold-start-channel-selector.tsx +417 -0
- package/src/features/tools/cold-start-channel-selector/widget/constants.ts +46 -0
- package/src/features/tools/cold-start-channel-selector/widget/form-controls.tsx +41 -0
- package/src/features/tools/cold-start-channel-selector/widget/helpers.ts +75 -0
- package/src/features/tools/cold-start-channel-selector/widget/index.ts +7 -0
- package/src/features/tools/cold-start-channel-selector/widget/preview-panels.tsx +250 -0
- package/src/features/tools/cold-start-channel-selector/widget/result-shell.tsx +199 -0
- package/src/features/tools/cold-start-channel-selector/widget/types.ts +21 -0
- package/src/features/tools/commercial-bp-generator/commercial-bp-generator.container.tsx +102 -0
- package/src/features/tools/commercial-bp-generator/commercial-bp-generator.spec.ts +14 -0
- package/src/features/tools/commercial-bp-generator/widget/commercial-bp-generator.tsx +676 -0
- package/src/features/tools/commercial-bp-generator/widget/constants.ts +32 -0
- package/src/features/tools/commercial-bp-generator/widget/helpers.ts +147 -0
- package/src/features/tools/commercial-bp-generator/widget/index.ts +7 -0
- package/src/features/tools/commercial-bp-generator/widget/result-shell.tsx +271 -0
- package/src/features/tools/commercial-bp-generator/widget/style-option.tsx +54 -0
- package/src/features/tools/commercial-bp-generator/widget/types.ts +33 -0
- package/src/features/tools/community-feedback-inbox/community-feedback-inbox.container.tsx +126 -0
- package/src/features/tools/community-feedback-inbox/community-feedback-inbox.spec.ts +15 -0
- package/src/features/tools/community-feedback-inbox/widget/community-feedback-inbox.tsx +271 -0
- package/src/features/tools/community-feedback-inbox/widget/constants.ts +3 -0
- package/src/features/tools/community-feedback-inbox/widget/helpers.ts +28 -0
- package/src/features/tools/community-feedback-inbox/widget/index.ts +7 -0
- package/src/features/tools/community-feedback-inbox/widget/preview-panels.tsx +92 -0
- package/src/features/tools/community-feedback-inbox/widget/result-shell.tsx +266 -0
- package/src/features/tools/community-feedback-inbox/widget/types.ts +6 -0
- package/src/features/tools/community-pain-point-extractor/community-pain-point-extractor.container.tsx +124 -0
- package/src/features/tools/community-pain-point-extractor/community-pain-point-extractor.spec.ts +15 -0
- package/src/features/tools/community-pain-point-extractor/widget/community-pain-point-extractor.tsx +404 -0
- package/src/features/tools/community-pain-point-extractor/widget/constants.ts +41 -0
- package/src/features/tools/community-pain-point-extractor/widget/helpers.ts +76 -0
- package/src/features/tools/community-pain-point-extractor/widget/index.ts +8 -0
- package/src/features/tools/community-pain-point-extractor/widget/progress-panels.tsx +251 -0
- package/src/features/tools/community-pain-point-extractor/widget/result-shell.tsx +478 -0
- package/src/features/tools/community-pain-point-extractor/widget/types.ts +33 -0
- package/src/features/tools/community-post-risk-checker/community-post-risk-checker.package.ts +792 -0
- package/src/features/tools/competitor-analysis/competitor-analysis.container.tsx +136 -0
- package/src/features/tools/competitor-analysis/competitor-analysis.spec.ts +15 -0
- package/src/features/tools/competitor-analysis/widget/competitor-analysis.tsx +241 -0
- package/src/features/tools/competitor-analysis/widget/constants.ts +9 -0
- package/src/features/tools/competitor-analysis/widget/index.ts +7 -0
- package/src/features/tools/competitor-analysis/widget/preview-panels.tsx +60 -0
- package/src/features/tools/competitor-analysis/widget/result-shell.tsx +418 -0
- package/src/features/tools/competitor-analysis/widget/types.ts +13 -0
- package/src/features/tools/disclaimer-generator/disclaimer-generator.package.ts +339 -0
- package/src/features/tools/email-template-generator/email-template-generator.container.tsx +224 -0
- package/src/features/tools/email-template-generator/email-template-generator.spec.ts +14 -0
- package/src/features/tools/email-template-generator/widget/email-template-generator.tsx +358 -0
- package/src/features/tools/email-template-generator/widget/helpers.ts +39 -0
- package/src/features/tools/email-template-generator/widget/index.ts +7 -0
- package/src/features/tools/email-template-generator/widget/preview-panel.tsx +311 -0
- package/src/features/tools/email-template-generator/widget/result-text-block.tsx +7 -0
- package/src/features/tools/email-template-generator/widget/types.ts +24 -0
- package/src/features/tools/gtm-readiness-checklist/gtm-readiness-checklist.container.tsx +75 -0
- package/src/features/tools/gtm-readiness-checklist/gtm-readiness-checklist.spec.ts +15 -0
- package/src/features/tools/gtm-readiness-checklist/widget/gtm-readiness-checklist.tsx +122 -0
- package/src/features/tools/gtm-readiness-checklist/widget/index.ts +7 -0
- package/src/features/tools/investor-matching-planner/investor-matching-planner.package.ts +869 -0
- package/src/features/tools/koko-codex-assistant/koko-codex-assistant.container.tsx +151 -0
- package/src/features/tools/koko-codex-assistant/koko-codex-assistant.spec.ts +14 -0
- package/src/features/tools/koko-codex-assistant/widget/index.ts +7 -0
- package/src/features/tools/koko-codex-assistant/widget/koko-codex-assistant-download.tsx +192 -0
- package/src/features/tools/logo-generator/logo-generator.container.tsx +112 -0
- package/src/features/tools/logo-generator/logo-generator.spec.ts +15 -0
- package/src/features/tools/logo-generator/widget/index.ts +7 -0
- package/src/features/tools/logo-generator/widget/logo-generator.tsx +1244 -0
- package/src/features/tools/market-forecast-report/market-forecast-report.container.tsx +73 -0
- package/src/features/tools/market-forecast-report/market-forecast-report.spec.ts +15 -0
- package/src/features/tools/million-user-growth-test/million-user-growth-test.container.tsx +123 -0
- package/src/features/tools/million-user-growth-test/million-user-growth-test.spec.ts +14 -0
- package/src/features/tools/million-user-growth-test/widget/index.ts +7 -0
- package/src/features/tools/million-user-growth-test/widget/million-user-growth-test.tsx +433 -0
- package/src/features/tools/module-loader.ts +107 -0
- package/src/features/tools/og-image-generator/og-image-generator.container.tsx +86 -0
- package/src/features/tools/og-image-generator/og-image-generator.spec.ts +14 -0
- package/src/features/tools/og-image-generator/widget/constants.ts +38 -0
- package/src/features/tools/og-image-generator/widget/form-fields.tsx +240 -0
- package/src/features/tools/og-image-generator/widget/index.ts +7 -0
- package/src/features/tools/og-image-generator/widget/og-image-generator.tsx +742 -0
- package/src/features/tools/og-image-generator/widget/preview-panel.tsx +305 -0
- package/src/features/tools/og-image-generator/widget/types.ts +1 -0
- package/src/features/tools/package/direct-models.ts +20 -0
- package/src/features/tools/package/form.ts +38 -0
- package/src/features/tools/package/l10n.ts +22 -0
- package/src/features/tools/package/package-container.tsx +285 -0
- package/src/features/tools/package/package-loaders.ts +22 -0
- package/src/features/tools/package/package-registry.ts +36 -0
- package/src/features/tools/package/result-markdown.ts +142 -0
- package/src/features/tools/package/schema.ts +379 -0
- package/src/features/tools/package/to-tool-module.ts +20 -0
- package/src/features/tools/package/to-tool-spec.ts +52 -0
- package/src/features/tools/package/types.ts +381 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-generator.container.tsx +175 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-generator.spec.ts +14 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-library-data.ts +476 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-library.tsx +159 -0
- package/src/features/tools/pitch-deck-generator/widget/ceremony-line.tsx +27 -0
- package/src/features/tools/pitch-deck-generator/widget/constants.ts +27 -0
- package/src/features/tools/pitch-deck-generator/widget/index.ts +7 -0
- package/src/features/tools/pitch-deck-generator/widget/pitch-deck-generator.tsx +763 -0
- package/src/features/tools/pitch-deck-generator/widget/result-helpers.ts +102 -0
- package/src/features/tools/pitch-deck-generator/widget/result-shell.tsx +263 -0
- package/src/features/tools/pitch-deck-generator/widget/slide-frame.tsx +106 -0
- package/src/features/tools/pitch-deck-generator/widget/slide-lightbox.tsx +149 -0
- package/src/features/tools/pitch-deck-generator/widget/style-option.tsx +54 -0
- package/src/features/tools/pitch-deck-generator/widget/types.ts +44 -0
- package/src/features/tools/product-agreement-generator/product-agreement-generator.container.tsx +137 -0
- package/src/features/tools/product-agreement-generator/product-agreement-generator.spec.ts +14 -0
- package/src/features/tools/product-agreement-generator/widget/constants.ts +27 -0
- package/src/features/tools/product-agreement-generator/widget/form-controls.tsx +218 -0
- package/src/features/tools/product-agreement-generator/widget/helpers.ts +68 -0
- package/src/features/tools/product-agreement-generator/widget/index.ts +7 -0
- package/src/features/tools/product-agreement-generator/widget/product-agreement-generator.tsx +671 -0
- package/src/features/tools/product-agreement-generator/widget/result-shell.tsx +473 -0
- package/src/features/tools/product-agreement-generator/widget/types.ts +89 -0
- package/src/features/tools/product-hunt-launch-planner/product-hunt-launch-planner.container.tsx +122 -0
- package/src/features/tools/product-hunt-launch-planner/product-hunt-launch-planner.spec.ts +15 -0
- package/src/features/tools/product-hunt-launch-planner/widget/constants.ts +5 -0
- package/src/features/tools/product-hunt-launch-planner/widget/helpers.ts +44 -0
- package/src/features/tools/product-hunt-launch-planner/widget/index.ts +7 -0
- package/src/features/tools/product-hunt-launch-planner/widget/preview-panel.tsx +143 -0
- package/src/features/tools/product-hunt-launch-planner/widget/product-hunt-launch-planner.tsx +504 -0
- package/src/features/tools/product-hunt-launch-planner/widget/result-shell.tsx +176 -0
- package/src/features/tools/product-hunt-launch-planner/widget/types.ts +20 -0
- package/src/features/tools/product-name-generator/product-name-generator.container.tsx +14 -0
- package/src/features/tools/product-name-generator/product-name-generator.spec.ts +15 -0
- package/src/features/tools/product-name-generator/widget/candidate-card.tsx +273 -0
- package/src/features/tools/product-name-generator/widget/constants.ts +21 -0
- package/src/features/tools/product-name-generator/widget/form-controls.tsx +136 -0
- package/src/features/tools/product-name-generator/widget/helpers.ts +41 -0
- package/src/features/tools/product-name-generator/widget/index.ts +7 -0
- package/src/features/tools/product-name-generator/widget/product-name-generator.tsx +776 -0
- package/src/features/tools/product-name-generator/widget/types.ts +36 -0
- package/src/features/tools/product-positioning-analyzer/product-positioning-analyzer.package.ts +801 -0
- package/src/features/tools/product-poster-generator/product-poster-generator.container.tsx +14 -0
- package/src/features/tools/product-poster-generator/product-poster-generator.spec.ts +15 -0
- package/src/features/tools/product-poster-generator/widget/constants.ts +125 -0
- package/src/features/tools/product-poster-generator/widget/form-controls.tsx +204 -0
- package/src/features/tools/product-poster-generator/widget/helpers.ts +155 -0
- package/src/features/tools/product-poster-generator/widget/index.ts +7 -0
- package/src/features/tools/product-poster-generator/widget/product-poster-generator.tsx +663 -0
- package/src/features/tools/product-poster-generator/widget/result-shell.tsx +12 -0
- package/src/features/tools/product-poster-generator/widget/types.ts +83 -0
- package/src/features/tools/product-ui-generator/product-ui-generator.container.tsx +116 -0
- package/src/features/tools/product-ui-generator/product-ui-generator.spec.ts +14 -0
- package/src/features/tools/product-ui-generator/widget/constants.ts +18 -0
- package/src/features/tools/product-ui-generator/widget/helpers.ts +11 -0
- package/src/features/tools/product-ui-generator/widget/index.ts +7 -0
- package/src/features/tools/product-ui-generator/widget/preview-panels.tsx +73 -0
- package/src/features/tools/product-ui-generator/widget/product-ui-generator.tsx +304 -0
- package/src/features/tools/product-ui-generator/widget/result-shell.tsx +118 -0
- package/src/features/tools/product-ui-generator/widget/types.ts +9 -0
- package/src/features/tools/reddit-pain-point-finder/reddit-pain-point-finder.container.tsx +113 -0
- package/src/features/tools/reddit-pain-point-finder/reddit-pain-point-finder.spec.ts +15 -0
- package/src/features/tools/reddit-pain-point-finder/widget/constants.ts +5 -0
- package/src/features/tools/reddit-pain-point-finder/widget/index.ts +7 -0
- package/src/features/tools/reddit-pain-point-finder/widget/preview-panels.tsx +73 -0
- package/src/features/tools/reddit-pain-point-finder/widget/reddit-pain-point-finder.tsx +281 -0
- package/src/features/tools/reddit-pain-point-finder/widget/result-shell.tsx +203 -0
- package/src/features/tools/reddit-pain-point-finder/widget/types.ts +15 -0
- package/src/features/tools/registry.ts +288 -0
- package/src/features/tools/runtime-registry.ts +186 -0
- package/src/features/tools/shared/create-guide-stack-container.tsx +176 -0
- package/src/features/tools/shared/create-standard-landing-container.tsx +163 -0
- package/src/features/tools/shared/tool-content-sections.tsx +659 -0
- package/src/features/tools/shared/tool-cta.tsx +66 -0
- package/src/features/tools/shared/tool-draft-view.tsx +53 -0
- package/src/features/tools/shared/tool-guide-section.tsx +191 -0
- package/src/features/tools/shared/tool-handoff.tsx +38 -0
- package/src/features/tools/shared/tool-mcp-badge.tsx +23 -0
- package/src/features/tools/shared/tool-message-translator.ts +37 -0
- package/src/features/tools/shared/tool-page-shell.tsx +348 -0
- package/src/features/tools/shared/tool-standard-generation-steps.tsx +52 -0
- package/src/features/tools/shared/tool-standard-landing-sections.tsx +447 -0
- package/src/features/tools/shared/tool-ui-registry.ts +237 -0
- package/src/features/tools/shared/tool-widget-slot.tsx +29 -0
- package/src/features/tools/slogan-generator/slogan-generator.package.ts +641 -0
- package/src/features/tools/social-listening-research-report/social-listening-research-report.container.tsx +124 -0
- package/src/features/tools/social-listening-research-report/social-listening-research-report.spec.ts +15 -0
- package/src/features/tools/social-listening-research-report/widget/constants.ts +4 -0
- package/src/features/tools/social-listening-research-report/widget/index.ts +7 -0
- package/src/features/tools/social-listening-research-report/widget/preview-panels.tsx +73 -0
- package/src/features/tools/social-listening-research-report/widget/result-shell.tsx +216 -0
- package/src/features/tools/social-listening-research-report/widget/social-listening-research-report.tsx +303 -0
- package/src/features/tools/social-listening-research-report/widget/types.ts +15 -0
- package/src/features/tools/social-platform-asset-adapter/social-platform-asset-adapter.container.tsx +123 -0
- package/src/features/tools/social-platform-asset-adapter/social-platform-asset-adapter.spec.ts +15 -0
- package/src/features/tools/social-platform-asset-adapter/widget/constants.ts +43 -0
- package/src/features/tools/social-platform-asset-adapter/widget/helpers.ts +249 -0
- package/src/features/tools/social-platform-asset-adapter/widget/index.ts +7 -0
- package/src/features/tools/social-platform-asset-adapter/widget/result-shell.tsx +350 -0
- package/src/features/tools/social-platform-asset-adapter/widget/section-heading.tsx +18 -0
- package/src/features/tools/social-platform-asset-adapter/widget/social-platform-asset-adapter.tsx +641 -0
- package/src/features/tools/social-platform-asset-adapter/widget/types.ts +40 -0
- package/src/features/tools/social-profile-kit/social-profile-kit.container.tsx +177 -0
- package/src/features/tools/social-profile-kit/social-profile-kit.spec.ts +15 -0
- package/src/features/tools/social-profile-kit/widget/context-editor.tsx +171 -0
- package/src/features/tools/social-profile-kit/widget/generation-runtime.ts +281 -0
- package/src/features/tools/social-profile-kit/widget/index.ts +7 -0
- package/src/features/tools/social-profile-kit/widget/input-panel.tsx +294 -0
- package/src/features/tools/social-profile-kit/widget/platform-dock.tsx +115 -0
- package/src/features/tools/social-profile-kit/widget/profile-canvas.tsx +318 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/bluesky-preview.tsx +188 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/facebook-preview.tsx +168 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/index.ts +1 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/instagram-preview.tsx +278 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/linkedin-preview.tsx +358 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/profile-preview.tsx +348 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/shared.tsx +391 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/threads-preview.tsx +148 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/tiktok-preview.tsx +319 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/x-preview.tsx +341 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/youtube-preview.tsx +297 -0
- package/src/features/tools/social-profile-kit/widget/social-profile-kit-generator.tsx +1059 -0
- package/src/features/tools/social-profile-kit/widget/types.ts +104 -0
- package/src/features/tools/spec-registry.ts +158 -0
- package/src/features/tools/startup-idea-research/startup-idea-research.container.tsx +111 -0
- package/src/features/tools/startup-idea-research/startup-idea-research.spec.ts +15 -0
- package/src/features/tools/startup-idea-research/widget/constants.ts +11 -0
- package/src/features/tools/startup-idea-research/widget/index.ts +7 -0
- package/src/features/tools/startup-idea-research/widget/preview-panels.tsx +67 -0
- package/src/features/tools/startup-idea-research/widget/result-shell.tsx +323 -0
- package/src/features/tools/startup-idea-research/widget/startup-idea-research.tsx +272 -0
- package/src/features/tools/startup-idea-research/widget/types.ts +21 -0
- package/src/features/tools/tarot-reading/tarot-reading.container.tsx +412 -0
- package/src/features/tools/tarot-reading/tarot-reading.spec.ts +15 -0
- package/src/features/tools/tarot-reading/widget/cards.tsx +152 -0
- package/src/features/tools/tarot-reading/widget/constants.ts +69 -0
- package/src/features/tools/tarot-reading/widget/deck-view.tsx +86 -0
- package/src/features/tools/tarot-reading/widget/deck.ts +86 -0
- package/src/features/tools/tarot-reading/widget/index.ts +7 -0
- package/src/features/tools/tarot-reading/widget/landing-view.tsx +209 -0
- package/src/features/tools/tarot-reading/widget/reading-copy.tsx +138 -0
- package/src/features/tools/tarot-reading/widget/reading-view.tsx +189 -0
- package/src/features/tools/tarot-reading/widget/reveal-view.tsx +50 -0
- package/src/features/tools/tarot-reading/widget/ritual-view.tsx +276 -0
- package/src/features/tools/tarot-reading/widget/tarot-reading.tsx +262 -0
- package/src/features/tools/tarot-reading/widget/types.ts +22 -0
- package/src/features/tools/twitter-gif-downloader/twitter-gif-downloader.container.tsx +114 -0
- package/src/features/tools/twitter-gif-downloader/twitter-gif-downloader.spec.ts +14 -0
- package/src/features/tools/twitter-gif-downloader/widget/index.ts +7 -0
- package/src/features/tools/twitter-gif-downloader/widget/twitter-gif-downloader.tsx +351 -0
- package/src/features/tools/types.ts +68 -0
- package/src/features/tools/user-interview-guide-generator/user-interview-guide-generator.package.ts +774 -0
- package/src/features/tools/user-interview-insight-report-generator/user-interview-insight-report-generator.container.tsx +23 -0
- package/src/features/tools/user-interview-insight-report-generator/user-interview-insight-report-generator.spec.ts +14 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/constants.ts +8 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/helpers.ts +4 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/index.ts +7 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/preview-panels.tsx +55 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/result-shell.tsx +122 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/types.ts +16 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/user-interview-insight-report-generator.tsx +293 -0
- package/src/features/tools/user-interview-record-generator/user-interview-record-generator.container.tsx +18 -0
- package/src/features/tools/user-interview-record-generator/user-interview-record-generator.spec.ts +14 -0
- package/src/features/tools/user-interview-record-generator/widget/constants.ts +9 -0
- package/src/features/tools/user-interview-record-generator/widget/helpers.ts +4 -0
- package/src/features/tools/user-interview-record-generator/widget/index.ts +7 -0
- package/src/features/tools/user-interview-record-generator/widget/preview-panels.tsx +48 -0
- package/src/features/tools/user-interview-record-generator/widget/result-shell.tsx +128 -0
- package/src/features/tools/user-interview-record-generator/widget/types.ts +16 -0
- package/src/features/tools/user-interview-record-generator/widget/user-interview-record-generator.tsx +305 -0
- package/src/features/tools/utm-builder/utm-builder.package.ts +846 -0
- package/src/features/tools/widget-registry.ts +73 -0
- package/src/generated/mcp-tools-registry.json +17 -0
- package/src/host/client-proxy.test.ts +33 -0
- package/src/host/client.ts +678 -0
- package/src/host/server.ts +119 -0
- package/src/i18n/client.ts +11 -0
- package/src/i18n/locale-fallback.ts +38 -0
- package/src/i18n/locale.ts +18 -0
- package/src/i18n/messages/en/page/tools.ts +124 -0
- package/src/i18n/messages/en/tools/app-icon-resizer.ts +244 -0
- package/src/i18n/messages/en/tools/app-store-screenshot-generator.ts +145 -0
- package/src/i18n/messages/en/tools/build-in-public-story-generator.ts +229 -0
- package/src/i18n/messages/en/tools/cold-start-channel-selector.ts +423 -0
- package/src/i18n/messages/en/tools/commercial-bp-generator.ts +304 -0
- package/src/i18n/messages/en/tools/community-feedback-inbox.ts +218 -0
- package/src/i18n/messages/en/tools/community-pain-point-extractor.ts +230 -0
- package/src/i18n/messages/en/tools/community-post-risk-checker.ts +209 -0
- package/src/i18n/messages/en/tools/competitor-analysis.ts +197 -0
- package/src/i18n/messages/en/tools/email-template-generator.ts +302 -0
- package/src/i18n/messages/en/tools/engine.ts +69 -0
- package/src/i18n/messages/en/tools/gtm-readiness-checklist.ts +166 -0
- package/src/i18n/messages/en/tools/index.ts +73 -0
- package/src/i18n/messages/en/tools/koko-codex-assistant.ts +171 -0
- package/src/i18n/messages/en/tools/logo-generator.ts +173 -0
- package/src/i18n/messages/en/tools/market-forecast-report.ts +228 -0
- package/src/i18n/messages/en/tools/million-user-growth-test.ts +386 -0
- package/src/i18n/messages/en/tools/og-image-generator.ts +172 -0
- package/src/i18n/messages/en/tools/pitch-deck-generator.ts +358 -0
- package/src/i18n/messages/en/tools/product-agreement-generator.ts +411 -0
- package/src/i18n/messages/en/tools/product-hunt-launch-planner.ts +272 -0
- package/src/i18n/messages/en/tools/product-name-generator.ts +383 -0
- package/src/i18n/messages/en/tools/product-poster-generator.ts +294 -0
- package/src/i18n/messages/en/tools/product-ui-generator.ts +234 -0
- package/src/i18n/messages/en/tools/reddit-pain-point-finder.ts +163 -0
- package/src/i18n/messages/en/tools/shared.ts +24 -0
- package/src/i18n/messages/en/tools/social-listening-research-report.ts +185 -0
- package/src/i18n/messages/en/tools/social-media-profile-generator.ts +22 -0
- package/src/i18n/messages/en/tools/social-platform-asset-adapter.ts +287 -0
- package/src/i18n/messages/en/tools/social-profile-kit.ts +150 -0
- package/src/i18n/messages/en/tools/startup-idea-research.ts +170 -0
- package/src/i18n/messages/en/tools/tarot-reading.ts +230 -0
- package/src/i18n/messages/en/tools/twitter-gif-downloader.ts +145 -0
- package/src/i18n/messages/en/tools/user-interview-insight-report-generator.ts +242 -0
- package/src/i18n/messages/en/tools/user-interview-record-generator.ts +244 -0
- package/src/i18n/messages/en/tools-ui.ts +704 -0
- package/src/i18n/messages/zh/page/tools.ts +124 -0
- package/src/i18n/messages/zh/tools/app-icon-resizer.ts +242 -0
- package/src/i18n/messages/zh/tools/app-store-screenshot-generator.ts +145 -0
- package/src/i18n/messages/zh/tools/build-in-public-story-generator.ts +230 -0
- package/src/i18n/messages/zh/tools/cold-start-channel-selector.ts +422 -0
- package/src/i18n/messages/zh/tools/commercial-bp-generator.ts +302 -0
- package/src/i18n/messages/zh/tools/community-feedback-inbox.ts +217 -0
- package/src/i18n/messages/zh/tools/community-pain-point-extractor.ts +230 -0
- package/src/i18n/messages/zh/tools/community-post-risk-checker.ts +200 -0
- package/src/i18n/messages/zh/tools/competitor-analysis.ts +192 -0
- package/src/i18n/messages/zh/tools/email-template-generator.ts +302 -0
- package/src/i18n/messages/zh/tools/engine.ts +68 -0
- package/src/i18n/messages/zh/tools/gtm-readiness-checklist.ts +166 -0
- package/src/i18n/messages/zh/tools/index.ts +73 -0
- package/src/i18n/messages/zh/tools/koko-codex-assistant.ts +170 -0
- package/src/i18n/messages/zh/tools/logo-generator.ts +172 -0
- package/src/i18n/messages/zh/tools/market-forecast-report.ts +228 -0
- package/src/i18n/messages/zh/tools/million-user-growth-test.ts +385 -0
- package/src/i18n/messages/zh/tools/og-image-generator.ts +173 -0
- package/src/i18n/messages/zh/tools/pitch-deck-generator.ts +358 -0
- package/src/i18n/messages/zh/tools/product-agreement-generator.ts +401 -0
- package/src/i18n/messages/zh/tools/product-hunt-launch-planner.ts +267 -0
- package/src/i18n/messages/zh/tools/product-name-generator.ts +383 -0
- package/src/i18n/messages/zh/tools/product-poster-generator.ts +282 -0
- package/src/i18n/messages/zh/tools/product-ui-generator.ts +234 -0
- package/src/i18n/messages/zh/tools/reddit-pain-point-finder.ts +162 -0
- package/src/i18n/messages/zh/tools/shared.ts +24 -0
- package/src/i18n/messages/zh/tools/social-listening-research-report.ts +181 -0
- package/src/i18n/messages/zh/tools/social-media-profile-generator.ts +22 -0
- package/src/i18n/messages/zh/tools/social-platform-asset-adapter.ts +284 -0
- package/src/i18n/messages/zh/tools/social-profile-kit.ts +150 -0
- package/src/i18n/messages/zh/tools/startup-idea-research.ts +165 -0
- package/src/i18n/messages/zh/tools/tarot-reading.ts +228 -0
- package/src/i18n/messages/zh/tools/twitter-gif-downloader.ts +138 -0
- package/src/i18n/messages/zh/tools/user-interview-insight-report-generator.ts +224 -0
- package/src/i18n/messages/zh/tools/user-interview-record-generator.ts +226 -0
- package/src/i18n/messages/zh/tools-ui.ts +684 -0
- package/src/i18n/messages/zh-tw/page/tools.ts +115 -0
- package/src/i18n/messages/zh-tw/tools/app-icon-resizer.ts +242 -0
- package/src/i18n/messages/zh-tw/tools/app-store-screenshot-generator.ts +145 -0
- package/src/i18n/messages/zh-tw/tools/build-in-public-story-generator.ts +230 -0
- package/src/i18n/messages/zh-tw/tools/cold-start-channel-selector.ts +440 -0
- package/src/i18n/messages/zh-tw/tools/commercial-bp-generator.ts +302 -0
- package/src/i18n/messages/zh-tw/tools/community-feedback-inbox.ts +217 -0
- package/src/i18n/messages/zh-tw/tools/community-pain-point-extractor.ts +230 -0
- package/src/i18n/messages/zh-tw/tools/community-post-risk-checker.ts +200 -0
- package/src/i18n/messages/zh-tw/tools/competitor-analysis.ts +192 -0
- package/src/i18n/messages/zh-tw/tools/email-template-generator.ts +302 -0
- package/src/i18n/messages/zh-tw/tools/engine.ts +68 -0
- package/src/i18n/messages/zh-tw/tools/gtm-readiness-checklist.ts +166 -0
- package/src/i18n/messages/zh-tw/tools/index.ts +73 -0
- package/src/i18n/messages/zh-tw/tools/koko-codex-assistant.ts +170 -0
- package/src/i18n/messages/zh-tw/tools/logo-generator.ts +71 -0
- package/src/i18n/messages/zh-tw/tools/market-forecast-report.ts +228 -0
- package/src/i18n/messages/zh-tw/tools/million-user-growth-test.ts +385 -0
- package/src/i18n/messages/zh-tw/tools/og-image-generator.ts +173 -0
- package/src/i18n/messages/zh-tw/tools/pitch-deck-generator.ts +358 -0
- package/src/i18n/messages/zh-tw/tools/product-agreement-generator.ts +401 -0
- package/src/i18n/messages/zh-tw/tools/product-hunt-launch-planner.ts +267 -0
- package/src/i18n/messages/zh-tw/tools/product-name-generator.ts +383 -0
- package/src/i18n/messages/zh-tw/tools/product-poster-generator.ts +282 -0
- package/src/i18n/messages/zh-tw/tools/product-ui-generator.ts +234 -0
- package/src/i18n/messages/zh-tw/tools/reddit-pain-point-finder.ts +162 -0
- package/src/i18n/messages/zh-tw/tools/shared.ts +24 -0
- package/src/i18n/messages/zh-tw/tools/social-listening-research-report.ts +181 -0
- package/src/i18n/messages/zh-tw/tools/social-media-profile-generator.ts +22 -0
- package/src/i18n/messages/zh-tw/tools/social-platform-asset-adapter.ts +284 -0
- package/src/i18n/messages/zh-tw/tools/social-profile-kit.ts +150 -0
- package/src/i18n/messages/zh-tw/tools/startup-idea-research.ts +165 -0
- package/src/i18n/messages/zh-tw/tools/tarot-reading.ts +228 -0
- package/src/i18n/messages/zh-tw/tools/twitter-gif-downloader.ts +138 -0
- package/src/i18n/messages/zh-tw/tools/user-interview-insight-report-generator.ts +224 -0
- package/src/i18n/messages/zh-tw/tools/user-interview-record-generator.ts +226 -0
- package/src/i18n/messages/zh-tw/tools-ui.ts +525 -0
- package/src/index.ts +15 -0
- package/src/lib/activity-task-handoff.ts +404 -0
- package/src/lib/api/errors.ts +39 -0
- package/src/lib/app-origin.ts +30 -0
- package/src/lib/fact-claim-contract.ts +68 -0
- package/src/lib/fake-delay.ts +3 -0
- package/src/lib/file/download.ts +10 -0
- package/src/lib/routing/locale-paths.ts +27 -0
- package/src/lib/seo-meta.ts +3 -0
- package/src/lib/tools/app-icon-resizer-schema.ts +191 -0
- package/src/lib/tools/app-store-screenshot-generator-schema.ts +185 -0
- package/src/lib/tools/build-in-public-story-generator-schema.ts +67 -0
- package/src/lib/tools/build-in-public-story-generator.format.ts +507 -0
- package/src/lib/tools/cold-start-channel-selector-schema.ts +147 -0
- package/src/lib/tools/commercial-bp-generator-schema.ts +222 -0
- package/src/lib/tools/community-feedback-inbox-schema.ts +125 -0
- package/src/lib/tools/community-feedback-inbox.format.ts +764 -0
- package/src/lib/tools/community-pain-point-extractor-schema.ts +166 -0
- package/src/lib/tools/community-post-risk-checker-schema.ts +99 -0
- package/src/lib/tools/community-post-risk-checker.format.ts +557 -0
- package/src/lib/tools/competitor-analysis-schema.ts +144 -0
- package/src/lib/tools/draft-preview-access.ts +3 -0
- package/src/lib/tools/draft-store.ts +69 -0
- package/src/lib/tools/email-template-generator-schema.ts +124 -0
- package/src/lib/tools/gtm-checklist-copy.ts +57 -0
- package/src/lib/tools/gtm-checklist-structure.ts +37 -0
- package/src/lib/tools/image-download.ts +68 -0
- package/src/lib/tools/input-quality.ts +97 -0
- package/src/lib/tools/logo-generator-schema.ts +224 -0
- package/src/lib/tools/market-forecast-report-schema.ts +299 -0
- package/src/lib/tools/mcp-registry.ts +16 -0
- package/src/lib/tools/mcp-types.ts +18 -0
- package/src/lib/tools/million-user-growth-test-schema.ts +49 -0
- package/src/lib/tools/million-user-growth-test.ts +181 -0
- package/src/lib/tools/og-image-generator-render.ts +448 -0
- package/src/lib/tools/og-image-generator-schema.ts +140 -0
- package/src/lib/tools/ops-catalog.ts +102 -0
- package/src/lib/tools/pitch-deck-generator-schema.ts +182 -0
- package/src/lib/tools/pitch-deck-package.ts +0 -0
- package/src/lib/tools/product-agreement-generator-schema.ts +168 -0
- package/src/lib/tools/product-hunt-launch-planner-schema.ts +136 -0
- package/src/lib/tools/product-hunt-launch-planner.format.ts +72 -0
- package/src/lib/tools/product-name-generator-schema.ts +563 -0
- package/src/lib/tools/product-poster-generator-schema.ts +215 -0
- package/src/lib/tools/product-ui-generator-schema.ts +157 -0
- package/src/lib/tools/reddit-pain-point-finder-schema.ts +88 -0
- package/src/lib/tools/resolve-tool-locale-copy.ts +75 -0
- package/src/lib/tools/slug.ts +60 -0
- package/src/lib/tools/social-listening-research-report-schema.ts +105 -0
- package/src/lib/tools/social-platform-asset-adapter-schema.ts +152 -0
- package/src/lib/tools/social-profile-kit.constants.ts +12 -0
- package/src/lib/tools/social-profile-kit.generation.ts +257 -0
- package/src/lib/tools/social-profile-kit.input.ts +290 -0
- package/src/lib/tools/social-profile-kit.manual.ts +481 -0
- package/src/lib/tools/social-profile-kit.package.ts +220 -0
- package/src/lib/tools/social-profile-kit.schema.ts +328 -0
- package/src/lib/tools/startup-idea-research-schema.ts +107 -0
- package/src/lib/tools/tarot-imagery.ts +89 -0
- package/src/lib/tools/tarot-reading.ts +1044 -0
- package/src/lib/tools/tool-message-keys.ts +18 -0
- package/src/lib/tools/types.ts +32 -0
- package/src/lib/tools/user-interview.format.ts +147 -0
- package/src/lib/tools/user-interview.generation.ts +670 -0
- package/src/lib/tools/user-interview.schema.ts +192 -0
- package/src/lib/zip.ts +106 -0
- package/src/services/tools/handlers/gtm-readiness-checklist.ts +71 -0
- package/src/services/tools/handlers/types.ts +7 -0
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
const pitchDeckGenerator = {
|
|
2
|
+
meta: {
|
|
3
|
+
title: "AI 融资 BP 生成器",
|
|
4
|
+
description: "输入产品官网或手动填写产品背景,在线 Agent 按投资人叙事先生成 Pitch Deck 大纲,再逐页生成 16:9 图片版融资 BP,支持风格方向、单页下载和整套打包下载。",
|
|
5
|
+
intro: "把产品信息组织成投资人能看懂的融资叙事:问题、方案、市场、Traction、壁垒、团队和融资诉求,逐页生成可下载的图片版 Pitch Deck。",
|
|
6
|
+
category: "商业化工具",
|
|
7
|
+
keywords: [
|
|
8
|
+
"AI 融资 BP 生成器",
|
|
9
|
+
"Pitch Deck 生成器",
|
|
10
|
+
"路演 PPT 生成",
|
|
11
|
+
"投资人 BP",
|
|
12
|
+
],
|
|
13
|
+
inputSignal: "产品 URL 或产品背景、融资阶段、风格方向",
|
|
14
|
+
outputSignal: "投资人叙事大纲、逐页图片、来源、QA 和下载包",
|
|
15
|
+
boundarySignal: "融资数字和图片文字需要人工复核",
|
|
16
|
+
},
|
|
17
|
+
guide: {
|
|
18
|
+
heroImageAlt: "产品信息被组织成投资人叙事大纲和图片版融资 BP 页面的视觉图。",
|
|
19
|
+
workspaceHeading: "工具工作台",
|
|
20
|
+
workspaceHint:
|
|
21
|
+
"输入产品官网或手动填写产品背景,Agent 先返回投资人叙事大纲,再按顺序逐页生成图片版融资 BP。",
|
|
22
|
+
workspaceBadge: "图片版融资 BP",
|
|
23
|
+
outputs: "你会得到什么",
|
|
24
|
+
outputsIntro:
|
|
25
|
+
"结果不是一段商业计划书文字,而是一套按投资人阅读习惯组织、可下载、可继续修改的 Pitch Deck 制作包。",
|
|
26
|
+
outputItems: [
|
|
27
|
+
{
|
|
28
|
+
title: "投资人叙事大纲",
|
|
29
|
+
body: "先看到页面清单、每页核心判断和信息密度,确认叙事按问题、市场、产品、Traction、团队和融资诉求展开。",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
title: "逐页图片结果",
|
|
33
|
+
body: "每生成一页就按顺序展示一页,方便随时检查封面、市场页和融资诉求页是否符合预期。",
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
title: "融资阶段适配",
|
|
37
|
+
body: "选择 Pre-seed、种子轮或 A 轮后,叙事重心会在愿景深度和数据 Traction 之间自动调整。",
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
title: "来源与 QA 清单",
|
|
41
|
+
body: "市场数据来源、图片文字风险、缺失信息和需要人工复核的融资数字会单独列出。",
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
title: "单页下载",
|
|
45
|
+
body: "每张图片都有独立下载入口,便于单页重绘、发给合伙人复核或替换进已有材料。",
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
title: "整套打包下载",
|
|
49
|
+
body: "最终结果支持整套下载,文件按产品名、页码和页面主题命名,不会出现随机乱码文件名。",
|
|
50
|
+
},
|
|
51
|
+
],
|
|
52
|
+
pipelineVisualAlt: "融资叙事大纲、来源、QA 和最终图片包的制作流程视觉图。",
|
|
53
|
+
narrative: "投资人会在 BP 里找什么",
|
|
54
|
+
narrativeIntro:
|
|
55
|
+
"投资人平均只花 3 分钟看一份 BP。生成的每一页都对应一个投资人必问的问题,让他们能顺着叙事往下翻。",
|
|
56
|
+
narrativeSteps: [
|
|
57
|
+
{
|
|
58
|
+
index: "01 - 02",
|
|
59
|
+
title: "问题与方案",
|
|
60
|
+
body: "真实痛点有多深,你的解法为什么成立,而不是功能清单。",
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
index: "03 - 04",
|
|
64
|
+
title: "为什么是现在",
|
|
65
|
+
body: "市场时机和可引用的市场规模证据,不写无来源的大数字。",
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
index: "05 - 07",
|
|
69
|
+
title: "产品与 Traction",
|
|
70
|
+
body: "产品当前能力、关键里程碑和已有信号,按融资阶段调整比重。",
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
index: "08 - 09",
|
|
74
|
+
title: "商业模式与壁垒",
|
|
75
|
+
body: "钱从哪里来,凭什么别人抄不走,用具体机制而不是口号。",
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
index: "10",
|
|
79
|
+
title: "团队与融资诉求",
|
|
80
|
+
body: "为什么是你们,本轮要多少、用在哪里;没有真实数字时保留结构化占位并提示补充。",
|
|
81
|
+
},
|
|
82
|
+
],
|
|
83
|
+
library: "知名产品融资 BP 原件案例库",
|
|
84
|
+
libraryIntro:
|
|
85
|
+
"Airbnb、Uber、LinkedIn 这些产品当年的融资 BP 原件如今都已公开:有的由创始人亲自发布,有的收录在投资档案库,有的经法律程序披露。写你自己的 Pitch Deck 之前,先看看这些真实拿到钱的商业计划书长什么样。",
|
|
86
|
+
libraryOutro:
|
|
87
|
+
"以上案例均为可查证的公开原件,不收录网友重制版;金额与轮次以来源标注为准。中国公司的原版融资 BP 极少公开,阿里巴巴、京东、小米、滴滴等经典融资故事我们会以文字形式在后续版本补充。",
|
|
88
|
+
standards: "好的融资 BP 生成器应该具备什么",
|
|
89
|
+
standardsIntro:
|
|
90
|
+
"真正有用的 Pitch Deck 工具不能只把模板填满,它要同时处理投资人叙事、数据证据、视觉统一和交付可用性。",
|
|
91
|
+
standardsVisualAlt: "成套融资 BP、证据页、QA 清单和导出文件包的视觉图。",
|
|
92
|
+
standardsItems: [
|
|
93
|
+
{
|
|
94
|
+
title: "叙事完整",
|
|
95
|
+
body: "问题、市场、产品、壁垒、团队、诉求一页不缺,顺序符合投资人阅读预期。",
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
title: "数据可信",
|
|
99
|
+
body: "市场和趋势数字必须能追溯来源;没有依据的融资金额和客户数据不会被编造。",
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
title: "一页一个判断",
|
|
103
|
+
body: "内容放不下就拆页,而不是缩小字号;投资人 5 秒内能抓住每页重点。",
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
title: "视觉成套",
|
|
107
|
+
body: "颜色、标题层级和风格方向保持一致,看起来是一套材料而不是拼贴海报。",
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
title: "渐进可感知",
|
|
111
|
+
body: "先看到大纲和当前处理阶段,再看到图片按顺序逐页出现,等待过程不焦虑。",
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
title: "交付可用",
|
|
115
|
+
body: "单页可下载、整套可打包、文件名规范,拿到手就能发给投资人或继续精修。",
|
|
116
|
+
},
|
|
117
|
+
],
|
|
118
|
+
boundary: "支持范围、边界和失败恢复",
|
|
119
|
+
boundaryIntro:
|
|
120
|
+
"融资材料会直接影响对外承诺,生成结果应被当作高质量初稿,发给投资人前必须完成人工复核。",
|
|
121
|
+
boundaryVisualAlt: "融资 BP 页面上的市场数字、来源和声明被人工复核的视觉图。",
|
|
122
|
+
boundaryGroups: [
|
|
123
|
+
{
|
|
124
|
+
title: "适合处理",
|
|
125
|
+
items: [
|
|
126
|
+
"互联网产品、SaaS、AI Agent、开发者工具、消费 App 和早期创业项目的融资 BP。",
|
|
127
|
+
"天使轮、Pre-seed、种子轮到 A 轮的路演材料和 Demo Day 展示。",
|
|
128
|
+
"已有官网、产品说明或清晰产品背景,希望快速得到第一版可迭代材料的团队。",
|
|
129
|
+
],
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
title: "需要人工复核",
|
|
133
|
+
items: [
|
|
134
|
+
"融资金额、估值、财务预测、用户数据、客户案例和市场规模数字。",
|
|
135
|
+
"图片里的中文文字、数字、Logo 和品牌元素,生图模型可能出现改写或错字。",
|
|
136
|
+
"对投资人披露的敏感信息边界,例如未确认合作、内部数据和竞争策略。",
|
|
137
|
+
],
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
title: "失败时怎么恢复",
|
|
141
|
+
items: [
|
|
142
|
+
"如果大纲太泛,补充目标用户、当前进展、差异化和已有数据后重新生成。",
|
|
143
|
+
"如果图片风格不稳,选择一个风格方向,并在高级设置里写清品牌规则和禁用元素。",
|
|
144
|
+
"如果某一页不满意,用修改指令要求单页重绘,已完成的页面不会丢失。",
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
],
|
|
148
|
+
useCases: "适用场景",
|
|
149
|
+
useCaseVisualAlt: "粗略产品笔记被整理成可发送给投资人的图片版融资 BP 的视觉图。",
|
|
150
|
+
useCaseItems: [
|
|
151
|
+
{
|
|
152
|
+
title: "种子轮路演准备",
|
|
153
|
+
body: "把产品想法和早期进展整理成投资人能快速理解的融资叙事,作为第一版路演材料。",
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
title: "Demo Day 展示",
|
|
157
|
+
body: "在孵化器或加速器 Demo Day 前,快速产出结构完整、视觉统一的展示 deck。",
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
title: "发给投资人的第一份材料",
|
|
161
|
+
body: "冷启动接触投资人时,用一套可信、清晰的图片 BP 代替长文字介绍。",
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
title: "孵化器批量辅导",
|
|
165
|
+
body: "帮助不同基础的团队先拉齐 BP 下限,再集中精力打磨证据、故事和关键页。",
|
|
166
|
+
},
|
|
167
|
+
],
|
|
168
|
+
faq: "常见问题",
|
|
169
|
+
faqItems: [
|
|
170
|
+
{
|
|
171
|
+
question: "融资金额和估值会被编造吗?",
|
|
172
|
+
answer:
|
|
173
|
+
"不会。没有提供真实数字时,融资诉求页会保留结构化占位,并在 missingInfo 中提示需要补充;工具不会虚构金额、估值或客户数据。",
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
question: "和 AI 商业 BP 生成器有什么区别?",
|
|
177
|
+
answer:
|
|
178
|
+
"这个工具专注融资单一场景,固定投资人叙事结构,并按融资阶段调整重心。如果你需要招募、发布或综合商业材料,建议使用 AI 商业 BP 生成器。",
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
question: "为什么先生成大纲,再生成图片?",
|
|
182
|
+
answer:
|
|
183
|
+
"投资人先看叙事再看视觉。先确认页面结构和每页核心判断,能避免生成漂亮但讲不清楚的页面。",
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
question: "只输入产品官网够吗?",
|
|
187
|
+
answer:
|
|
188
|
+
"可以先用 URL 模式。如果官网信息不足,结果会在 missingInfo 里提示需要补充 Traction、团队背景或融资诉求,再用修改指令补齐。",
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
question: "图片里的文字可以直接用吗?",
|
|
192
|
+
answer:
|
|
193
|
+
"需要复核。生图模型可能改写文字、数字或标点,市场数据页和融资诉求页尤其要人工检查后再发给投资人。",
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
question: "会生成可编辑 PPT 吗?",
|
|
197
|
+
answer:
|
|
198
|
+
"这一版输出图片版 Pitch Deck,不承诺 HTML 或可编辑 PPT。可以用单页重绘持续迭代,后续再扩展导出格式。",
|
|
199
|
+
},
|
|
200
|
+
],
|
|
201
|
+
ctaTitle: "还需要招募或发布材料?",
|
|
202
|
+
ctaPrimary: "生成综合商业 BP",
|
|
203
|
+
ctaSecondary: "返回全部工具",
|
|
204
|
+
ctaHint:
|
|
205
|
+
"融资 BP 之外,综合商业 BP 生成器可以覆盖招募、发布和商业合作等更多受众场景。",
|
|
206
|
+
},
|
|
207
|
+
library: {
|
|
208
|
+
openDeck: "查看 {company} 的融资 BP",
|
|
209
|
+
formerName: "当时名为 {name}",
|
|
210
|
+
slideCount: "{count} 页",
|
|
211
|
+
pagesComingSoon: "原件页面整理上线中",
|
|
212
|
+
attributionNote:
|
|
213
|
+
"该 BP 为公开原件,版权归原公司所有;本页仅作学习参考,完整原件请访问来源链接。",
|
|
214
|
+
viewSource: "查看公开来源",
|
|
215
|
+
download: "下载 BP",
|
|
216
|
+
pageAlt: "{company} 融资 BP 第 {page} 页",
|
|
217
|
+
},
|
|
218
|
+
widget: {
|
|
219
|
+
urlMode: "输入 URL",
|
|
220
|
+
manualMode: "手动输入",
|
|
221
|
+
productUrlLabel: "产品官网 URL",
|
|
222
|
+
productUrlPlaceholder: "https://your-product.com",
|
|
223
|
+
productNameLabel: "产品名称",
|
|
224
|
+
productNamePlaceholder: "例如 Tomako",
|
|
225
|
+
productContextLabel: "产品背景",
|
|
226
|
+
productContextPlaceholder:
|
|
227
|
+
"描述产品功能、目标用户、当前进展、差异化、已有数据和这轮融资想解决什么。",
|
|
228
|
+
fundingStageLabel: "融资阶段",
|
|
229
|
+
languageLabel: "输出语言",
|
|
230
|
+
styleLabel: "风格方向",
|
|
231
|
+
styleHint: "可左右滑动,也可以不选",
|
|
232
|
+
advancedLabel: "高级设置:品牌规则与禁用项",
|
|
233
|
+
brandNotesLabel: "品牌、Logo 与视觉规则",
|
|
234
|
+
brandNotesPlaceholder:
|
|
235
|
+
"可以写品牌色、Logo 链接、IP 规则、字体偏好、希望避免的视觉元素。",
|
|
236
|
+
mustAvoidLabel: "不能出现",
|
|
237
|
+
mustAvoidPlaceholder:
|
|
238
|
+
"例如旧产品名、未确认融资数字、未签约客户、过度夸张表达。",
|
|
239
|
+
optional: "可选",
|
|
240
|
+
generate: "生成融资 BP",
|
|
241
|
+
submitting: "正在提交请求...",
|
|
242
|
+
running: "正在生成 Pitch Deck...",
|
|
243
|
+
retry: "重试",
|
|
244
|
+
emptyTitle: "投资人叙事大纲和图片页会显示在这里",
|
|
245
|
+
emptyHint:
|
|
246
|
+
"生成后会先看到叙事大纲和思考过程,随后每张图片按顺序进入结果区,支持单页下载和整套打包下载。",
|
|
247
|
+
resultReady: "融资 BP 已生成",
|
|
248
|
+
resultRunning: "Agent 正在生成融资 BP",
|
|
249
|
+
resultFallbackTitle: "融资 BP 制作中",
|
|
250
|
+
resultFallbackSummary:
|
|
251
|
+
"正在整理产品上下文、投资人叙事结构、视觉方向和图片生成队列。",
|
|
252
|
+
progressFallback: "正在准备下一组页面",
|
|
253
|
+
slideProgress: "{ready} / {total} 页已完成",
|
|
254
|
+
ceremony: [
|
|
255
|
+
"正在把产品故事讲成投资人的语言...",
|
|
256
|
+
"每一页只留一个核心判断,多余的会拆成新页...",
|
|
257
|
+
"市场数字只用有来源的,讲不清来源的不上图...",
|
|
258
|
+
"封面之后,投资人平均只给 3 分钟,我们在争取每一秒...",
|
|
259
|
+
"图片按叙事顺序排队出场,先来的不会被后到的挤掉...",
|
|
260
|
+
],
|
|
261
|
+
outlineTitle: "投资人叙事大纲",
|
|
262
|
+
deckGridHint: "每一页生成后会替换为图片,点击可放大查看",
|
|
263
|
+
openSlide: "查看 {label}",
|
|
264
|
+
slideGenerating: "正在生成...",
|
|
265
|
+
slideCountdown: "预计还需 {seconds} 秒",
|
|
266
|
+
slideStillWorking: "仍在处理,请稍候...",
|
|
267
|
+
slideFailed: "生成失败",
|
|
268
|
+
retrySlide: "重新生成",
|
|
269
|
+
editButton: "二次修改",
|
|
270
|
+
editLabel: "告诉 Agent 怎么改这一页",
|
|
271
|
+
editHint: "基于当前图片重新生成",
|
|
272
|
+
editDisabledHint: "全部页面生成完成后可修改",
|
|
273
|
+
editPlaceholder: "例如:数字改成更克制的表达,背景色统一成深色,去掉右下角图形。",
|
|
274
|
+
editError: "请写清楚具体的修改要求。",
|
|
275
|
+
editSubmit: "提交修改",
|
|
276
|
+
editCancel: "取消",
|
|
277
|
+
versionLabel: "版本 {current} / {total}",
|
|
278
|
+
latestVersion: "最新",
|
|
279
|
+
prevVersion: "查看上一个版本",
|
|
280
|
+
nextVersion: "查看下一个版本",
|
|
281
|
+
downloadAll: "下载全部",
|
|
282
|
+
packing: "打包中 {done}/{total}...",
|
|
283
|
+
packError: "打包失败,请重试或使用单页下载。",
|
|
284
|
+
downloadManifest: "下载 manifest",
|
|
285
|
+
downloadContactSheet: "下载总览图",
|
|
286
|
+
downloadSlide: "下载单页",
|
|
287
|
+
workspaceVisualAlt: "简单产品输入生成有序融资 BP 图片页和下载包的视觉图。",
|
|
288
|
+
revisionLabel: "让 Agent 修改",
|
|
289
|
+
revisionHint: "写具体修改要求",
|
|
290
|
+
revisionPlaceholder:
|
|
291
|
+
"例如:重绘第 4 页市场页,Traction 页增加里程碑时间线,封面更克制。",
|
|
292
|
+
sendRevision: "发送修改要求",
|
|
293
|
+
status: {
|
|
294
|
+
PENDING: "排队中",
|
|
295
|
+
STREAMING: "生成中",
|
|
296
|
+
AWAITING_INPUT: "等待结构化结果",
|
|
297
|
+
AWAITING_FINAL: "继续生成图片页",
|
|
298
|
+
SUCCEEDED: "正在完成结果",
|
|
299
|
+
default: "处理中",
|
|
300
|
+
},
|
|
301
|
+
slideStatus: {
|
|
302
|
+
queued: "排队中",
|
|
303
|
+
generating: "生成中",
|
|
304
|
+
ready: "已完成",
|
|
305
|
+
failed: "失败",
|
|
306
|
+
},
|
|
307
|
+
fieldErrors: {
|
|
308
|
+
productUrl: "请输入有效的产品官网 URL,例如 https://your-product.com。",
|
|
309
|
+
productName: "请填写真实的产品名称。",
|
|
310
|
+
productNamePlaceholder: "产品名称看起来是占位内容,请填写真实名称。",
|
|
311
|
+
productContext: "产品背景至少需要 24 个字,请描述产品、用户和当前进展。",
|
|
312
|
+
productContextPlaceholder: "产品背景看起来是占位内容,请填写真实信息。",
|
|
313
|
+
},
|
|
314
|
+
errors: {
|
|
315
|
+
revision: "发送给 Agent 前,请写清楚具体修改要求。",
|
|
316
|
+
submit: "请求提交失败。",
|
|
317
|
+
task: "生成任务失败。",
|
|
318
|
+
timeout: "结构化结果没有在限定时间内返回。",
|
|
319
|
+
schema: "Agent 返回的结果不符合融资 BP schema。",
|
|
320
|
+
invalid: "请先修正表单中标红的字段。",
|
|
321
|
+
generic: "融资 BP 生成失败。",
|
|
322
|
+
recover:
|
|
323
|
+
"请检查产品链接或补充产品背景、融资阶段和品牌规则后重试。",
|
|
324
|
+
},
|
|
325
|
+
copy: {
|
|
326
|
+
fundingStages: {
|
|
327
|
+
preSeed: "Pre-seed / 天使轮",
|
|
328
|
+
seed: "种子轮",
|
|
329
|
+
seriesA: "A 轮",
|
|
330
|
+
notSure: "还不确定",
|
|
331
|
+
},
|
|
332
|
+
languages: {
|
|
333
|
+
zh: "中文",
|
|
334
|
+
en: "English",
|
|
335
|
+
},
|
|
336
|
+
styles: {
|
|
337
|
+
none: {
|
|
338
|
+
name: "不选风格",
|
|
339
|
+
summary: "让 Agent 根据产品、阶段和品牌规则自动选择。",
|
|
340
|
+
},
|
|
341
|
+
boldNarrative: {
|
|
342
|
+
name: "叙事张力",
|
|
343
|
+
summary: "大留白、强观点、情绪推进,适合愿景驱动的故事。",
|
|
344
|
+
},
|
|
345
|
+
metricGrid: {
|
|
346
|
+
name: "指标秩序",
|
|
347
|
+
summary: "结构化数据卡、里程碑和增长曲线,适合 Traction 驱动的叙事。",
|
|
348
|
+
},
|
|
349
|
+
visionField: {
|
|
350
|
+
name: "愿景视野",
|
|
351
|
+
summary: "市场版图、生态位置和增长空间,适合大市场机会叙事。",
|
|
352
|
+
},
|
|
353
|
+
},
|
|
354
|
+
},
|
|
355
|
+
},
|
|
356
|
+
};
|
|
357
|
+
|
|
358
|
+
export default pitchDeckGenerator;
|