docs(landing): update README and SEO defaults to Command as Service 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 18:58:28 +08:00
parent a4cb18580b
commit 4eb93da28b
2 changed files with 12 additions and 11 deletions

View File

@ -1,20 +1,21 @@
# Code API # GitDataAI
> 一个现代化的代码协作与团队沟通平台,融合 GitHub 的代码管理体验与 Slack 的实时沟通功能。 > Where Humans & Agents Engineer Together.
>
> Every action is a command. Every command is versioned, auditable, and composable.
## 项目概述 ## 项目概述
Code API 是一个全栈 monorepo 项目,采用 Rust 后端 + React 前端的技术栈。项目实现了类似 GitHub 的 Issue 追踪、Pull Request GitDataAI 是一个面向 Agentic 时代的开发协作平台,通过 **Command as Service** 理念,将人类与 AI 代理的协作标准化。每一次操作——创建仓库、发起 PR、调度 Agent——都是一条可版本化、可回放、可组合的命令。CLI 即 API工作流即可查询的命令流。
代码审查、Git 仓库管理,以及类似 Slack 的实时聊天 Room 功能。
### 核心功能 ### 核心功能
- **代码仓库管理** — Git 仓库浏览、分支管理、文件操作 - **Command as Service** — 所有操作均为版本化命令CLI 即 API支持回放与组合
- **Issue 追踪** — 创建、分配、标签、评论 Issue - **Git Repositories** — 完整 Git 操作分支、提交、合并HTTP/SSH 访问,内置分支保护
- **Pull Request** — 代码审查、Inline Comment、CI 状态检查 - **Collaborative Rooms** — 人类与 AI 代理共存的实时命令执行空间
- **实时聊天 (Room)** — 团队频道、消息回复、Thread 讨论 - **AI Agents** — 监听命令流,执行 Skill报告结果可持久化记忆
- **通知系统** — 邮件通知、Webhook 集成 - **Issue & Pull Request** — 追踪、审查、Agent 自动化
- **用户系统** — 认证、会话管理、权限控制 - **Skill Registry** — 可复用的 Agent 行为包,通过命令调用
## 技术栈 ## 技术栈

View File

@ -55,7 +55,7 @@ export function useHead({ title, description, image, url, canonical, robots, noi
const finalImage = image ? toAbsoluteUrl(image) : toAbsoluteUrl(DEFAULT_OG_IMAGE); const finalImage = image ? toAbsoluteUrl(image) : toAbsoluteUrl(DEFAULT_OG_IMAGE);
const finalType = type || "website"; const finalType = type || "website";
const robotsValue = robots || (noindex ? "noindex,nofollow" : "index,follow"); const robotsValue = robots || (noindex ? "noindex,nofollow" : "index,follow");
const finalDescription = description || "Code collaboration platform."; const finalDescription = description || "Every action is a command. Every command is versioned, auditable, and composable. The platform where humans and AI agents engineer together.";
setMetaTag("name", "viewport", "width=device-width, initial-scale=1"); setMetaTag("name", "viewport", "width=device-width, initial-scale=1");
setMetaTag("name", "robots", robotsValue); setMetaTag("name", "robots", robotsValue);