Add recommendations for workspace settings#7
Merged
Conversation
KTrain5169
approved these changes
Sep 1, 2025
Member
KTrain5169
left a comment
There was a problem hiding this comment.
I personally would have set this onto a separate page, but having it on setup might make a bit more sense, yeah.
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.
Adds recommendations for workspace settings for different scenarios, which are currently:
Dev Stream
{ "github.copilot.advanced": { "debug.overrideEngine": "someRandomString" // Disable suggestions by GitHub Copilot }, "neuropilot.currentlyAsNeuroAPI": "Neuro", // Change this to "Evil" when programming with Evil "neuropilot.permission.accessLintingAnalysis": "Autopilot", "neuropilot.permission.create": "Autopilot", "neuropilot.permission.delete": "Copilot", "neuropilot.permission.editActiveDocument": "Autopilot", "neuropilot.permission.openFiles": "Autopilot", "neuropilot.permission.rename": "Copilot", "neuropilot.permission.runTasks": "Copilot", "neuropilot.requestExpiryTimeout": 20000, "neuropilot.sendNewLintingProblemsOn": "inCurrentFile", "neuropilot.websocketUrl": "ws://localhost:8000", // Change this to the address and port of your Neuro API server }Chill Stream
{ "files.autoSave": "afterDelay", "files.autoSaveDelay": 1000, // Debug engine override for GitHub Copilot "github.copilot.advanced": { "debug.overrideEngine": "someRandomString" // Disable suggestions by GitHub Copilot }, "neuropilot.completionTrigger": "off", "neuropilot.currentlyAsNeuroAPI": "Neuro", // Change this to "Evil" when programming with Evil "neuropilot.cursorFollowsNeuro": true, "neuropilot.initialContext": "You are using an extension in Visual Studio Code that allows you to code on your own.", "neuropilot.permission.accessLintingAnalysis": "Autopilot", "neuropilot.permission.create": "Autopilot", "neuropilot.permission.delete": "Autopilot", "neuropilot.permission.editActiveDocument": "Autopilot", "neuropilot.permission.gitOperations": "Autopilot", "neuropilot.permission.gitTags": "Autopilot", "neuropilot.permission.openFiles": "Autopilot", "neuropilot.permission.rename": "Autopilot", "neuropilot.permission.requestCookies": "Off", "neuropilot.permission.runTasks": "Autopilot", "neuropilot.sendNewLintingProblemsOn": "inWorkspace", "neuropilot.websocketUrl": "ws://localhost:8000", // Change this to the address and port of your Neuro API server }Dev Stream (limited terminal access)
{ "github.copilot.advanced": { "debug.overrideEngine": "someRandomString" // Disable suggestions by GitHub Copilot }, "neuropilot.currentlyAsNeuroAPI": "Neuro", // Change this to "Evil" when programming with Evil "neuropilot.permission.accessLintingAnalysis": "Autopilot", "neuropilot.permission.create": "Autopilot", "neuropilot.permission.delete": "Copilot", "neuropilot.permission.editActiveDocument": "Autopilot", "neuropilot.permission.openFiles": "Autopilot", "neuropilot.permission.rename": "Copilot", "neuropilot.permission.runTasks": "Copilot", "neuropilot.permission.terminalAccess": "Copilot", // You can approve/deny the command she wants to run "neuropilot.requestExpiryTimeout": 60000, // Extra time to contemplate (set to 0 for infinite time) "neuropilot.sendNewLintingProblemsOn": "inCurrentFile", // Modify / add terminals depending on what you want her to be able to use "neuropilot.terminals": [ { "args": [], "name": "PowerShell", "path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" }, { "args": [ "/K" ], "name": "Command Prompt", "path": "C:\\Windows\\System32\\cmd.exe" }, { "args": [ "-i" ], "name": "Git Bash", "path": "C:\\Program Files\\Git\\bin\\bash.exe" } ], "neuropilot.websocketUrl": "ws://localhost:8000", // Change this to the address and port of your Neuro API server }Full terminal access
{ "github.copilot.advanced": { "debug.overrideEngine": "someRandomString" // Disable suggestions by GitHub Copilot }, "neuropilot.allowRunningAllTasks": true, "neuropilot.allowUnsafePaths": true, "neuropilot.currentlyAsNeuroAPI": "Neuro", // Change this to "Evil" when programming with Evil "neuropilot.cursorFollowsNeuro": true, // Change this to false if Vedal is supervising "neuropilot.excludePattern": "**/node_modules/**\n**/venv/**", // Change this if Vedal is supervising "neuropilot.initialContext": "You are using an extension in Visual Studio Code that allows you to code on your own.", "neuropilot.permission.accessLintingAnalysis": "Autopilot", "neuropilot.permission.create": "Autopilot", "neuropilot.permission.delete": "Autopilot", "neuropilot.permission.editActiveDocument": "Autopilot", "neuropilot.permission.editRemoteData": "Autopilot", "neuropilot.permission.gitConfigs": "Autopilot", "neuropilot.permission.gitOperations": "Autopilot", "neuropilot.permission.gitRemotes": "Autopilot", "neuropilot.permission.gitTags": "Autopilot", "neuropilot.permission.openFiles": "Autopilot", "neuropilot.permission.rename": "Autopilot", "neuropilot.permission.requestCookies": "Off", // Change this to "Copilot" if Vedal is supervising "neuropilot.permission.runTasks": "Autopilot", "neuropilot.permission.terminalAccess": "Autopilot", "neuropilot.sendNewLintingProblemsOn": "inWorkspace", // Modify / add terminals depending on what you want her to be able to use "neuropilot.terminals": [ { "args": [], "name": "PowerShell", "path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" }, { "args": [ "/K" ], "name": "Command Prompt", "path": "C:\\Windows\\System32\\cmd.exe" }, { "args": [ "-i" ], "name": "Git Bash", "path": "C:\\Program Files\\Git\\bin\\bash.exe" } ], "neuropilot.websocketUrl": "ws://localhost:8000", // Change this to the address and port of your Neuro API server }I am open to discussion on these settings.