feat: expands the Huntly browser extension with AI-powered content processing, plus adds a new X (Twitter) settings area in the web app.#107
Conversation
- Add AI content processing with streaming support for web clipper - Add X (Twitter) settings page for configuring auto-save behavior - Add separate extension release workflow for independent versioning - Remove extension build from main release workflow - Add new parser utilities and UI components for content extraction - Update extension manifest and dependencies for new features Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
🤖 Augment PR SummarySummary: This PR significantly expands the Huntly browser extension with AI-powered content processing, plus adds a new X (Twitter) settings area in the web app. Changes:
Technical Notes: AI prompts support 🤖 Was this summary useful? React with 👍 or 👎 |
|
|
||
| on: | ||
| push: | ||
| tags: [ 'ext/v[0-9]+.[0-9]+.[0-9]+*' ] |
.github/workflows/release.yml
Outdated
| on: | ||
| push: | ||
| tags: [ v\d+\.\d+\.\d+ ] | ||
| tags: [ 'v[0-9]+.[0-9]+.[0-9]+*' ] |
| const openSettings = (tab?: string) => { | ||
| const optionsUrl = chrome.runtime.getURL('options.html'); | ||
| const url = tab ? `${optionsUrl}#${tab}` : optionsUrl; | ||
| chrome.tabs.create({ url }); |
| setTestResult(null); | ||
|
|
||
| if (providerType === 'ollama') { | ||
| refreshOllamaModels(); |
| }; | ||
|
|
||
| const allSelectedCount = enabledModels.length + customModels.length; | ||
| const canSave = |
Move the autoSaveTweetMinLikes retrieval from the browser extension to the server's TweetController to reduce API calls and centralize logic. Add caching in GlobalSettingService for performance optimization. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Updated web_clipper.tsx to utilize parserType from messages for improved flexibility in parsing documents. - Refactored preview handling to ensure proper cleanup and restoration of scroll states. - Introduced system-prompts.ts to manage multilingual system prompts for summarization, translation, key points extraction, action items, and explanations. - Added languages.ts to define a comprehensive list of supported languages with their respective codes and names.
…t extraction from HTML content
… and mark standalone AI processing as complete
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
Test plan
🤖 Generated with Claude Code