πŸ›‘οΈ
Now Available on VS Code Marketplace

VS Code Extension

Visual development environment for building safe, policy-compliant AI agents

Design workflows visually, create policies with templates, get real-time security diagnostics, and monitor agent activityβ€”all without leaving VS Code.

18
Commands
14
Code Snippets
5
Policy Templates
4
Compliance Frameworks

⚑ Quick Install

Install from VS Code or command line

$ code --install-extension agent-os.agent-os-vscode

Or search "Agent OS" in VS Code Extensions (Ctrl+Shift+X)

🎯 Features & Tutorials

Click any feature to learn how to use it

πŸ‘€ Quick Preview

# Strict Security Policy - Agent OS
# Block dangerous operations, enforce rate limits

policy:
  name: "Strict Security Policy"
  version: "1.0"
  rules:
    - name: "Block file writes outside /tmp"
      condition: "agent.action == 'file.write'"
      constraint: "not path.startsWith('/tmp/')"
      action: "deny"
      message: "File writes restricted to /tmp/"
    
    - name: "Block external API calls"
      condition: "agent.action == 'http.request'"
      constraint: "not url.host.endsWith('.internal.com')"
      action: "deny"
      message: "External API calls not allowed"
    
    - name: "Rate limit LLM calls"
      condition: "agent.action == 'llm.call'"
      constraint: "rate > 100 per minute"
      action: "throttle"
      message: "LLM calls rate limited to 100/min"

Ready to Build Safe AI Agents?

Install the extension and start building policy-compliant AI agents in minutes. Zero configuration required.