-
Notifications
You must be signed in to change notification settings - Fork 30
feat(cua): CUA Gateway — guards, rulesets, research, ecosystem integrations #88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
acbcc29
c207c94
c186b29
4e710c7
01e3b14
54869d2
94ece01
2bed212
de34d0a
1f4f11c
7ae45fb
24bc0a9
33ccd60
6f147f3
c5e2fd8
3394c7a
23edf4f
44b3b17
06a47a2
39d3d46
56b21ec
dea0b8d
11bcd83
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| # Remote Desktop Permissive Ruleset | ||
| # Development-friendly CUA policy: allows all channels, observe-only enforcement | ||
| version: "1.2.0" | ||
| name: Remote Desktop Permissive | ||
| description: Permissive CUA security rules for development and testing | ||
| extends: remote-desktop | ||
|
|
||
| guards: | ||
| computer_use: | ||
| enabled: true | ||
| mode: observe | ||
|
|
||
| remote_desktop_side_channel: | ||
| clipboard_enabled: true | ||
| file_transfer_enabled: true | ||
| session_share_enabled: true | ||
|
|
||
| input_injection_capability: | ||
| allowed_input_types: | ||
| - "keyboard" | ||
| - "mouse" | ||
| - "touch" | ||
| require_postcondition_probe: false | ||
|
|
||
| settings: | ||
| fail_fast: false | ||
| verbose_logging: true | ||
| session_timeout_secs: 7200 # 2 hours |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| # Remote Desktop Strict Ruleset | ||
| # Maximum CUA security for high-security environments | ||
| version: "1.2.0" | ||
| name: Remote Desktop Strict | ||
| description: Strict CUA security rules for high-security remote desktop environments | ||
| extends: remote-desktop | ||
|
|
||
| guards: | ||
| computer_use: | ||
| enabled: true | ||
| mode: fail_closed | ||
| allowed_actions: | ||
| - "remote.session.connect" | ||
| - "remote.session.disconnect" | ||
| - "input.inject" | ||
|
|
||
| remote_desktop_side_channel: | ||
| clipboard_enabled: false | ||
| file_transfer_enabled: false | ||
| session_share_enabled: false | ||
bb-connor marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| input_injection_capability: | ||
| allowed_input_types: | ||
| - "keyboard" | ||
| require_postcondition_probe: true | ||
|
|
||
| settings: | ||
| fail_fast: true | ||
| verbose_logging: false | ||
| session_timeout_secs: 1800 # 30 minutes | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| # Remote Desktop Agent Ruleset | ||
| # Moderate CUA security policy for remote desktop AI agents | ||
| version: "1.2.0" | ||
| name: Remote Desktop Agent | ||
| description: Security rules for AI agents operating via remote desktop (CUA) | ||
| extends: ai-agent | ||
|
|
||
| guards: | ||
| computer_use: | ||
| enabled: true | ||
| mode: guardrail | ||
| allowed_actions: | ||
| - "remote.session.connect" | ||
| - "remote.session.disconnect" | ||
| - "remote.session.reconnect" | ||
| - "input.inject" | ||
| - "remote.clipboard" | ||
| - "remote.file_transfer" | ||
| - "remote.session_share" | ||
|
|
||
| remote_desktop_side_channel: | ||
| clipboard_enabled: true | ||
| file_transfer_enabled: true | ||
| session_share_enabled: false | ||
bb-connor marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| max_transfer_size_bytes: 104857600 # 100MB | ||
cursor[bot] marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Policy contradiction in remote-desktop ruleset configurationHigh Severity The |
||
|
|
||
| input_injection_capability: | ||
| allowed_input_types: | ||
| - "keyboard" | ||
| - "mouse" | ||
| require_postcondition_probe: false | ||
|
|
||
| settings: | ||
| fail_fast: false | ||
| verbose_logging: false | ||
| session_timeout_secs: 7200 # 2 hours | ||


Uh oh!
There was an error while loading. Please reload this page.