Part of Agent OS - Kernel-level governance for AI agents
Safe AI agents for GitHub, Jira, AWS Console, and more - directly in your browser.
- 🤖 Universal Agent Bar - Access agents from any supported page
- 🐙 GitHub Integration - PR reviews, policy checks, auto-merge
- 📋 Jira Integration - Issue automation, sprint planning
- ☁️ AWS Console Integration - Cost monitoring, security alerts
- ⚙️ Settings Page - Full configuration UI
- PR Policy Tab - See policy check results on every pull request
- Auto-merge - Merge safe PRs automatically
- Issue Labeler - Auto-label issues based on content
- Security Scan - Check code for vulnerabilities
- Break into Subtasks - Auto-decompose epics and stories
- Story Point Estimation - AI-powered estimates
- Find Related PRs - Link issues to code changes
- Sprint Planning - Optimize sprint assignments
- Cost Alerts - Get notified of budget overruns
- Security Scan - Audit security groups and IAM policies
- Resource Optimization - Suggestions for right-sizing
- Compliance Check - Verify against SOC2, HIPAA, etc.
Floating action button on every supported page:
- Create agents for the current page
- View running agents
- Access audit logs
- Quick settings
- Visit the Chrome Web Store
- Search for "AgentOS"
- Click "Add to Chrome"
-
Clone the repository:
git clone https://github.com/microsoft/agent-governance-toolkit.git cd agent-os/extensions/chrome -
Install dependencies and build:
npm install npm run build
-
Open Chrome and go to
chrome://extensions/ -
Enable "Developer mode" (toggle in top right)
-
Click "Load unpacked" and select the
distfolder
- Click the extension icon to open the popup
- Sign in with your AgentOS account (or create one)
- Enable platforms in Settings (GitHub, Jira, AWS)
- Visit a supported site and see agents in action
The popup shows:
- Status Banner - AgentOS active/disabled
- Current Page - Detected platform
- Active Agents - Running agents with controls
- Suggested Agents - Recommendations for the page
Click the ⚙️ icon to access settings:
| Setting | Default | Description |
|---|---|---|
| Enable AgentOS | true | Master on/off switch |
| Notifications | true | Browser notifications |
| Auto-run Agents | false | Run agents automatically |
| GitHub | true | Enable GitHub integration |
| Jira | true | Enable Jira integration |
| AWS | false | Enable AWS Console integration |
| Platform | Status | Features |
|---|---|---|
| GitHub | ✅ Full | PR reviews, issue automation, security |
| Jira | ✅ Full | Sprint planning, estimation, breakdown |
| AWS Console | ✅ Full | Cost, security, optimization |
| GitLab | 🚧 Coming | Similar to GitHub |
| Linear | 🚧 Coming | Similar to Jira |
| Browser | Status |
|---|---|
| Chrome | ✅ Supported |
| Edge | ✅ Supported |
| Brave | ✅ Supported |
| Firefox | 🚧 Coming soon |
| Safari | 🚧 Planned |
- Minimal Permissions - Only requests what's needed
- Local-first - Agent configs stored locally
- Optional Cloud Sync - Encrypted if enabled
- No Tracking - No analytics without consent
- Open Source - Inspect the code yourself
# Install dependencies
npm install
# Development build (watch mode)
npm run dev
# Production build
npm run build
# Type checking
npm run type-check
# Linting
npm run lintchrome/
├── src/
│ ├── background/ # Service worker
│ ├── content/ # Platform content scripts
│ │ ├── github.ts
│ │ ├── jira.ts
│ │ └── aws.ts
│ ├── popup/ # Extension popup (React)
│ ├── options/ # Settings page (React)
│ └── shared/ # Shared utilities
├── manifest.json # Extension manifest
├── webpack.config.js # Build configuration
└── package.json
See CONTRIBUTING.md for guidelines.
MIT License - see LICENSE.
Made with 🛡️ by the Agent OS team
GitHub | Documentation | Report Issue
Part of Agent OS - Kernel-level governance for AI agents