agentseal 0.3.0 → 0.3.1
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/README.md +13 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -225,10 +225,22 @@ The open source scanner covers 173 probes. [AgentSeal Pro](https://agentseal.org
|
|
|
225
225
|
|
|
226
226
|
[Start scanning at agentseal.org](https://agentseal.org)
|
|
227
227
|
|
|
228
|
-
##
|
|
228
|
+
## NEW: `agentseal guard` (Python CLI)
|
|
229
|
+
|
|
230
|
+
One command scans your entire machine for AI agent threats. No config, no API keys needed.
|
|
229
231
|
|
|
230
232
|
```bash
|
|
231
233
|
pip install agentseal
|
|
234
|
+
agentseal guard
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
- Auto-discovers **17 AI agents** (Claude, Cursor, VS Code, Windsurf, Cline, Roo Code, Zed, and more)
|
|
238
|
+
- Scans every **skill/rules file** for malware, credential theft, prompt injection, reverse shells
|
|
239
|
+
- Audits every **MCP server config** for sensitive path access, hardcoded API keys, broad permissions
|
|
240
|
+
- Red/yellow/green results with numbered action items
|
|
241
|
+
|
|
242
|
+
```bash
|
|
243
|
+
# Also available: prompt injection scanner
|
|
232
244
|
agentseal scan --prompt "You are a helpful assistant" --model gpt-4o
|
|
233
245
|
```
|
|
234
246
|
|
package/package.json
CHANGED