Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

GitHub Copilot — Governance Capability Matrix

Superseded. The maintained, evidence-cited matrix is L0-L3 Capability Matrix. This page predates that consolidated matrix and is retained only as legacy detail — not, as an earlier revision of this page claimed, because any aa-devtool-saas source comment references this directory (none do; that claim was wrong and has been removed). Where the two disagree, the rendered matrix wins.

Governance level: L2Enforce
Detection: ~/.vscode/extensions/github.copilot-* directory
MCP support: Yes
Managed settings: Yes (VS Code user settings.json)

CapabilityStatusReason
network denyPartial — proxyVS Code routes LLM calls through the host network; proxy can intercept if configured as system proxy
network allowlistPartial — proxySame as network deny — proxy-only
file readNoCopilot extension runs inside the VS Code sandbox; eBPF kprobes require root and are unreliable on macOS
file writeNoSame as file read — no viable enforcement path without root on most developer machines
process spawnNoVS Code extension lifecycle is opaque; no spawn hook available
MCP allowlistYesThe adapter mutates the chat.mcp.servers object (removing denied entries, keeping only allowed ones when a non-empty allowlist is set) and forces chat.mcp.requireApproval: "always" when anything is denied, written into the VS Code user-settings file (aa-devtool-copilot/src/lib.rs, apply_mcp_governance)
sub-agent lineageNoNo CLI wrapper available; VS Code extension lifecycle is not observable via the agent identity flow
prompt redactionPartial — proxyProxy can intercept and redact if configured as system proxy
response redactionPartial — proxyProxy can redact inbound responses
budget enforcementPartial — proxyRequest-level token counting via proxy only; no semantic cost metadata
audit ingestionPartial — proxyHTTP-level events only; no action-level semantic audit

Notes

Copilot declares L2Enforce (aa-devtool-copilot/src/lib.rs), the same static ceiling as every other in-tree adapter. GovernanceLevel is a self-declared ceiling, not a measurement. Copilot operates entirely as a VS Code extension with no CLI surface and no SDK integration path, but it does write a managed-settings file: generate_managed_settings / apply_settings merge github.copilot.enable, chat.tools.autoApprove, chat.agent.maxRequests, chat.mcp.requireApproval and chat.mcp.deny into the VS Code user settings.json, preserving unrelated keys. That surface covers the MCP allowlist row above; it does not extend to terminal-exec or file-write, which still require aa-proxy (Layer 2) running alongside. eBPF can observe file and process activity only in privileged (root) environments on Linux — not recommended for typical developer workstations.


Last updated: 2026-08-01 by Chisanan232