@ayurak/aribot-cli 1.0.5 → 1.0.8
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 +222 -39
- package/aribot-report-183b4bd7.json +1569 -0
- package/dist/cli.d.ts +10 -1
- package/dist/cli.js +1173 -8
- package/dist/index.d.ts +19 -0
- package/dist/index.js +35 -0
- package/dist/sdk.d.ts +349 -0
- package/dist/sdk.js +808 -0
- package/package.json +34 -4
- package/src/cli.ts +1264 -9
- package/src/index.ts +42 -0
- package/src/sdk.ts +1017 -0
package/dist/cli.d.ts
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* Aribot CLI -
|
|
3
|
+
* Aribot CLI - Economic, Regulatory & Security APIs for Modern Applications
|
|
4
|
+
*
|
|
5
|
+
* Analyze your tech stack. Optimize architecture. Model costs. Identify threats dynamically.
|
|
6
|
+
*
|
|
7
|
+
* Features:
|
|
8
|
+
* - Advanced Threat Modeling (STRIDE, PASTA, NIST, Aristiun Framework)
|
|
9
|
+
* - 100+ Compliance Standards (SOC2, ISO27001, PCI-DSS, GDPR, HIPAA...)
|
|
10
|
+
* - Cloud Security (CSPM/CNAPP)
|
|
11
|
+
* - Economic Intelligence & FinOps
|
|
12
|
+
* - Red Team Automation
|
|
4
13
|
*
|
|
5
14
|
* Usage:
|
|
6
15
|
* aribot login # Authenticate with API key
|