From 260d154db270732e2b0048a7c35ff9e9559da6ea Mon Sep 17 00:00:00 2001 From: ZhenYi <434836402@qq.com> Date: Thu, 16 Apr 2026 19:03:27 +0800 Subject: [PATCH] =?UTF-8?q?docs(landing):=20final=20alignment=20=E2=80=94?= =?UTF-8?q?=20rooms=20features,=20API=20endpoint,=20and=20Pro=20pricing=20?= =?UTF-8?q?tagline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/network/api/page.tsx | 2 +- src/app/pricing/page.tsx | 2 +- src/app/solutions/rooms/page.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/network/api/page.tsx b/src/app/network/api/page.tsx index 781e137..fe7b7e1 100644 --- a/src/app/network/api/page.tsx +++ b/src/app/network/api/page.tsx @@ -4,7 +4,7 @@ import {Globe, Key, Terminal} from 'lucide-react'; const ENDPOINTS = [ {method: 'GET', path: '/v1/agents', desc: 'List all agents in your workspace'}, - {method: 'POST', path: '/v1/rooms', desc: 'Create a new collaborative room'}, + {method: 'POST', path: '/v1/rooms', desc: 'Create a command-first room for humans and agents'}, {method: 'POST', path: '/v1/skills/publish', desc: 'Publish a skill to the registry'}, {method: 'GET', path: '/v1/network/stats', desc: 'Fetch global network statistics'}, ]; diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index a025bd7..f385914 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -16,7 +16,7 @@ const TIERS = [ name: 'Pro', price: '$29', period: 'per month', - desc: 'For developers and small teams building with AI.', + desc: 'Command as Service for teams — unlimited agents, full command stream audit, and priority compute.', features: [ 'Unlimited agents', '50 GB agent memory', diff --git a/src/app/solutions/rooms/page.tsx b/src/app/solutions/rooms/page.tsx index 15dfa5a..df03f89 100644 --- a/src/app/solutions/rooms/page.tsx +++ b/src/app/solutions/rooms/page.tsx @@ -3,7 +3,7 @@ import {useNavigate} from 'react-router-dom'; import {Bot, ShieldCheck, Users} from 'lucide-react'; const FEATURES = [ - {title: 'Real-time Multi-modal', desc: 'Text, code, and structured data shared simultaneously in a single session.'}, + {title: 'Command-first Multi-modal', desc: 'Text, code, and structured command data shared simultaneously in a single room.'}, {title: 'Human-in-the-Loop', desc: 'Approve, reject, or modify any agent action before it executes.'}, {title: 'Persistent Context', desc: 'Room state is versioned and resumable. Pick up where you left off.'}, {title: 'Access Control', desc: 'Invite-only rooms with fine-grained permission per agent and user.'},