Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions plugin/skills/jfrog-mcp-management/references/harness-vscode.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,20 @@ Rules for the `inputs` block:
- `description`: use the catalog `description`; if empty, construct a brief one.
- `Bearer` headers: use `"Bearer ${input:<id>}"` and ask only for the token.

## VS Code's sandbox

`chat.agent.sandbox.enabled` blocks filesystem access outside the workspace
for the agent's terminal commands only — MCP server `${input:...}` values are
resolved by VS Code itself and unaffected.

- `MODULE_NOT_FOUND` on Step 0's script: the script itself is unreadable, env
vars won't help. Re-run with `sandboxBypass: true` ("Run in terminal
outside the sandbox?") or disable `chat.agent.sandbox.enabled`.
- Unreadable `~/.jfrog/` (Unknown) or `EROFS` on the npm cache: unlike Codex,
env vars pass through the sandbox — prefer `JFROG_URL` +
`JFROG_ACCESS_TOKEN` ([agent-guard-common.md](agent-guard-common.md)) over
`--server`; same bypass fallback otherwise.

## Enable

Writing the entry is not enough — the server must be started via the UI. If it
Expand Down
Loading