feat: auto-export pipeline for post-recording automation#86
Open
StevenLi-phoenix wants to merge 1 commit intomainfrom
Open
feat: auto-export pipeline for post-recording automation#86StevenLi-phoenix wants to merge 1 commit intomainfrom
StevenLi-phoenix wants to merge 1 commit intomainfrom
Conversation
Add AutoExportConfig model with 3 action types (write file, copy transcript, webhook), AutoExportService for formatting and execution with injectable URLSession, AutoExportSettingsTab in Settings, and BackgroundSummaryService integration that triggers after summary+title generation completes. 25 tests covering formatting, config serialization, and pipeline execution.
❌ Claude Code Review: REJECT
|
Contributor
|
|
Owner
Author
Notes — Auto-export Pipeline (#39)923 行、7 文件、25 测试——这是个完整的功能! 1. Pipeline 架构3 个 action 类型(write file / copy transcript / webhook)覆盖了核心场景。几个扩展建议:
2. BackgroundSummaryService 集成在 summary + title 完成后触发很好。但需要考虑:
3. Webhook 安全
4. 测试覆盖25 tests 👍。确认包含:
5. 竞品参考Fireflies 的自动化管道是其付费功能的核心卖点。我们的方案是完全本地 + 开放的——webhook 意味着用户可以接入任何系统。 |
This was referenced Mar 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
AutoExportConfigmodel with 3 action types: write file, copy transcript, webhookAutoExportService(nonisolated enum) — format + execute pipeline with injectable URLSessionAutoExportSettingsTabin Settings > Export tab for enabling/configuring auto-export actionsBackgroundSummaryServiceintegration — triggers after summary+title complete (both success and error paths)Closes #39
Test plan
🤖 Generated with Claude Code