agent-security-lens 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +2 -2
- package/.mcp/server.json +3 -3
- package/CHANGELOG.md +15 -0
- package/README.md +15 -2
- package/RELEASE-MANIFEST.json +49 -19
- package/docs/public-intelligence/agent-framework-install-decisions-v0.1.md +210 -0
- package/docs/public-intelligence/agent-install-decisions-v0.1.json +1154 -0
- package/docs/public-intelligence/asl-public-security-index-v0.1.md +90 -0
- package/docs/public-intelligence/top-mcp-security-signals-v0.1.md +278 -0
- package/docs/public-intelligence/top-skill-security-signals-v0.1.md +167 -0
- package/llms.txt +7 -0
- package/package.json +7 -7
- package/server.json +3 -3
- package/src/intelligence/cloud-client.mjs +1 -1
- package/src/intelligence/safety-score-v0.2.mjs +2 -1
package/.env.example
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# AgentSecurityLens public MCP client configuration.
|
|
2
2
|
ASL_MODE=online
|
|
3
3
|
ASL_DISABLE_CLOUD=0
|
|
4
|
-
ASL_API_URL=https://api.agentsecuritylens.
|
|
5
|
-
ASL_API_URLS=https://api.agentsecuritylens.
|
|
4
|
+
ASL_API_URL=https://agentsecuritylens-api.agentsecuritylens.workers.dev
|
|
5
|
+
ASL_API_URLS=https://agentsecuritylens-api.agentsecuritylens.workers.dev
|
|
6
6
|
ASL_API_TIMEOUT_MS=3500
|
|
7
7
|
ASL_API_KEY=
|
|
8
8
|
ASL_AGENT_ID=
|
package/.mcp/server.json
CHANGED
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"url": "https://github.com/professor2k8/agent-security-lens",
|
|
9
9
|
"source": "github"
|
|
10
10
|
},
|
|
11
|
-
"version": "0.1.
|
|
11
|
+
"version": "0.1.2",
|
|
12
12
|
"packages": [
|
|
13
13
|
{
|
|
14
14
|
"registryType": "npm",
|
|
15
15
|
"identifier": "agent-security-lens",
|
|
16
|
-
"version": "0.1.
|
|
16
|
+
"version": "0.1.2",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"name": "ASL_API_URL",
|
|
23
23
|
"description": "AgentSecurityLens Cloud Intelligence API URL.",
|
|
24
24
|
"isRequired": false,
|
|
25
|
-
"default": "https://api.agentsecuritylens.
|
|
25
|
+
"default": "https://agentsecuritylens-api.agentsecuritylens.workers.dev"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"name": "ASL_API_KEY",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
- Add public security intelligence index for agents and package readers.
|
|
6
|
+
- Add public MCP, Skill, and Agent Framework decision reports.
|
|
7
|
+
- Add machine-readable public install-decision export.
|
|
8
|
+
- Add GitHub OIDC workflow for publishing to the MCP Registry.
|
|
9
|
+
- Keep internal operations, private sync scripts, queues, and team telemetry out of the public release.
|
|
10
|
+
|
|
11
|
+
## 0.1.1
|
|
12
|
+
|
|
13
|
+
- Connect the MCP to the live AgentSecurityLens Cloud Intelligence API by default.
|
|
14
|
+
- Fix D1 strict-review selection when superseded assessment history is retained.
|
|
15
|
+
- Normalize D1 evidence into the public Evidence Schema.
|
|
16
|
+
- Align production release readiness with D1, R2 and operational KV storage.
|
|
17
|
+
|
|
3
18
|
## 0.1.0
|
|
4
19
|
|
|
5
20
|
First public release.
|
package/README.md
CHANGED
|
@@ -4,6 +4,19 @@ AgentSecurityLens (ASL) is a security intelligence MCP for autonomous agents.
|
|
|
4
4
|
|
|
5
5
|
Before an agent installs or enables an MCP, Skill, tool, prompt bundle, workflow, or memory component, it can ask ASL for a machine-readable install decision.
|
|
6
6
|
|
|
7
|
+
ASL is not a malware verdict tool. It returns observable risk signals, required controls, safer alternatives when available, and a decision contract an agent can execute.
|
|
8
|
+
|
|
9
|
+
## Public Intelligence
|
|
10
|
+
|
|
11
|
+
The public package includes a reviewed baseline so agents can still make conservative decisions when the cloud API is unavailable.
|
|
12
|
+
|
|
13
|
+
- [Public Security Index v0.1](docs/public-intelligence/asl-public-security-index-v0.1.md)
|
|
14
|
+
- [Top MCP Security Signals v0.1](docs/public-intelligence/top-mcp-security-signals-v0.1.md)
|
|
15
|
+
- [Top Skill Security Signals v0.1](docs/public-intelligence/top-skill-security-signals-v0.1.md)
|
|
16
|
+
- [Agent Framework Install Decisions v0.1](docs/public-intelligence/agent-framework-install-decisions-v0.1.md)
|
|
17
|
+
|
|
18
|
+
The online ASL intelligence API serves the current expanded catalog. The npm package intentionally does not ship the complete private intelligence database.
|
|
19
|
+
|
|
7
20
|
## Install
|
|
8
21
|
|
|
9
22
|
```json
|
|
@@ -24,8 +37,8 @@ Node.js 20 or newer is required.
|
|
|
24
37
|
The public MCP uses online intelligence by default:
|
|
25
38
|
|
|
26
39
|
```text
|
|
27
|
-
ASL_API_URL=https://api.agentsecuritylens.
|
|
28
|
-
ASL_API_URLS=https://api.agentsecuritylens.
|
|
40
|
+
ASL_API_URL=https://agentsecuritylens-api.agentsecuritylens.workers.dev
|
|
41
|
+
ASL_API_URLS=https://agentsecuritylens-api.agentsecuritylens.workers.dev
|
|
29
42
|
```
|
|
30
43
|
|
|
31
44
|
`ASL_API_URLS` may contain multiple comma-separated endpoints. The MCP tries them in order and falls back automatically.
|
package/RELEASE-MANIFEST.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": "0.1.0",
|
|
3
3
|
"package": "agent-security-lens",
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"generated_at": "2026-06-
|
|
4
|
+
"version": "0.1.2",
|
|
5
|
+
"generated_at": "2026-06-21T15:24:09.597Z",
|
|
6
6
|
"source": "ASL verified public release exporter",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".env.example",
|
|
10
|
-
"bytes":
|
|
11
|
-
"sha256": "
|
|
10
|
+
"bytes": 322,
|
|
11
|
+
"sha256": "6a920a289e9b1c900fceeee7ba65a1c3518b61dd0e8ecedda8703219d7e6733a"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
14
|
"path": ".github/ISSUE_TEMPLATE/bug.yml",
|
|
@@ -30,6 +30,11 @@
|
|
|
30
30
|
"bytes": 444,
|
|
31
31
|
"sha256": "86ac5975ffafc51f4045fbe6cb9959f938fa52c0ed59d87f294d8d701ab01a50"
|
|
32
32
|
},
|
|
33
|
+
{
|
|
34
|
+
"path": ".github/workflows/publish-mcp-registry.yml",
|
|
35
|
+
"bytes": 1074,
|
|
36
|
+
"sha256": "fd2bed721b5fdf3f1e8b09656b7aac46e333a827bfc7ea6d7756b1bcb2499cd2"
|
|
37
|
+
},
|
|
33
38
|
{
|
|
34
39
|
"path": ".gitignore",
|
|
35
40
|
"bytes": 80,
|
|
@@ -37,8 +42,8 @@
|
|
|
37
42
|
},
|
|
38
43
|
{
|
|
39
44
|
"path": ".mcp/server.json",
|
|
40
|
-
"bytes":
|
|
41
|
-
"sha256": "
|
|
45
|
+
"bytes": 1287,
|
|
46
|
+
"sha256": "befc15416fd0b04b1cca08796e3b98c9062ffe4717791d570e9c452d132acfc0"
|
|
42
47
|
},
|
|
43
48
|
{
|
|
44
49
|
"path": ".npmignore",
|
|
@@ -47,8 +52,8 @@
|
|
|
47
52
|
},
|
|
48
53
|
{
|
|
49
54
|
"path": "CHANGELOG.md",
|
|
50
|
-
"bytes":
|
|
51
|
-
"sha256": "
|
|
55
|
+
"bytes": 1261,
|
|
56
|
+
"sha256": "8bfa163446c5354f78427edd24c8419cc435ee024913ff08266f75a59cd6c651"
|
|
52
57
|
},
|
|
53
58
|
{
|
|
54
59
|
"path": "CODE_OF_CONDUCT.md",
|
|
@@ -72,8 +77,8 @@
|
|
|
72
77
|
},
|
|
73
78
|
{
|
|
74
79
|
"path": "README.md",
|
|
75
|
-
"bytes":
|
|
76
|
-
"sha256": "
|
|
80
|
+
"bytes": 5829,
|
|
81
|
+
"sha256": "e4bf0eacff185b9bdb2314b66ac7a2432b35f51ef8c7b010231bdc08809f7f35"
|
|
77
82
|
},
|
|
78
83
|
{
|
|
79
84
|
"path": "SECURITY.md",
|
|
@@ -120,6 +125,31 @@
|
|
|
120
125
|
"bytes": 3044,
|
|
121
126
|
"sha256": "8411a4bfacdd0f416fc79674e060524a03082aca18193347ef934771e06a65f1"
|
|
122
127
|
},
|
|
128
|
+
{
|
|
129
|
+
"path": "docs/public-intelligence/agent-framework-install-decisions-v0.1.md",
|
|
130
|
+
"bytes": 8855,
|
|
131
|
+
"sha256": "3f3edfd42a69f987bd90c2cb2867bb1f14db26877305bd522941134ded149a01"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"path": "docs/public-intelligence/agent-install-decisions-v0.1.json",
|
|
135
|
+
"bytes": 43605,
|
|
136
|
+
"sha256": "93fc1945488747e22f064e0bf3755d95e1558f41ebbd001322ec46c6c719fa3e"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"path": "docs/public-intelligence/asl-public-security-index-v0.1.md",
|
|
140
|
+
"bytes": 11404,
|
|
141
|
+
"sha256": "828fdcd367057a3b5583a80dc095b5e5365ef5e5f947ccf6ba95d964a1f50403"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"path": "docs/public-intelligence/top-mcp-security-signals-v0.1.md",
|
|
145
|
+
"bytes": 11894,
|
|
146
|
+
"sha256": "bd0cddfbb21bc55ec969df11e175fa0353ec4f855b86469bb7f971caf8ad6876"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"path": "docs/public-intelligence/top-skill-security-signals-v0.1.md",
|
|
150
|
+
"bytes": 7452,
|
|
151
|
+
"sha256": "7af2e8f359c4c5df94ea60092c40f8abde9d41f1b3d815bc023324730a676bda"
|
|
152
|
+
},
|
|
123
153
|
{
|
|
124
154
|
"path": "examples/dot-hermes/.hermes/config.json",
|
|
125
155
|
"bytes": 286,
|
|
@@ -172,13 +202,13 @@
|
|
|
172
202
|
},
|
|
173
203
|
{
|
|
174
204
|
"path": "llms.txt",
|
|
175
|
-
"bytes":
|
|
176
|
-
"sha256": "
|
|
205
|
+
"bytes": 1727,
|
|
206
|
+
"sha256": "adcbc320f9c5e13e4b71b57f47337d06008fdbfe567b39902643b9a3d1c9e010"
|
|
177
207
|
},
|
|
178
208
|
{
|
|
179
209
|
"path": "package.json",
|
|
180
210
|
"bytes": 1973,
|
|
181
|
-
"sha256": "
|
|
211
|
+
"sha256": "e2227a4030693158a795e445a5330956eb96e003eeba7a7c2ba5e1e2b0b70e9a"
|
|
182
212
|
},
|
|
183
213
|
{
|
|
184
214
|
"path": "profiles/generic-agent/profile.json",
|
|
@@ -307,8 +337,8 @@
|
|
|
307
337
|
},
|
|
308
338
|
{
|
|
309
339
|
"path": "server.json",
|
|
310
|
-
"bytes":
|
|
311
|
-
"sha256": "
|
|
340
|
+
"bytes": 1287,
|
|
341
|
+
"sha256": "befc15416fd0b04b1cca08796e3b98c9062ffe4717791d570e9c452d132acfc0"
|
|
312
342
|
},
|
|
313
343
|
{
|
|
314
344
|
"path": "src/assessment/assess.mjs",
|
|
@@ -337,8 +367,8 @@
|
|
|
337
367
|
},
|
|
338
368
|
{
|
|
339
369
|
"path": "src/intelligence/cloud-client.mjs",
|
|
340
|
-
"bytes":
|
|
341
|
-
"sha256": "
|
|
370
|
+
"bytes": 7505,
|
|
371
|
+
"sha256": "0878d7a3efdccd5fc788034f08d25712fe52b4c2107bf23d697bd961c0e6bfbb"
|
|
342
372
|
},
|
|
343
373
|
{
|
|
344
374
|
"path": "src/intelligence/component-intelligence.mjs",
|
|
@@ -357,8 +387,8 @@
|
|
|
357
387
|
},
|
|
358
388
|
{
|
|
359
389
|
"path": "src/intelligence/safety-score-v0.2.mjs",
|
|
360
|
-
"bytes":
|
|
361
|
-
"sha256": "
|
|
390
|
+
"bytes": 12015,
|
|
391
|
+
"sha256": "f0c9f7b816403034c54ca0b86ae6d523102e209cabd10075a0cf4e159a633c16"
|
|
362
392
|
},
|
|
363
393
|
{
|
|
364
394
|
"path": "src/observations/json-observations.mjs",
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
# Agent Framework Install Decisions v0.1
|
|
2
|
+
|
|
3
|
+
A public ASL decision view for autonomous agent frameworks and agent runtimes.
|
|
4
|
+
|
|
5
|
+
This public index is designed for autonomous agents. It exposes install decisions and evidence summaries, not ASL internal research operations.
|
|
6
|
+
|
|
7
|
+
## Coverage
|
|
8
|
+
|
|
9
|
+
- Published components in this report: 14
|
|
10
|
+
- strict_reviewed: 8
|
|
11
|
+
- curated_baseline: 6
|
|
12
|
+
- allow_with_restrictions: 7
|
|
13
|
+
- ask_user: 4
|
|
14
|
+
- avoid: 3
|
|
15
|
+
|
|
16
|
+
Unknown or automatic-only components should not receive automatic-install authorization.
|
|
17
|
+
|
|
18
|
+
### astron-agent
|
|
19
|
+
|
|
20
|
+
- Type: `agent-framework`
|
|
21
|
+
- State: `strict_reviewed`
|
|
22
|
+
- Decision: `allow_with_restrictions`
|
|
23
|
+
- Trust score: `80`
|
|
24
|
+
- Agent action: Install only after applying every safe-install control.
|
|
25
|
+
- Risk signals: mcp-tool-surface
|
|
26
|
+
- Evidence: source, technical_scan, permission_and_risk_analysis, independent_quality_review, recommendation_review (4 records)
|
|
27
|
+
- Safe-install controls:
|
|
28
|
+
- Grant only the permissions required for the current task and remove unused capabilities.
|
|
29
|
+
|
|
30
|
+
### oh-my-agent
|
|
31
|
+
|
|
32
|
+
- Type: `agent-framework`
|
|
33
|
+
- State: `strict_reviewed`
|
|
34
|
+
- Decision: `allow_with_restrictions`
|
|
35
|
+
- Trust score: `62`
|
|
36
|
+
- Agent action: Install only after applying every safe-install control.
|
|
37
|
+
- Risk signals: network-access, credential-access
|
|
38
|
+
- Evidence: source, technical_scan, permission_and_risk_analysis, independent_quality_review, recommendation_review (4 records)
|
|
39
|
+
- Safe-install controls:
|
|
40
|
+
- Allowlist required remote endpoints and deny undeclared destinations.
|
|
41
|
+
- Use a dedicated least-privilege credential with explicit scope and rotation.
|
|
42
|
+
- Grant only the permissions required for the current task and remove unused capabilities.
|
|
43
|
+
|
|
44
|
+
### Chorus
|
|
45
|
+
|
|
46
|
+
- Type: `agent-framework`
|
|
47
|
+
- State: `strict_reviewed`
|
|
48
|
+
- Decision: `ask_user`
|
|
49
|
+
- Trust score: `53`
|
|
50
|
+
- Agent action: Pause automatic installation and ask the user before enabling this component.
|
|
51
|
+
- Risk signals: license-undisclosed, remote-code-install
|
|
52
|
+
- Evidence: source, technical_scan, permission_and_risk_analysis, independent_quality_review, recommendation_review (4 records)
|
|
53
|
+
- Safe-install controls:
|
|
54
|
+
- Confirm usage rights and provenance before redistribution or enterprise deployment.
|
|
55
|
+
- Pin the exact package version, release or commit and install only inside an isolated environment.
|
|
56
|
+
- Grant only the permissions required for the current task and remove unused capabilities.
|
|
57
|
+
|
|
58
|
+
### cua
|
|
59
|
+
|
|
60
|
+
- Type: `agent-framework`
|
|
61
|
+
- State: `strict_reviewed`
|
|
62
|
+
- Decision: `ask_user`
|
|
63
|
+
- Trust score: `52`
|
|
64
|
+
- Agent action: Pause automatic installation and ask the user before enabling this component.
|
|
65
|
+
- Risk signals: credential-access, background-execution, network-access
|
|
66
|
+
- Evidence: source, technical_scan, permission_and_risk_analysis, independent_quality_review, recommendation_review (4 records)
|
|
67
|
+
- Safe-install controls:
|
|
68
|
+
- Use a dedicated least-privilege credential with explicit scope and rotation.
|
|
69
|
+
- Disable unattended triggers until audit logging and an explicit stop control are configured.
|
|
70
|
+
- Allowlist required remote endpoints and deny undeclared destinations.
|
|
71
|
+
|
|
72
|
+
### Agent-S
|
|
73
|
+
|
|
74
|
+
- Type: `agent-framework`
|
|
75
|
+
- State: `strict_reviewed`
|
|
76
|
+
- Decision: `ask_user`
|
|
77
|
+
- Trust score: `40`
|
|
78
|
+
- Agent action: Pause automatic installation and ask the user before enabling this component.
|
|
79
|
+
- Risk signals: credential-access, filesystem-write, background-execution, browser-access
|
|
80
|
+
- Evidence: source, technical_scan, permission_and_risk_analysis, independent_quality_review, recommendation_review (4 records)
|
|
81
|
+
- Safe-install controls:
|
|
82
|
+
- Use a dedicated least-privilege credential with explicit scope and rotation.
|
|
83
|
+
- Restrict write access to a dedicated workspace or temporary copy.
|
|
84
|
+
- Disable unattended triggers until audit logging and an explicit stop control are configured.
|
|
85
|
+
|
|
86
|
+
### OpenAgentsControl
|
|
87
|
+
|
|
88
|
+
- Type: `agent-framework`
|
|
89
|
+
- State: `strict_reviewed`
|
|
90
|
+
- Decision: `avoid`
|
|
91
|
+
- Trust score: `34`
|
|
92
|
+
- Agent action: Do not install automatically; choose an alternative or request explicit human approval.
|
|
93
|
+
- Risk signals: credential-access, dynamic-code-execution, filesystem-write, network-access
|
|
94
|
+
- Evidence: source, technical_scan, permission_and_risk_analysis, independent_quality_review, recommendation_review (4 records)
|
|
95
|
+
- Safe-install controls:
|
|
96
|
+
- Use a dedicated least-privilege credential with explicit scope and rotation.
|
|
97
|
+
- Disable dynamic code paths when possible and isolate execution from host credentials.
|
|
98
|
+
- Restrict write access to a dedicated workspace or temporary copy.
|
|
99
|
+
|
|
100
|
+
### lamda
|
|
101
|
+
|
|
102
|
+
- Type: `agent-framework`
|
|
103
|
+
- State: `strict_reviewed`
|
|
104
|
+
- Decision: `avoid`
|
|
105
|
+
- Trust score: `14`
|
|
106
|
+
- Agent action: Do not install automatically; choose an alternative or request explicit human approval.
|
|
107
|
+
- Risk signals: credential-access, filesystem-write, dynamic-code-execution, shell-execution, background-execution
|
|
108
|
+
- Evidence: source, technical_scan, permission_and_risk_analysis, independent_quality_review, recommendation_review (4 records)
|
|
109
|
+
- Safe-install controls:
|
|
110
|
+
- Use a dedicated least-privilege credential with explicit scope and rotation.
|
|
111
|
+
- Restrict write access to a dedicated workspace or temporary copy.
|
|
112
|
+
- Disable dynamic code paths when possible and isolate execution from host credentials.
|
|
113
|
+
|
|
114
|
+
### CowAgent
|
|
115
|
+
|
|
116
|
+
- Type: `agent-framework`
|
|
117
|
+
- State: `strict_reviewed`
|
|
118
|
+
- Decision: `avoid`
|
|
119
|
+
- Trust score: `6`
|
|
120
|
+
- Agent action: Do not install automatically; choose an alternative or request explicit human approval.
|
|
121
|
+
- Risk signals: credential-access, browser-access, shell-execution, background-execution, filesystem-write
|
|
122
|
+
- Evidence: source, technical_scan, permission_and_risk_analysis, independent_quality_review, recommendation_review (4 records)
|
|
123
|
+
- Safe-install controls:
|
|
124
|
+
- Use a dedicated least-privilege credential with explicit scope and rotation.
|
|
125
|
+
- Use an isolated browser profile without personal cookies or sessions.
|
|
126
|
+
- Require confirmation for every command and run inside an isolated environment.
|
|
127
|
+
|
|
128
|
+
### LangGraph
|
|
129
|
+
|
|
130
|
+
- Type: `agent-framework`
|
|
131
|
+
- State: `curated_baseline`
|
|
132
|
+
- Decision: `allow_with_restrictions`
|
|
133
|
+
- Trust score: `73`
|
|
134
|
+
- Agent action: Install only after applying every safe-install control.
|
|
135
|
+
- Risk signals: agent-orchestration, tool-chaining, network-access
|
|
136
|
+
- Evidence: baseline
|
|
137
|
+
- Safe-install controls:
|
|
138
|
+
- Review graph nodes that can call tools or external APIs.
|
|
139
|
+
- Apply allowlists to write-capable tools.
|
|
140
|
+
- Log state transitions for autonomous workflows.
|
|
141
|
+
|
|
142
|
+
### AutoGen
|
|
143
|
+
|
|
144
|
+
- Type: `agent-framework`
|
|
145
|
+
- State: `curated_baseline`
|
|
146
|
+
- Decision: `allow_with_restrictions`
|
|
147
|
+
- Trust score: `72`
|
|
148
|
+
- Agent action: Install only after applying every safe-install control.
|
|
149
|
+
- Risk signals: network-access, code-execution, multi-agent-delegation
|
|
150
|
+
- Evidence: baseline
|
|
151
|
+
- Safe-install controls:
|
|
152
|
+
- Restrict code execution tools until the task requires them.
|
|
153
|
+
- Use scoped API keys and avoid sharing personal credentials across agents.
|
|
154
|
+
- Log delegated tool calls for later review.
|
|
155
|
+
|
|
156
|
+
### CrewAI
|
|
157
|
+
|
|
158
|
+
- Type: `agent-framework`
|
|
159
|
+
- State: `curated_baseline`
|
|
160
|
+
- Decision: `allow_with_restrictions`
|
|
161
|
+
- Trust score: `70`
|
|
162
|
+
- Agent action: Install only after applying every safe-install control.
|
|
163
|
+
- Risk signals: network-access, multi-agent-delegation, tool-chaining
|
|
164
|
+
- Evidence: baseline
|
|
165
|
+
- Safe-install controls:
|
|
166
|
+
- Review tool assignments before running autonomous crews.
|
|
167
|
+
- Use least-privilege API credentials per task.
|
|
168
|
+
- Disable write-capable tools unless needed.
|
|
169
|
+
|
|
170
|
+
### Dify
|
|
171
|
+
|
|
172
|
+
- Type: `agent-framework`
|
|
173
|
+
- State: `curated_baseline`
|
|
174
|
+
- Decision: `allow_with_restrictions`
|
|
175
|
+
- Trust score: `67`
|
|
176
|
+
- Agent action: Install only after applying every safe-install control.
|
|
177
|
+
- Risk signals: workflow-automation, network-access, plugin-access, credential-access
|
|
178
|
+
- Evidence: baseline
|
|
179
|
+
- Safe-install controls:
|
|
180
|
+
- Review connected tools, plugins and workflow triggers before autonomous execution.
|
|
181
|
+
- Use scoped credentials for each integration.
|
|
182
|
+
- Separate test workflows from production workflows.
|
|
183
|
+
|
|
184
|
+
### OpenHands
|
|
185
|
+
|
|
186
|
+
- Type: `agent-framework`
|
|
187
|
+
- State: `curated_baseline`
|
|
188
|
+
- Decision: `allow_with_restrictions`
|
|
189
|
+
- Trust score: `63`
|
|
190
|
+
- Agent action: Install only after applying every safe-install control.
|
|
191
|
+
- Risk signals: shell-execution, filesystem-write, network-access, credential-access
|
|
192
|
+
- Evidence: baseline
|
|
193
|
+
- Safe-install controls:
|
|
194
|
+
- Run inside a dedicated workspace or container.
|
|
195
|
+
- Do not mount personal home directories by default.
|
|
196
|
+
- Use scoped credentials and review tool permissions before autonomous execution.
|
|
197
|
+
|
|
198
|
+
### OpenManus
|
|
199
|
+
|
|
200
|
+
- Type: `agent-framework`
|
|
201
|
+
- State: `curated_baseline`
|
|
202
|
+
- Decision: `ask_user`
|
|
203
|
+
- Trust score: `56`
|
|
204
|
+
- Agent action: Pause automatic installation and ask the user before enabling this component.
|
|
205
|
+
- Risk signals: shell-execution, network-access, browser-access, unknown-source
|
|
206
|
+
- Evidence: baseline
|
|
207
|
+
- Safe-install controls:
|
|
208
|
+
- Require user confirmation before enabling autonomous tool execution.
|
|
209
|
+
- Use a separate browser profile and isolated workspace.
|
|
210
|
+
- Record exact source URL and version before installation.
|