-
Notifications
You must be signed in to change notification settings - Fork 253
Timeout fix, Edit Mode in Electron apps, cursor-aware cleanup, Prompt Mode, vocabulary mappings, custom sounds, faster stop-to-paste #254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
9e89b6e
Honor configured timeouts instead of capping transfers at 30s
swimmer-303 cc4659e
Support mishearing-to-correction mappings in custom vocabulary
swimmer-303 a598fc5
Add configurable feedback sounds, menu bar panel redesign, changelog
swimmer-303 08506c9
Prewarm API connections while recording
swimmer-303 462f741
Start transcription before capture session teardown
swimmer-303 848b67c
Log transcription upload and LLM request durations
swimmer-303 9bb20c7
Activate lazy Chromium/Electron accessibility trees for Edit Mode
swimmer-303 500da9a
Make dictation aware of the text surrounding the cursor
swimmer-303 6e0bd94
Add Prompt Mode: condense dictation into a tight prompt
swimmer-303 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| ## Agent Guardrails | ||
|
|
||
| You are running as an agent. Do not run destructive commands without explicit permission. | ||
|
|
||
| ### Git | ||
| - Never run `git push --force`, `git push -f`, or rewrite shared history | ||
| - Never delete branches (local or remote) without explicit permission | ||
| - Never commit `.env*` files, API keys, tokens, or credentials | ||
|
|
||
| ### Filesystem | ||
| - Never run `rm -rf` on anything outside the current project directory | ||
| - Never modify files outside the current working directory without explicit permission | ||
| - Never edit `.env`, `.env.local`, or any `.env.*` file without explicit permission | ||
|
|
||
| ### Dependencies | ||
| - Ask before installing new packages or running `npm install <pkg>` | ||
| - Ask before upgrading major versions or modifying lockfiles by hand | ||
|
|
||
| ### Database | ||
| - Never run database migrations, drops, or schema changes without explicit permission | ||
|
|
||
| ### Behavior | ||
| - When uncertain, stop and ask rather than guess | ||
| - Summarize planned changes before applying anything non-trivial | ||
| - Don't disable, skip, or comment out tests, linting, or type checks to make things pass |
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🩺 Stability & Availability | 🟡 Minor | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: zachlatta/freeflow
Length of output: 5301
🏁 Script executed:
Repository: zachlatta/freeflow
Length of output: 26858
🏁 Script executed:
Repository: zachlatta/freeflow
Length of output: 50375
🏁 Script executed:
Repository: zachlatta/freeflow
Length of output: 29897
Move the first-read retry off the main queue
collectSelectionSnapshot()is reached fromAppState’s main-queue shortcut start path, so the 100 msusleepblocks the UI on the first dictation into each app. Replace it with an async retry instead.🤖 Prompt for AI Agents