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.
β‘ Quick Install
Install from VS Code or command line
Or search "Agent OS" in VS Code Extensions (Ctrl+Shift+X)
π― Features & Tutorials
Click any feature to learn how to use it
Getting Started
Interactive onboarding that guides you through setup, configuration, and creating your first safe agent in under 5 minutes.
Policy Editor
Visual policy management with 5 templates (Strict Security, SOC 2, GDPR, Development, Rate Limiting). Real-time validation and testing.
Workflow Designer
Drag-and-drop visual builder for agent workflows. 4 node types, 8 action types. Export to Python, TypeScript, or Go.
Security Diagnostics
Real-time vulnerability detection as you code. 13 security rules covering os.system, eval, exec, SQL injection, and more.
Metrics Dashboard
Monitor policy checks, violations blocked, and agent activity in real-time. Charts, activity feed, and export capabilities.
IntelliSense & Snippets
14 code snippets for Python, TypeScript, and YAML. Context-aware completions for AgentOS APIs with hover documentation.
Enterprise Features
SSO with Azure AD, Okta, Google, GitHub. Role-based access control with 5 role levels. Compliance frameworks for SOC 2, GDPR, HIPAA, PCI DSS.
CI/CD Integration
One-click setup for GitHub Actions, GitLab CI, Jenkins, Azure Pipelines, and CircleCI. Pre-commit hooks for local validation.
π 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.