From f4184a3bbce006f430f90ed907bf076c01215c6c Mon Sep 17 00:00:00 2001 From: Nicholas Kissel Date: Wed, 28 Jan 2026 17:15:27 -0800 Subject: [PATCH] chore(site): links and styling --- frontend/packages/website/src/components/FeatureGrid.tsx | 8 ++++---- frontend/packages/website/src/components/Hero.tsx | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/packages/website/src/components/FeatureGrid.tsx b/frontend/packages/website/src/components/FeatureGrid.tsx index ede7386..be17c62 100644 --- a/frontend/packages/website/src/components/FeatureGrid.tsx +++ b/frontend/packages/website/src/components/FeatureGrid.tsx @@ -84,10 +84,10 @@ export function FeatureGrid() { hoverBgColor="group-hover:bg-purple-500/20" glowShadow="group-hover:shadow-[0_0_15px_rgba(168,85,247,0.5)]" /> -

Handling Permissions

+

Universal Schema

- Approve or deny tool executions remotely over HTTP. Human-in-the-loop flows work seamlessly across the network. + Standardized session schema that covers all features of all agents. Includes tool calls, permission requests, file edits, etc. Approve or deny tool executions remotely over HTTP.

@@ -108,7 +108,7 @@ export function FeatureGrid() { hoverBgColor="group-hover:bg-amber-500/20" glowShadow="group-hover:shadow-[0_0_15px_rgba(245,158,11,0.5)]" /> -

Managing Sessions

+

Automatic Agent Installation

Create sessions, send messages, persist transcripts. Full session lifecycle management over HTTP. @@ -134,7 +134,7 @@ export function FeatureGrid() { />

Runs Inside Any Sandbox

-

+

Lightweight static binary. One curl command to install inside E2B, Daytona, Vercel Sandboxes, or Docker.

diff --git a/frontend/packages/website/src/components/Hero.tsx b/frontend/packages/website/src/components/Hero.tsx index 324da2a..bc61e66 100644 --- a/frontend/packages/website/src/components/Hero.tsx +++ b/frontend/packages/website/src/components/Hero.tsx @@ -152,7 +152,7 @@ function UniversalAPIDiagram() { const CopyInstallButton = () => { const [copied, setCopied] = useState(false); - const installCommand = 'SandboxAgent.connect({ endpoint: "..." })'; + const installCommand = 'npx skills add https://sandboxagent.dev/docs'; const handleCopy = async () => { try {