User Tools

Site Tools


config:vscode

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
config:vscode [2026/08/21 14:04] – [Claude Code Remote Control] Wuffconfig:vscode [2026/09/02 17:23] (current) Wuff
Line 170: Line 170:
 Note: Bypass permission mode does NOT work when remote-controlling sessions. Every instruction via a remote-controlled session changes the permission mode to the available setting from the external device and will prompt. Bypass permissions only works through the vscode extension chat. Note: Bypass permission mode does NOT work when remote-controlling sessions. Every instruction via a remote-controlled session changes the permission mode to the available setting from the external device and will prompt. Bypass permissions only works through the vscode extension chat.
  
 +This can be set globally in .claude/settings.json in the permissions block like so:
 +<code>
 +"permissions": {
 +  "allow": [
 +    "WebSearch",
 +    "WebFetch(domain:github.com)",
 +    "WebFetch(domain:raw.githubusercontent.com)",
 +    "WebFetch(domain:api.github.com)",
 +    "Edit",
 +    "Write",
 +    "Bash(node *)",
 +    "Bash(curl -s *)"
 +  ],
 +  "defaultMode": "bypassPermissions"
 +}
 +</code>
 ===== Claude Code Behaviour ===== ===== Claude Code Behaviour =====
  
Line 178: Line 194:
 </code> </code>
 Save the file. Claude Code will automatically ingest this instruction at the start of every new chat session. Save the file. Claude Code will automatically ingest this instruction at the start of every new chat session.
 +
 +===== Claude Code CLI =====
 +
 +To use the CLI of claude code installed with the extension, add the path to .profile or .bashrc (whichever is required on your system). The direct extension path keeps changing, but separate version is available through .local/bin. Note that similar to vscode, the sessions are stored per working folder and then shared between vscode extension and cli. Open CLI code in the appropriate working directory for your project to /resume sessions:
 +<code>
 +add claude to bashrc path:
 +# Add claude to path
 +#export PATH="$HOME/.vscode/extensions/anthropic.claude-code-2.1.245-linux-x64/resources/native-binary:$PATH"
 +export PATH="$HOME/.local/bin:$PATH"
 +</code>
 +
 +To add a Claude Code CLI status bar:
 +GitHub: https://github.com/bhutano/claude-usage-bar 
 +<code>
 +git clone https://github.com/bhutano/claude-usage-bar.git
 +cd claude-usage-bar
 +bash install.sh
 +</code>
 +{{.:pasted:20260830-022636.png}}
 +
 +
 +Multi-account proxy teamclaude:
 +https://github.com/KarpelesLab/teamclaude
 +
 +<code>
 +npm install -g @karpeleslab/teamclaude
 +teamclaude import
 +teamclaude alias --install
 +source .bashrc
 +teamclaude server --headless
 +claude
 +</code>
 +
  
config/vscode.1787317450.txt.gz · Last modified: by Wuff