@ayurak/aribot-cli 1.0.4 → 1.0.7
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 +956 -12
- 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 +1015 -13
- package/src/index.ts +42 -0
- package/src/sdk.ts +1017 -0
package/src/index.ts
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Aribot - Economic, Regulatory & Security APIs for Modern Applications
|
|
3
|
+
*
|
|
4
|
+
* Analyze your tech stack. Optimize architecture. Model costs. Identify threats dynamically.
|
|
5
|
+
* APIs that help you build better systems with practical, actionable recommendations.
|
|
6
|
+
*
|
|
7
|
+
* Features:
|
|
8
|
+
* - Advanced Threat Modeling (STRIDE, PASTA, NIST, Aristiun Framework)
|
|
9
|
+
* - Cloud Security (CSPM/CNAPP)
|
|
10
|
+
* - 100+ Compliance Standards
|
|
11
|
+
* - Economic Intelligence & FinOps
|
|
12
|
+
* - Red Team Automation
|
|
13
|
+
* - Secure AI Usage Management
|
|
14
|
+
*
|
|
15
|
+
* @packageDocumentation
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
export {
|
|
19
|
+
// Main client
|
|
20
|
+
AribotClient,
|
|
21
|
+
// Types
|
|
22
|
+
AribotConfig,
|
|
23
|
+
Diagram,
|
|
24
|
+
Threat,
|
|
25
|
+
ComplianceAssessment,
|
|
26
|
+
SecurityFinding,
|
|
27
|
+
PaginatedResponse,
|
|
28
|
+
// Errors
|
|
29
|
+
AribotError,
|
|
30
|
+
AuthenticationError,
|
|
31
|
+
RateLimitError,
|
|
32
|
+
APIError,
|
|
33
|
+
// Convenience functions
|
|
34
|
+
analyzeDiagram,
|
|
35
|
+
runComplianceCheck,
|
|
36
|
+
// Security utilities
|
|
37
|
+
RequestSigner,
|
|
38
|
+
SecureCredentialManager,
|
|
39
|
+
} from './sdk';
|
|
40
|
+
|
|
41
|
+
import { AribotClient } from './sdk';
|
|
42
|
+
export default AribotClient;
|