You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The missing narrative: your credentials live in AnchorBrowser, the agent
never sees your password, declawed scopes what it can do. Three layers:
credential isolation, scoped permissions, audit + kill switch.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+34-21Lines changed: 34 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,29 +70,42 @@ That's it. Every `shield.task()` call is policy-checked, audited, and budgeted.
70
70
71
71
## How It Protects You
72
72
73
-
Your agent never touches your real browser. Every task goes through a policy checkpoint, then executes in a sandboxed cloud browser.
73
+
Your credentials live in AnchorBrowser, not in your code. Your agent never sees your password — it gets a scoped, ephemeral session, and declawed controls what it can do.
74
+
75
+
**Three layers of protection:**
76
+
77
+
1. **Credential isolation** — your password stays in AnchorBrowser. The agent gets a pre-authenticated session, never the credentials themselves.
78
+
2. **Scoped permissions** — the agent can only do what your policy allows. Read inbox? Yes. Delete contacts? Blocked. It can't go beyond the scope you define.
79
+
3. **Audit + kill switch** — every action logged (allowed and blocked). Budget enforced. Instant session destruction when you're done.
0 commit comments