@ayurak/aribot-cli 1.2.0 → 1.3.0
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 +56 -1
- package/dist/cli.js +435 -66
- package/dist/sdk.d.ts +8 -1
- package/dist/sdk.js +32 -10
- package/package.json +7 -2
- package/src/cli.ts +466 -68
- package/src/sdk.ts +35 -10
- package/tests/e2e.test.ts +244 -0
- package/tests/sdk.test.ts +500 -0
- package/vitest.config.ts +17 -0
package/README.md
CHANGED
|
@@ -204,6 +204,28 @@ aribot cloud-security --findings -s critical # Filter by severity
|
|
|
204
204
|
aribot cloud-security --dashboard # Security dashboard
|
|
205
205
|
```
|
|
206
206
|
|
|
207
|
+
### Cloud Scanning & Unified Scanner
|
|
208
|
+
```bash
|
|
209
|
+
# Dynamic scanning
|
|
210
|
+
aribot cloud-security --dynamic-scan <account-id> # Run dynamic cloud scan
|
|
211
|
+
|
|
212
|
+
# Unified scanning with scope
|
|
213
|
+
aribot cloud-security --unified-scan --scope account --account-id 123
|
|
214
|
+
aribot cloud-security --unified-scan --scope standard --scope-id CIS-AWS
|
|
215
|
+
aribot cloud-security --unified-scan --scope diagram --scope-id <uuid>
|
|
216
|
+
|
|
217
|
+
# Scanner rules management
|
|
218
|
+
aribot cloud-security --rules # List scanner rules
|
|
219
|
+
aribot cloud-security --rules -s critical # Filter by severity
|
|
220
|
+
aribot cloud-security --create-rule # Create custom rule (interactive)
|
|
221
|
+
aribot cloud-security --sync-rules # Sync from cloud providers
|
|
222
|
+
aribot cloud-security --scanner-stats # View scanner statistics
|
|
223
|
+
|
|
224
|
+
# Remediation
|
|
225
|
+
aribot cloud-security --remediate-preview <policy-id> --account-id 123
|
|
226
|
+
aribot cloud-security --remediate <policy-id> --account-id 123
|
|
227
|
+
```
|
|
228
|
+
|
|
207
229
|
### Economic Intelligence
|
|
208
230
|
```bash
|
|
209
231
|
aribot economics --dashboard # Economic intelligence dashboard
|
|
@@ -213,6 +235,23 @@ aribot economics --cost <id> # Cost intelligence
|
|
|
213
235
|
aribot economics --analyze <id> # Cost analysis
|
|
214
236
|
```
|
|
215
237
|
|
|
238
|
+
### Digital Twin
|
|
239
|
+
```bash
|
|
240
|
+
aribot digital-twin --providers # List cloud providers (AWS, Azure, GCP)
|
|
241
|
+
aribot digital-twin --resources # List cloud resources
|
|
242
|
+
aribot digital-twin --resources aws # Filter by provider
|
|
243
|
+
aribot digital-twin --health # Digital twin health status
|
|
244
|
+
aribot digital-twin --sync <provider-id> # Sync cloud resources
|
|
245
|
+
aribot digital-twin --discover <provider-id> # Discover new resources
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
### Dashboard
|
|
249
|
+
```bash
|
|
250
|
+
aribot dashboard --overview # Overall security dashboard
|
|
251
|
+
aribot dashboard --recent # Recent activity
|
|
252
|
+
aribot dashboard --risk # Risk summary
|
|
253
|
+
```
|
|
254
|
+
|
|
216
255
|
## TypeScript Support
|
|
217
256
|
|
|
218
257
|
Full TypeScript support with exported types:
|
|
@@ -293,6 +332,22 @@ try {
|
|
|
293
332
|
|
|
294
333
|
## Changelog
|
|
295
334
|
|
|
335
|
+
### v1.3.0 (2026-01-27)
|
|
336
|
+
- **Digital Twin API**: Full cloud provider integration (AWS, Azure, GCP)
|
|
337
|
+
- `aribot digital-twin --providers` - List connected providers
|
|
338
|
+
- `aribot digital-twin --health` - Health status
|
|
339
|
+
- `aribot digital-twin --resources` - List cloud resources
|
|
340
|
+
- **Economics Dashboard**: Real-time cost intelligence
|
|
341
|
+
- `aribot economics --dashboard` - Economic intelligence
|
|
342
|
+
- **Red Team Methodologies**: Threat modeling frameworks
|
|
343
|
+
- `aribot redteam --methodologies` - STRIDE, PASTA, NIST, MITRE ATT&CK, OWASP
|
|
344
|
+
- **Dashboard Overview**: Security metrics
|
|
345
|
+
- `aribot dashboard --overview` - Compliance status
|
|
346
|
+
- **Attack Path Analysis**: AI-powered attack simulation
|
|
347
|
+
- `aribot redteam --attack-paths -d <diagram-id>`
|
|
348
|
+
- Fixed endpoint URLs for v2 API compatibility
|
|
349
|
+
- All endpoints tested against production API
|
|
350
|
+
|
|
296
351
|
### v1.2.0
|
|
297
352
|
- Added AI resource with usage tracking and configuration
|
|
298
353
|
- Added Digital Twin health and provider endpoints
|
|
@@ -309,7 +364,7 @@ try {
|
|
|
309
364
|
|
|
310
365
|
## License
|
|
311
366
|
|
|
312
|
-
MIT License - Copyright (c)
|
|
367
|
+
MIT License - Copyright (c) 2026 Ayurak AI
|
|
313
368
|
|
|
314
369
|
---
|
|
315
370
|
|