-
Notifications
You must be signed in to change notification settings - Fork 51
Feat/local terminal execution #7
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
eadde4c
feat: add local terminal execution support
rossmanko d1c13d8
feat: add delete-file tool
rossmanko 4a24c83
feat: add search replace tool
rossmanko 093af6b
feat: auto open desktop sidebar on non-mobile screens
rossmanko 8f162a2
feat: add multi edit tool
rossmanko dc77e28
fix: implement coderabbit suggestions/fixes
rossmanko 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,22 +1,41 @@ | ||
| # OpenRouter API key for LLM usage | ||
| # Sign up at https://openrouter.ai/ | ||
| # ============================================================================= | ||
| # API CONFIGURATION | ||
| # ============================================================================= | ||
|
|
||
| # OpenRouter API Key (Required) | ||
| # Get your API key at: https://openrouter.ai/ | ||
| OPENROUTER_API_KEY= | ||
|
|
||
| # E2B API key for secure code execution sandbox | ||
| # Sign up at https://e2b.dev/ | ||
| E2B_API_KEY= | ||
| # ============================================================================= | ||
| # TERMINAL EXECUTION SETTINGS | ||
| # ============================================================================= | ||
|
|
||
| # Terminal execution mode: "local" (default) or "sandbox" | ||
| # TERMINAL_EXECUTION_MODE=local | ||
|
|
||
| # E2B API Key (Optional - only required for "sandbox" mode) | ||
| # Get your API key at: https://e2b.dev/ | ||
| # E2B_API_KEY= | ||
|
|
||
| # Model configuration for AI providers | ||
| # Agent model used for main chat interactions (default: qwen/qwen3-coder) | ||
| # ============================================================================= | ||
| # AI MODEL CONFIGURATION | ||
| # ============================================================================= | ||
|
|
||
| # Agent model for main chat interactions (default: qwen/qwen3-coder) | ||
| # NEXT_PUBLIC_AGENT_MODEL= | ||
|
|
||
| # Title generation model - should be lightweight to reduce cost/latency (default: qwen/qwen3-30b-a3) | ||
| # Title generation model - lightweight for cost/latency (default: qwen/qwen3-30b-a3) | ||
| # NEXT_PUBLIC_TITLE_MODEL= | ||
|
|
||
| # WorkOS config for auth (Optional) | ||
| # ============================================================================= | ||
| # AUTHENTICATION (Optional - WorkOS) | ||
| # ============================================================================= | ||
|
|
||
| # WorkOS API credentials | ||
| # Get started at: https://workos.com/ | ||
| # WORKOS_API_KEY='sk_example_123456789' | ||
| # WORKOS_CLIENT_ID='client_123456789' | ||
| # WORKOS_COOKIE_PASSWORD="<your password>" # generate a secure password here | ||
| # WORKOS_COOKIE_PASSWORD="<your password>" # generate a secure password | ||
|
|
||
| # configured in the WorkOS dashboard | ||
| # NEXT_PUBLIC_WORKOS_REDIRECT_URI="http://localhost:3000/callback" | ||
| # WorkOS redirect URI (configure in WorkOS dashboard) | ||
| # NEXT_PUBLIC_WORKOS_REDIRECT_URI="http://localhost:3000/callback" |
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
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.
Uh oh!
There was an error while loading. Please reload this page.