├── .claude └── settings.local.json ├── .eslintrc.json ├── .gitignore ├── .gitmodules ├── .prettierrc ├── .specstory └── .what-is-this.md ├── CLAUDE.md ├── Makefile ├── PACKAGE_RENAME.md ├── README.md ├── TEST_REPORT.md ├── docs ├── ANALYTICS_HANDOVER.md ├── COMPREHENSIVE_TEST_REPORT.md ├── CONTENT_HEIGHT_FIX_SUMMARY.md ├── Claudia-Analysis-and-Optimization-Recommendations.md ├── Comprehensive-Architectural-Comparison.md ├── DOCUMENTATION_INDEX.md ├── Enhanced-TUI-Features.md ├── GLOBAL_DIFF_SCRATCHPAD.md ├── IMMEDIATE_START_GUIDE.md ├── MIGRATION_STATUS.md ├── MIGRATION_SUMMARY.md ├── QUICK_START.md ├── README.md ├── REMOVED_TESTS.md ├── SPRINT1_TEST_REPORT.md ├── TEST_ANALYSIS_REPORT.md ├── TUI-FUNCTIONALITY-REPORT.md ├── TUI-Implementation.md ├── TUI-Navigation-Fix.md ├── TUI-Test-Report.md ├── TUI-UX-Design.md ├── TUI-Usage-Guide.md ├── Testing-Strategy.md ├── Warp-Terminal-Support.md ├── api │ └── README.md ├── architecture │ ├── README.md │ └── system-architecture.md ├── domain-model-architecture.md ├── examples │ └── basic-usage.md ├── guides │ ├── cli-usage.md │ ├── contributing.md │ ├── export-formats.md │ ├── getting-started.md │ └── user-guide.md ├── implementation-roadmap.md ├── implementation │ ├── Implementation-Roadmap.md │ ├── Migration-and-Deployment-Guide.md │ ├── Phase1-Foundation-Implementation.md │ ├── Phase2-RealTime-Implementation.md │ ├── Phase3-Advanced-Implementation.md │ ├── Quick-Start-Guide.md │ └── Testing-Framework-Guide.md ├── project-summary.md ├── restoration │ ├── DIFF_ANALYSIS.md │ ├── my_ts_files.txt │ ├── npm_js_files.txt │ └── scratchpad.md ├── testing │ └── TUI_TESTING.md └── tui-architecture.md ├── package.json ├── scripts └── test-analytics.ts ├── src ├── ShowMeTheTalk.ts ├── application │ ├── dto │ │ └── ExportDto.ts │ └── services │ │ ├── ConversationApplicationService.ts │ │ └── CostAnalysisApplicationService.ts ├── bin │ └── show-me-the-talk.ts ├── domain │ ├── models │ │ ├── Conversation.ts │ │ ├── ExportFormat.ts │ │ ├── Message.ts │ │ ├── ProjectContext.ts │ │ ├── TimeMachine.ts │ │ ├── analytics │ │ │ ├── AnalyticsReport.ts │ │ │ ├── PrivacySettings.ts │ │ │ ├── SemanticCluster.ts │ │ │ ├── WordCloudData.ts │ │ │ └── index.ts │ │ ├── enhanced │ │ │ ├── AssistantResponse.ts │ │ │ ├── CodeBlock.ts │ │ │ ├── ConversationElement.ts │ │ │ ├── ConversationElementFactory.ts │ │ │ ├── ConversationElementType.ts │ │ │ ├── MessageData.ts │ │ │ ├── QuestionTypes.ts │ │ │ ├── ResponseTypes.ts │ │ │ ├── ToolInteractionGroup.ts │ │ │ ├── UserQuestion.ts │ │ │ └── index.ts │ │ ├── export │ │ │ └── ExportConfiguration.ts │ │ ├── rendering │ │ │ ├── ConversationRenderVisitor.ts │ │ │ ├── HtmlRenderVisitor.ts │ │ │ ├── MarkdownRenderVisitor.ts │ │ │ ├── RenderableContent.ts │ │ │ ├── SemanticContext.ts │ │ │ └── index.ts │ │ ├── timeline │ │ │ ├── MessageBlock.ts │ │ │ ├── TimelineLayout.ts │ │ │ └── index.ts │ │ └── usage │ │ │ └── UsageReport.ts │ ├── repositories │ │ ├── ConversationRepository.ts │ │ └── ExportRepository.ts │ └── services │ │ ├── ConversationExchangeExtractor.ts │ │ ├── ConversationFilter.ts │ │ ├── ConversationService.ts │ │ ├── TableOfContentsGenerator.ts │ │ ├── analytics │ │ ├── AchievementService.ts │ │ ├── AnalyticsService.ts │ │ ├── ConversationHeatmapService.ts │ │ ├── ConversationTextAnalyzer.ts │ │ ├── DeveloperPersonaService.ts │ │ ├── LlmSentenceInsightService.ts │ │ ├── SemanticConceptExtractor.ts │ │ ├── SentencePatternAnalyzer.ts │ │ ├── TechStackClusterer.ts │ │ ├── WordFrequencyAnalyzer.ts │ │ ├── WrappedStoryService.ts │ │ └── index.ts │ │ └── usage │ │ ├── CcUsageParser.ts │ │ └── UsageCostReportBuilder.ts ├── index.ts ├── infrastructure │ ├── container │ │ └── Container.ts │ ├── environment │ │ └── EnvironmentValidator.ts │ ├── filesystem │ │ └── FileExportService.ts │ ├── persistence │ │ ├── JsonlConversationRepository.ts │ │ └── SpecStoryRepository.ts │ ├── rendering │ │ └── analytics │ │ │ ├── AnalyticsDashboardTemplate.ts │ │ │ ├── ColorSchemes.ts │ │ │ ├── WordCloudHtmlRenderer.ts │ │ │ └── index.ts │ ├── tui │ │ └── TUIService.ts │ └── usage │ │ └── CcUsageCommandRunner.ts └── presentation │ ├── cli │ ├── RequireTui.ts │ └── cli.ts │ └── tui │ ├── ComprehensiveInkTUI.ts │ ├── RequireTui.ts │ ├── components │ ├── VisualTimelineRenderer.ts │ └── analytics │ │ ├── AnalyticsMenu.tsx │ │ ├── ClustersSummary.tsx │ │ ├── InsightsPanel.tsx │ │ ├── TerminalWordCloud.tsx │ │ ├── TimelineView.tsx │ │ └── index.ts │ └── utils │ └── conversationUtils.ts ├── tests ├── fixtures │ └── llm │ │ └── sentence-insights.mock.json ├── integration │ ├── ExportFunctionality.integration.test.ts │ ├── ShowMeTheTalk.integration.test.ts │ ├── analytics │ │ └── AnalyticsService.sentence.test.ts │ └── cli.test.ts ├── setup.ts ├── unit │ ├── ConversationFilter.test.ts │ ├── domain │ │ ├── enhanced │ │ │ ├── AssistantResponse.test.ts │ │ │ ├── CodeBlock.test.ts │ │ │ ├── ConversationElement.test.ts │ │ │ ├── DomainModelEdgeCases.test.ts │ │ │ ├── EnhancedDomainModel.integration.test.ts │ │ │ ├── SemanticContext.test.ts │ │ │ ├── ToolInteractionGroup.test.ts │ │ │ └── UserQuestion.test.ts │ │ ├── models │ │ │ ├── Conversation.test.ts │ │ │ └── Message.test.ts │ │ ├── rendering │ │ │ └── RenderVisitors.test.ts │ │ └── services │ │ │ ├── CcUsageParser.test.ts │ │ │ ├── ConversationService.test.ts │ │ │ ├── LlmSentenceInsightService.test.ts │ │ │ ├── SentencePatternAnalyzer.test.ts │ │ │ └── UsageCostReportBuilder.test.ts │ ├── infrastructure │ │ ├── rendering │ │ │ └── analytics │ │ │ │ └── AnalyticsDashboardTemplate.sentences.test.ts │ │ └── tui │ │ │ └── TUIService.test.ts │ └── tui │ │ ├── ComprehensiveInkTUI.test.ts │ │ └── components │ │ └── VisualTimelineRenderer.test.ts └── utils │ ├── conversationFactory.ts │ └── runCli.ts ├── tsconfig.json └── vitest.config.ts /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/.prettierrc -------------------------------------------------------------------------------- /.specstory/.what-is-this.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/.specstory/.what-is-this.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/Makefile -------------------------------------------------------------------------------- /PACKAGE_RENAME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/PACKAGE_RENAME.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/README.md -------------------------------------------------------------------------------- /TEST_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/TEST_REPORT.md -------------------------------------------------------------------------------- /docs/ANALYTICS_HANDOVER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/ANALYTICS_HANDOVER.md -------------------------------------------------------------------------------- /docs/COMPREHENSIVE_TEST_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/COMPREHENSIVE_TEST_REPORT.md -------------------------------------------------------------------------------- /docs/CONTENT_HEIGHT_FIX_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/CONTENT_HEIGHT_FIX_SUMMARY.md -------------------------------------------------------------------------------- /docs/Claudia-Analysis-and-Optimization-Recommendations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/Claudia-Analysis-and-Optimization-Recommendations.md -------------------------------------------------------------------------------- /docs/Comprehensive-Architectural-Comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/Comprehensive-Architectural-Comparison.md -------------------------------------------------------------------------------- /docs/DOCUMENTATION_INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/DOCUMENTATION_INDEX.md -------------------------------------------------------------------------------- /docs/Enhanced-TUI-Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/Enhanced-TUI-Features.md -------------------------------------------------------------------------------- /docs/GLOBAL_DIFF_SCRATCHPAD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/GLOBAL_DIFF_SCRATCHPAD.md -------------------------------------------------------------------------------- /docs/IMMEDIATE_START_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/IMMEDIATE_START_GUIDE.md -------------------------------------------------------------------------------- /docs/MIGRATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/MIGRATION_STATUS.md -------------------------------------------------------------------------------- /docs/MIGRATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/MIGRATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/QUICK_START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/QUICK_START.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/REMOVED_TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/REMOVED_TESTS.md -------------------------------------------------------------------------------- /docs/SPRINT1_TEST_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/SPRINT1_TEST_REPORT.md -------------------------------------------------------------------------------- /docs/TEST_ANALYSIS_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/TEST_ANALYSIS_REPORT.md -------------------------------------------------------------------------------- /docs/TUI-FUNCTIONALITY-REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/TUI-FUNCTIONALITY-REPORT.md -------------------------------------------------------------------------------- /docs/TUI-Implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/TUI-Implementation.md -------------------------------------------------------------------------------- /docs/TUI-Navigation-Fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/TUI-Navigation-Fix.md -------------------------------------------------------------------------------- /docs/TUI-Test-Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/TUI-Test-Report.md -------------------------------------------------------------------------------- /docs/TUI-UX-Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/TUI-UX-Design.md -------------------------------------------------------------------------------- /docs/TUI-Usage-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/TUI-Usage-Guide.md -------------------------------------------------------------------------------- /docs/Testing-Strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/Testing-Strategy.md -------------------------------------------------------------------------------- /docs/Warp-Terminal-Support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/Warp-Terminal-Support.md -------------------------------------------------------------------------------- /docs/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/api/README.md -------------------------------------------------------------------------------- /docs/architecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/architecture/README.md -------------------------------------------------------------------------------- /docs/architecture/system-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/architecture/system-architecture.md -------------------------------------------------------------------------------- /docs/domain-model-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/domain-model-architecture.md -------------------------------------------------------------------------------- /docs/examples/basic-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/examples/basic-usage.md -------------------------------------------------------------------------------- /docs/guides/cli-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/guides/cli-usage.md -------------------------------------------------------------------------------- /docs/guides/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/guides/contributing.md -------------------------------------------------------------------------------- /docs/guides/export-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/guides/export-formats.md -------------------------------------------------------------------------------- /docs/guides/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/guides/getting-started.md -------------------------------------------------------------------------------- /docs/guides/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/guides/user-guide.md -------------------------------------------------------------------------------- /docs/implementation-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/implementation-roadmap.md -------------------------------------------------------------------------------- /docs/implementation/Implementation-Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/implementation/Implementation-Roadmap.md -------------------------------------------------------------------------------- /docs/implementation/Migration-and-Deployment-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/implementation/Migration-and-Deployment-Guide.md -------------------------------------------------------------------------------- /docs/implementation/Phase1-Foundation-Implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/implementation/Phase1-Foundation-Implementation.md -------------------------------------------------------------------------------- /docs/implementation/Phase2-RealTime-Implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/implementation/Phase2-RealTime-Implementation.md -------------------------------------------------------------------------------- /docs/implementation/Phase3-Advanced-Implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/implementation/Phase3-Advanced-Implementation.md -------------------------------------------------------------------------------- /docs/implementation/Quick-Start-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/implementation/Quick-Start-Guide.md -------------------------------------------------------------------------------- /docs/implementation/Testing-Framework-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/implementation/Testing-Framework-Guide.md -------------------------------------------------------------------------------- /docs/project-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/project-summary.md -------------------------------------------------------------------------------- /docs/restoration/DIFF_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/restoration/DIFF_ANALYSIS.md -------------------------------------------------------------------------------- /docs/restoration/my_ts_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/restoration/my_ts_files.txt -------------------------------------------------------------------------------- /docs/restoration/npm_js_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/restoration/npm_js_files.txt -------------------------------------------------------------------------------- /docs/restoration/scratchpad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/restoration/scratchpad.md -------------------------------------------------------------------------------- /docs/testing/TUI_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/testing/TUI_TESTING.md -------------------------------------------------------------------------------- /docs/tui-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/docs/tui-architecture.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/package.json -------------------------------------------------------------------------------- /scripts/test-analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/scripts/test-analytics.ts -------------------------------------------------------------------------------- /src/ShowMeTheTalk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/ShowMeTheTalk.ts -------------------------------------------------------------------------------- /src/application/dto/ExportDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/application/dto/ExportDto.ts -------------------------------------------------------------------------------- /src/application/services/ConversationApplicationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/application/services/ConversationApplicationService.ts -------------------------------------------------------------------------------- /src/application/services/CostAnalysisApplicationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/application/services/CostAnalysisApplicationService.ts -------------------------------------------------------------------------------- /src/bin/show-me-the-talk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/bin/show-me-the-talk.ts -------------------------------------------------------------------------------- /src/domain/models/Conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/Conversation.ts -------------------------------------------------------------------------------- /src/domain/models/ExportFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/ExportFormat.ts -------------------------------------------------------------------------------- /src/domain/models/Message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/Message.ts -------------------------------------------------------------------------------- /src/domain/models/ProjectContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/ProjectContext.ts -------------------------------------------------------------------------------- /src/domain/models/TimeMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/TimeMachine.ts -------------------------------------------------------------------------------- /src/domain/models/analytics/AnalyticsReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/analytics/AnalyticsReport.ts -------------------------------------------------------------------------------- /src/domain/models/analytics/PrivacySettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/analytics/PrivacySettings.ts -------------------------------------------------------------------------------- /src/domain/models/analytics/SemanticCluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/analytics/SemanticCluster.ts -------------------------------------------------------------------------------- /src/domain/models/analytics/WordCloudData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/analytics/WordCloudData.ts -------------------------------------------------------------------------------- /src/domain/models/analytics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/analytics/index.ts -------------------------------------------------------------------------------- /src/domain/models/enhanced/AssistantResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/enhanced/AssistantResponse.ts -------------------------------------------------------------------------------- /src/domain/models/enhanced/CodeBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/enhanced/CodeBlock.ts -------------------------------------------------------------------------------- /src/domain/models/enhanced/ConversationElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/enhanced/ConversationElement.ts -------------------------------------------------------------------------------- /src/domain/models/enhanced/ConversationElementFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/enhanced/ConversationElementFactory.ts -------------------------------------------------------------------------------- /src/domain/models/enhanced/ConversationElementType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/enhanced/ConversationElementType.ts -------------------------------------------------------------------------------- /src/domain/models/enhanced/MessageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/enhanced/MessageData.ts -------------------------------------------------------------------------------- /src/domain/models/enhanced/QuestionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/enhanced/QuestionTypes.ts -------------------------------------------------------------------------------- /src/domain/models/enhanced/ResponseTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/enhanced/ResponseTypes.ts -------------------------------------------------------------------------------- /src/domain/models/enhanced/ToolInteractionGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/enhanced/ToolInteractionGroup.ts -------------------------------------------------------------------------------- /src/domain/models/enhanced/UserQuestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/enhanced/UserQuestion.ts -------------------------------------------------------------------------------- /src/domain/models/enhanced/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/enhanced/index.ts -------------------------------------------------------------------------------- /src/domain/models/export/ExportConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/export/ExportConfiguration.ts -------------------------------------------------------------------------------- /src/domain/models/rendering/ConversationRenderVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/rendering/ConversationRenderVisitor.ts -------------------------------------------------------------------------------- /src/domain/models/rendering/HtmlRenderVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/rendering/HtmlRenderVisitor.ts -------------------------------------------------------------------------------- /src/domain/models/rendering/MarkdownRenderVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/rendering/MarkdownRenderVisitor.ts -------------------------------------------------------------------------------- /src/domain/models/rendering/RenderableContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/rendering/RenderableContent.ts -------------------------------------------------------------------------------- /src/domain/models/rendering/SemanticContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/rendering/SemanticContext.ts -------------------------------------------------------------------------------- /src/domain/models/rendering/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/rendering/index.ts -------------------------------------------------------------------------------- /src/domain/models/timeline/MessageBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/timeline/MessageBlock.ts -------------------------------------------------------------------------------- /src/domain/models/timeline/TimelineLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/timeline/TimelineLayout.ts -------------------------------------------------------------------------------- /src/domain/models/timeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/timeline/index.ts -------------------------------------------------------------------------------- /src/domain/models/usage/UsageReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/models/usage/UsageReport.ts -------------------------------------------------------------------------------- /src/domain/repositories/ConversationRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/repositories/ConversationRepository.ts -------------------------------------------------------------------------------- /src/domain/repositories/ExportRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/repositories/ExportRepository.ts -------------------------------------------------------------------------------- /src/domain/services/ConversationExchangeExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/ConversationExchangeExtractor.ts -------------------------------------------------------------------------------- /src/domain/services/ConversationFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/ConversationFilter.ts -------------------------------------------------------------------------------- /src/domain/services/ConversationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/ConversationService.ts -------------------------------------------------------------------------------- /src/domain/services/TableOfContentsGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/TableOfContentsGenerator.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/AchievementService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/AchievementService.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/AnalyticsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/AnalyticsService.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/ConversationHeatmapService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/ConversationHeatmapService.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/ConversationTextAnalyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/ConversationTextAnalyzer.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/DeveloperPersonaService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/DeveloperPersonaService.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/LlmSentenceInsightService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/LlmSentenceInsightService.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/SemanticConceptExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/SemanticConceptExtractor.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/SentencePatternAnalyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/SentencePatternAnalyzer.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/TechStackClusterer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/TechStackClusterer.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/WordFrequencyAnalyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/WordFrequencyAnalyzer.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/WrappedStoryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/WrappedStoryService.ts -------------------------------------------------------------------------------- /src/domain/services/analytics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/analytics/index.ts -------------------------------------------------------------------------------- /src/domain/services/usage/CcUsageParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/usage/CcUsageParser.ts -------------------------------------------------------------------------------- /src/domain/services/usage/UsageCostReportBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/domain/services/usage/UsageCostReportBuilder.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/infrastructure/container/Container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/infrastructure/container/Container.ts -------------------------------------------------------------------------------- /src/infrastructure/environment/EnvironmentValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/infrastructure/environment/EnvironmentValidator.ts -------------------------------------------------------------------------------- /src/infrastructure/filesystem/FileExportService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/infrastructure/filesystem/FileExportService.ts -------------------------------------------------------------------------------- /src/infrastructure/persistence/JsonlConversationRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/infrastructure/persistence/JsonlConversationRepository.ts -------------------------------------------------------------------------------- /src/infrastructure/persistence/SpecStoryRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/infrastructure/persistence/SpecStoryRepository.ts -------------------------------------------------------------------------------- /src/infrastructure/rendering/analytics/AnalyticsDashboardTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/infrastructure/rendering/analytics/AnalyticsDashboardTemplate.ts -------------------------------------------------------------------------------- /src/infrastructure/rendering/analytics/ColorSchemes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/infrastructure/rendering/analytics/ColorSchemes.ts -------------------------------------------------------------------------------- /src/infrastructure/rendering/analytics/WordCloudHtmlRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/infrastructure/rendering/analytics/WordCloudHtmlRenderer.ts -------------------------------------------------------------------------------- /src/infrastructure/rendering/analytics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/infrastructure/rendering/analytics/index.ts -------------------------------------------------------------------------------- /src/infrastructure/tui/TUIService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/infrastructure/tui/TUIService.ts -------------------------------------------------------------------------------- /src/infrastructure/usage/CcUsageCommandRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/infrastructure/usage/CcUsageCommandRunner.ts -------------------------------------------------------------------------------- /src/presentation/cli/RequireTui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/cli/RequireTui.ts -------------------------------------------------------------------------------- /src/presentation/cli/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/cli/cli.ts -------------------------------------------------------------------------------- /src/presentation/tui/ComprehensiveInkTUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/tui/ComprehensiveInkTUI.ts -------------------------------------------------------------------------------- /src/presentation/tui/RequireTui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/tui/RequireTui.ts -------------------------------------------------------------------------------- /src/presentation/tui/components/VisualTimelineRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/tui/components/VisualTimelineRenderer.ts -------------------------------------------------------------------------------- /src/presentation/tui/components/analytics/AnalyticsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/tui/components/analytics/AnalyticsMenu.tsx -------------------------------------------------------------------------------- /src/presentation/tui/components/analytics/ClustersSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/tui/components/analytics/ClustersSummary.tsx -------------------------------------------------------------------------------- /src/presentation/tui/components/analytics/InsightsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/tui/components/analytics/InsightsPanel.tsx -------------------------------------------------------------------------------- /src/presentation/tui/components/analytics/TerminalWordCloud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/tui/components/analytics/TerminalWordCloud.tsx -------------------------------------------------------------------------------- /src/presentation/tui/components/analytics/TimelineView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/tui/components/analytics/TimelineView.tsx -------------------------------------------------------------------------------- /src/presentation/tui/components/analytics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/tui/components/analytics/index.ts -------------------------------------------------------------------------------- /src/presentation/tui/utils/conversationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/src/presentation/tui/utils/conversationUtils.ts -------------------------------------------------------------------------------- /tests/fixtures/llm/sentence-insights.mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/fixtures/llm/sentence-insights.mock.json -------------------------------------------------------------------------------- /tests/integration/ExportFunctionality.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/integration/ExportFunctionality.integration.test.ts -------------------------------------------------------------------------------- /tests/integration/ShowMeTheTalk.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/integration/ShowMeTheTalk.integration.test.ts -------------------------------------------------------------------------------- /tests/integration/analytics/AnalyticsService.sentence.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/integration/analytics/AnalyticsService.sentence.test.ts -------------------------------------------------------------------------------- /tests/integration/cli.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/integration/cli.test.ts -------------------------------------------------------------------------------- /tests/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/setup.ts -------------------------------------------------------------------------------- /tests/unit/ConversationFilter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/ConversationFilter.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/enhanced/AssistantResponse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/enhanced/AssistantResponse.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/enhanced/CodeBlock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/enhanced/CodeBlock.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/enhanced/ConversationElement.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/enhanced/ConversationElement.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/enhanced/DomainModelEdgeCases.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/enhanced/DomainModelEdgeCases.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/enhanced/EnhancedDomainModel.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/enhanced/EnhancedDomainModel.integration.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/enhanced/SemanticContext.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/enhanced/SemanticContext.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/enhanced/ToolInteractionGroup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/enhanced/ToolInteractionGroup.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/enhanced/UserQuestion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/enhanced/UserQuestion.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/models/Conversation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/models/Conversation.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/models/Message.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/models/Message.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/rendering/RenderVisitors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/rendering/RenderVisitors.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/services/CcUsageParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/services/CcUsageParser.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/services/ConversationService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/services/ConversationService.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/services/LlmSentenceInsightService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/services/LlmSentenceInsightService.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/services/SentencePatternAnalyzer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/services/SentencePatternAnalyzer.test.ts -------------------------------------------------------------------------------- /tests/unit/domain/services/UsageCostReportBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/domain/services/UsageCostReportBuilder.test.ts -------------------------------------------------------------------------------- /tests/unit/infrastructure/rendering/analytics/AnalyticsDashboardTemplate.sentences.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/infrastructure/rendering/analytics/AnalyticsDashboardTemplate.sentences.test.ts -------------------------------------------------------------------------------- /tests/unit/infrastructure/tui/TUIService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/infrastructure/tui/TUIService.test.ts -------------------------------------------------------------------------------- /tests/unit/tui/ComprehensiveInkTUI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/tui/ComprehensiveInkTUI.test.ts -------------------------------------------------------------------------------- /tests/unit/tui/components/VisualTimelineRenderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/unit/tui/components/VisualTimelineRenderer.test.ts -------------------------------------------------------------------------------- /tests/utils/conversationFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/utils/conversationFactory.ts -------------------------------------------------------------------------------- /tests/utils/runCli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tests/utils/runCli.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-is-cheap/show-me-the-talk/HEAD/vitest.config.ts --------------------------------------------------------------------------------