cdk-insights 1.8.2 → 1.10.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 CHANGED
@@ -19,8 +19,9 @@ CDK Insights is **purpose-built for CDK** — it synthesizes your stacks and ana
19
19
 
20
20
  **Key differences:**
21
21
  - **Local-first** — static analysis runs entirely on your machine, no code uploaded
22
- - **Zero friction** — no signup, no account, no API keys
23
- - **Free forever** — static analysis with 100+ rules, JSON/Table/Markdown output, no limits
22
+ - **No account needed for static scans** — install via npm and run immediately
23
+ - **Free forever** — unlimited static analysis with 100+ rules, JSON/Table/Markdown output
24
+ - **AI insights optional** — sign up for a free account to get 500 AI-powered insights per month
24
25
  - **CDK-native** — understands constructs and patterns, not just CloudFormation
25
26
  - **CI/CD ready** — GitHub Action with PR comments and merge blocking
26
27
 
@@ -39,8 +39,12 @@ export declare const QUOTA_THRESHOLDS: {
39
39
  readonly WARNING_PERCENTAGE: 0.8;
40
40
  /** Hard stop threshold percentage */
41
41
  readonly HARD_STOP_PERCENTAGE: 0.9;
42
- /** Default max resources for trial */
43
- readonly DEFAULT_TRIAL_MAX_RESOURCES: 200;
42
+ /** Default monthly AI insight allowance for free / unlicensed users */
43
+ readonly DEFAULT_FREE_AI_INSIGHTS: 500;
44
+ /** Default monthly AI insight allowance for Pro */
45
+ readonly DEFAULT_PRO_AI_INSIGHTS: 5000;
46
+ /** Default monthly AI insight allowance per Team seat */
47
+ readonly DEFAULT_TEAM_AI_INSIGHTS_PER_SEAT: 10000;
44
48
  };
45
49
  export declare const UI_CONFIG: {
46
50
  /** Progress bar width in characters */