diff --git a/README.md b/README.md index f2d8c15..9786a7f 100644 --- a/README.md +++ b/README.md @@ -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 -代码审查、Git 仓库管理,以及类似 Slack 的实时聊天 Room 功能。 +GitDataAI 是一个面向 Agentic 时代的开发协作平台,通过 **Command as Service** 理念,将人类与 AI 代理的协作标准化。每一次操作——创建仓库、发起 PR、调度 Agent——都是一条可版本化、可回放、可组合的命令。CLI 即 API,工作流即可查询的命令流。 ### 核心功能 -- **代码仓库管理** — Git 仓库浏览、分支管理、文件操作 -- **Issue 追踪** — 创建、分配、标签、评论 Issue -- **Pull Request** — 代码审查、Inline Comment、CI 状态检查 -- **实时聊天 (Room)** — 团队频道、消息回复、Thread 讨论 -- **通知系统** — 邮件通知、Webhook 集成 -- **用户系统** — 认证、会话管理、权限控制 +- **Command as Service** — 所有操作均为版本化命令,CLI 即 API,支持回放与组合 +- **Git Repositories** — 完整 Git 操作(分支、提交、合并),HTTP/SSH 访问,内置分支保护 +- **Collaborative Rooms** — 人类与 AI 代理共存的实时命令执行空间 +- **AI Agents** — 监听命令流,执行 Skill,报告结果,可持久化记忆 +- **Issue & Pull Request** — 追踪、审查、Agent 自动化 +- **Skill Registry** — 可复用的 Agent 行为包,通过命令调用 ## 技术栈 diff --git a/src/hooks/useHead.ts b/src/hooks/useHead.ts index 5a3a225..f09175e 100644 --- a/src/hooks/useHead.ts +++ b/src/hooks/useHead.ts @@ -55,7 +55,7 @@ export function useHead({ title, description, image, url, canonical, robots, noi const finalImage = image ? toAbsoluteUrl(image) : toAbsoluteUrl(DEFAULT_OG_IMAGE); const finalType = type || "website"; 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", "robots", robotsValue);