@tangle-network/sandbox-cli 0.8.3-develop.20260623085144.b80a88e → 0.8.3-develop.20260623200213.63e05e9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -113,6 +113,12 @@ tangle ssh sbx_123
113
113
  tangle agent prompt sbx_123 "Summarize this repo"
114
114
  tangle agent task sbx_123 "Fix the failing tests"
115
115
 
116
+ # grant hub connections to the agent (see hub-reference.md for the 3 modes).
117
+ # the connection is an id or a provider name (resolved via `tangle hub connections`).
118
+ tangle agent task sbx_123 "triage issues" \
119
+ --connection github:github.issues.listIssues,github.issues.create
120
+ tangle agent task sbx_123 "file the report" --connection github:* --allow-writes
121
+
116
122
  # state and operations
117
123
  tangle secret list
118
124
  tangle snapshot list sbx_123
@@ -120,6 +126,11 @@ tangle process list sbx_123
120
126
  tangle fs ls sbx_123 /workspace
121
127
  ```
122
128
 
129
+ Hub commands (`tangle hub …`) and `tangle agent --connection` auto-mint a
130
+ short-lived platform Hub key from your `tangle auth login` session — no separate
131
+ key needed. See [`hub-reference.md`](./hub-reference.md) for the `--connection`
132
+ grant modes, `--allow-writes`, and `permissions revert-writes`.
133
+
123
134
  ## Provisioning Coverage
124
135
 
125
136
  `tangle sandbox create` exposes the full SDK provisioning surface, including image/environment, resources (CPU, memory, disk), lifetime and idle timeout, driver and backend selection (`opencode`, `claude-code`, `codex`, `cursor`, `amp`, and other registry backends), SSH and web terminal, env and secret injection, metadata, initial permissions, git clone, tool pre-install, BYOS3 storage, snapshot restore, and outbound network controls. Run `tangle sandbox create --help` for the canonical flag list.