@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/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;