forked from microsoft/agent-governance-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
211 lines (211 loc) · 5.25 KB
/
package.json
File metadata and controls
211 lines (211 loc) · 5.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
{
"name": "@microsoft/agent-os-copilot-extension",
"version": "1.0.0",
"description": "Public Preview — AgentOS GitHub Copilot Extension: Build safe AI agents with natural language and 0% policy violations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/agent-governance-toolkit"
},
"keywords": [
"github",
"copilot",
"extension",
"safety",
"ai",
"agents",
"code-review",
"security",
"agent-os",
"compliance",
"gdpr",
"hipaa",
"soc2"
],
"author": "Microsoft Corporation",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint src --ext .ts",
"prepare": "npm run build"
},
"dependencies": {
"@octokit/webhooks": "^14.2.0",
"axios": "^1.6.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.1.0",
"jest": "^30.3.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.7.0"
},
"copilotExtension": {
"name": "agentos",
"displayName": "AgentOS",
"description": "Build safe AI agents with natural language and 0% policy violations",
"publisher": "agent-os",
"version": "1.0.0",
"capabilities": {
"filter": true,
"chat": true,
"actions": true
},
"permissions": [
"copilot:suggestions:filter",
"copilot:suggestions:annotate",
"copilot:chat:respond",
"copilot:context:read",
"github:actions:write",
"github:contents:write"
],
"chatCommands": [
{
"name": "create",
"description": "Create a new agent from natural language description",
"examples": [
"@agentos create agent for processing customer feedback",
"@agentos create agent to monitor API uptime"
]
},
{
"name": "design",
"description": "Design a multi-step workflow for complex tasks",
"examples": [
"@agentos design workflow to generate daily reports"
]
},
{
"name": "templates",
"description": "Browse 50+ pre-built agent templates",
"examples": [
"@agentos templates",
"@agentos templates devops"
]
},
{
"name": "test",
"description": "Test agent with scenarios and detect edge cases",
"examples": [
"@agentos test this agent"
]
},
{
"name": "debug",
"description": "Debug agent failures and get fix suggestions",
"examples": [
"@agentos why did this agent fail?"
]
},
{
"name": "review",
"description": "Review code with CMVK multi-model verification",
"examples": [
"@agentos review"
]
},
{
"name": "policy",
"description": "Show or configure safety policies",
"examples": [
"@agentos policy"
]
},
{
"name": "compliance",
"description": "Check compliance with GDPR, HIPAA, SOC2, PCI DSS",
"examples": [
"@agentos compliance gdpr",
"@agentos compliance soc2"
]
},
{
"name": "security",
"description": "Run security audit on agent code",
"examples": [
"@agentos security"
]
},
{
"name": "deploy",
"description": "Deploy agent to GitHub Actions",
"examples": [
"@agentos deploy"
]
},
{
"name": "optimize",
"description": "Get performance optimization suggestions",
"examples": [
"@agentos optimize"
]
},
{
"name": "audit",
"description": "View recent safety audit log",
"examples": [
"@agentos audit"
]
},
{
"name": "help",
"description": "Show help and available commands"
}
],
"slashCommands": [
{
"command": "/agent-new",
"description": "Create a new agent"
},
{
"command": "/policy-add",
"description": "Add a safety policy"
},
{
"command": "/safety-check",
"description": "Run safety check on code"
},
{
"command": "/deploy",
"description": "Deploy to GitHub Actions"
},
{
"command": "/templates",
"description": "Browse templates"
}
],
"icon": "images/icon.png",
"categories": [
"AI Agents",
"Security",
"Code Quality",
"Automation",
"Compliance"
],
"features": [
"Natural language to agent code generation",
"50+ pre-built agent templates",
"0% policy violation guarantee",
"GDPR, HIPAA, SOC2, PCI DSS compliance checking",
"Multi-model code verification (CMVK)",
"GitHub Actions deployment",
"Real-time safety annotations"
]
}
}