@clipboard-health/clearance 1.4.0 → 1.4.2
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 +6 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -144,17 +144,15 @@ SAFEHOUSE_CLEARANCE="$(npm root -g)/@clipboard-health/clearance/safehouse/safeho
|
|
|
144
144
|
-- codex --dangerously-bypass-approvals-and-sandbox
|
|
145
145
|
```
|
|
146
146
|
|
|
147
|
-
For day-to-day agent use,
|
|
148
|
-
|
|
149
|
-
shell aliases:
|
|
147
|
+
For day-to-day agent use, configure your allow-host files and add shell
|
|
148
|
+
aliases:
|
|
150
149
|
|
|
151
150
|
```bash
|
|
152
|
-
|
|
153
|
-
SAFEHOUSE_CLAUDE_PROXY="$(npm root -g)/@clipboard-health/clearance/safehouse/safehouse-claude-proxy"
|
|
151
|
+
SAFEHOUSE="$(npm root -g)/@clipboard-health/clearance/safehouse"
|
|
154
152
|
export CLEARANCE_ALLOW_HOSTS_FILES="$HOME/code/<your-repo>/clearance-allow-hosts:$HOME/.config/clearance/personal-allow-hosts"
|
|
155
153
|
|
|
156
|
-
alias codex-proxy="$
|
|
157
|
-
alias claude-proxy="$
|
|
154
|
+
alias codex-proxy="$SAFEHOUSE/safehouse-clearance codex --dangerously-bypass-approvals-and-sandbox"
|
|
155
|
+
alias claude-proxy="$SAFEHOUSE/safehouse-claude-proxy"
|
|
158
156
|
```
|
|
159
157
|
|
|
160
158
|
`safehouse-claude-proxy` runs Claude through Safehouse with
|
|
@@ -173,7 +171,7 @@ credentials flag through the wrapper:
|
|
|
173
171
|
|
|
174
172
|
```bash
|
|
175
173
|
aws sso login --profile <profile>
|
|
176
|
-
AWS_PROFILE=<profile> "$
|
|
174
|
+
AWS_PROFILE=<profile> "$SAFEHOUSE/safehouse-clearance" \
|
|
177
175
|
--enable=cloud-credentials --env-pass=AWS_PROFILE,AWS_REGION,AWS_SDK_LOAD_CONFIG,AWS_CONFIG_FILE,AWS_SHARED_CREDENTIALS_FILE,AWS_CA_BUNDLE \
|
|
178
176
|
-- codex --dangerously-bypass-approvals-and-sandbox
|
|
179
177
|
```
|
package/package.json
CHANGED