From 0e4ffce4faffc637e7ae3d204481f18c6028850e Mon Sep 17 00:00:00 2001 From: Vectry Date: Tue, 10 Feb 2026 16:27:32 +0000 Subject: [PATCH] chore: bump SDK versions, add pricing section to landing page --- apps/web/src/app/page.tsx | 149 +++++++++++++++++++++++++- packages/opencode-plugin/package.json | 2 +- packages/sdk-python/pyproject.toml | 2 +- packages/sdk-ts/package.json | 2 +- 4 files changed, 151 insertions(+), 4 deletions(-) diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index b9f3c24..2bc2646 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -15,6 +15,7 @@ import { Bot, Star, Clipboard, + Shield, } from "lucide-react"; export default function HomePage() { @@ -32,7 +33,34 @@ export default function HomePage() { url: "https://agentlens.vectry.tech", description: "Open-source agent observability platform that traces AI agent decisions, not just API calls.", - offers: { "@type": "Offer", price: "0", priceCurrency: "USD" }, + offers: [ + { + "@type": "Offer", + name: "Free", + price: "0", + priceCurrency: "USD", + description: + "20 sessions per day, full dashboard access, 1 API key, community support", + }, + { + "@type": "Offer", + name: "Starter", + price: "5", + priceCurrency: "USD", + billingIncrement: "P1M", + description: + "1,000 sessions per month, full dashboard access, unlimited API keys, email support", + }, + { + "@type": "Offer", + name: "Pro", + price: "20", + priceCurrency: "USD", + billingIncrement: "P1M", + description: + "100,000 sessions per month, full dashboard access, unlimited API keys, priority support", + }, + ], featureList: [ "Agent Decision Tracing", "Real-time Dashboard", @@ -513,6 +541,125 @@ export default function HomePage() { + {/* Pricing Section */} +
+
+
+
+
+ + Pricing +
+

+ Simple, transparent pricing +

+

+ No hidden fees. Start free, scale as you grow. Every plan includes the full dashboard experience. +

+
+ +
+ {/* Free Tier */} +
+
+

Free

+

For experimentation

+
+
+ $0 + /month +
+
    + {[ + "20 sessions per day", + "Full dashboard access", + "1 API key", + "Community support", + ].map((feature, i) => ( +
  • + + {feature} +
  • + ))} +
+ + Get Started Free + +
+ + {/* Starter Tier — Highlighted */} +
+
+ + Most Popular + +
+
+

Starter

+

For small teams

+
+
+ $5 + /month +
+
    + {[ + "1,000 sessions per month", + "Full dashboard access", + "Unlimited API keys", + "Email support", + ].map((feature, i) => ( +
  • + + {feature} +
  • + ))} +
+ + Start Starter Plan + +
+ + {/* Pro Tier */} +
+
+

Pro

+

For scaling teams

+
+
+ $20 + /month +
+
    + {[ + "100,000 sessions per month", + "Full dashboard access", + "Unlimited API keys", + "Priority support", + ].map((feature, i) => ( +
  • + + {feature} +
  • + ))} +
+ + Start Pro Plan + +
+
+
+
+ {/* Footer */}