docs(landing): final alignment — rooms features, API endpoint, and Pro pricing tagline
Some checks are pending
CI / Rust Lint & Check (push) Waiting to run
CI / Rust Tests (push) Waiting to run
CI / Frontend Lint & Type Check (push) Waiting to run
CI / Frontend Build (push) Blocked by required conditions

This commit is contained in:
ZhenYi 2026-04-16 19:03:27 +08:00
parent c9f4e2dbe7
commit 260d154db2
3 changed files with 3 additions and 3 deletions

View File

@ -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'},
];

View File

@ -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',

View File

@ -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.'},