Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions .github/copilot-instructions.md

This file was deleted.

7 changes: 0 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,5 @@ __pycache__/
.pytest_cache/
*.egg-info/

# AI / workflow tool state (local only)
.claude/
.opencode/
.trellis/
.omc/
CLAUDE.local.md

# Local config
*.local
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### 🧹 Repository Simplification

- Removed repository-scoped AI workflow frameworks and generated automation from `.trellis/`, `.claude/`, and `.opencode/`
- Simplified contributor guidance to a minimal `AGENTS.md` / `CLAUDE.md` / Copilot instruction surface
- Simplified contributor guidance to a minimal `AGENTS.md` / `CLAUDE.md` surface
- Removed residual AI workflow docs from `docs/agents/` and deleted the repository Copilot instruction file
- Dropped the duplicate root `docs/api/`, `docs/architecture/`, and `docs/guide/` trees in favor of the canonical localized docs
- Removed the legacy `/advanced` and `/digital-human` app aliases so the product runtime has a single `/app` entry
- Removed deprecated module-level dialogue orchestrator wrappers and kept orchestration instance-scoped
- Stopped exposing changelog navigation in the landing page and docs site
- Corrected stale docs and Pages copy that still claimed Docker, Render, CLI scaffolds, templates, and old backend paths
- Consolidated historical notes from the removed `changelog/` directory into this file
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<a href="#features"><strong>Features</strong></a> ·
<a href="#performance"><strong>Performance</strong></a> ·
<a href="#architecture"><strong>Architecture</strong></a> ·
<a href="docs/"><strong>Documentation</strong></a> ·
<a href="docs/en/index.md"><strong>Documentation</strong></a> ·
<a href="CHANGELOG.md"><strong>Changelog</strong></a> ·
<a href="README.zh-CN.md"><strong>中文</strong></a>
</p>
Expand Down Expand Up @@ -180,7 +180,7 @@ Benchmarks measured on typical devices:
| **Bundle Size** | 180 KB (gzipped) | 180 KB | 180 KB |
| **Memory Usage** | ~120 MB | ~80 MB | ~60 MB |

> Performance automatically scales based on device capabilities. See [Performance Module](docs/architecture/) for details.
> Performance automatically scales based on device capabilities. See the [architecture overview](docs/en/architecture/overview.md) for details.

---

Expand Down Expand Up @@ -218,7 +218,7 @@ Three focused domains minimize re-renders:
| `systemStore` | Connection status, errors, performance metrics |
| `digitalHumanStore` | Avatar runtime state (expression, animation, audio) |

**[📖 Architecture Docs →](docs/architecture/)**
**[📖 Architecture Docs →](docs/en/architecture/overview.md)**

---

Expand Down Expand Up @@ -260,9 +260,9 @@ src/

This project uses Vite path aliases configured in `vite.config.ts` and `tsconfig.json`:

| Alias | Maps to |
| ------ | -------- |
| `@/*` | `src/*` |
| Alias | Maps to |
| ----- | ------- |
| `@/*` | `src/*` |

---

Expand All @@ -278,7 +278,7 @@ npm run build:pages
2. Push to `master` — CI auto-deploys
3. Live at: `https://lessup.github.io/meta-human/`

**[📖 Deployment Guide →](docs/guide/installation.md)**
**[📖 Deployment Guide →](docs/en/guide/installation.md)**

---

Expand Down Expand Up @@ -337,10 +337,10 @@ npm run test:ui # Vitest UI mode

## 📚 Documentation

- **[Quick Start](docs/guide/)** — Get running in 5 minutes
- **[API Reference](docs/api/)** — Backend API documentation
- **[Architecture](docs/architecture/)** — System design
- **[Configuration](docs/guide/configuration.md)** — Environment variables and settings
- **[Quick Start](docs/en/guide/getting-started.md)** — Get running in 5 minutes
- **[API Reference](docs/en/api/overview.md)** — Backend API documentation
- **[Architecture](docs/en/architecture/overview.md)** — System design
- **[Configuration](docs/en/guide/configuration.md)** — Environment variables and settings
- **[Contributing](docs/contributing/)** — Contribution guidelines
- **[Changelog](CHANGELOG.md)** — Version history

Expand Down
22 changes: 11 additions & 11 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<a href="#features"><strong>功能</strong></a> ·
<a href="#performance"><strong>性能</strong></a> ·
<a href="#architecture"><strong>架构</strong></a> ·
<a href="docs/"><strong>文档</strong></a> ·
<a href="docs/zh/index.md"><strong>文档</strong></a> ·
<a href="CHANGELOG.md"><strong>更新日志</strong></a> ·
<a href="README.md"><strong>English</strong></a>
</p>
Expand Down Expand Up @@ -180,7 +180,7 @@ const response = await dialogueService.send({
| **包体积** | 180 KB (gzipped) | 180 KB | 180 KB |
| **内存占用** | ~120 MB | ~80 MB | ~60 MB |

> 性能根据设备能力自动调节。详见[性能模块文档](docs/architecture/)。
> 性能根据设备能力自动调节。详见[架构概览](docs/zh/architecture/overview.md)。

---

Expand Down Expand Up @@ -218,7 +218,7 @@ const response = await dialogueService.send({
| `systemStore` | 连接状态、错误、性能指标 |
| `digitalHumanStore` | 数字人运行时状态(表情、动画、音频) |

**[📖 架构文档 →](docs/architecture/)**
**[📖 架构文档 →](docs/zh/architecture/overview.md)**

---

Expand Down Expand Up @@ -260,9 +260,9 @@ src/

本项目使用 Vite 路径别名,配置在 `vite.config.ts` 和 `tsconfig.json`:

| 别名 | 映射路径 |
| ------ | -------- |
| `@/*` | `src/*` |
| 别名 | 映射路径 |
| ----- | -------- |
| `@/*` | `src/*` |

---

Expand All @@ -278,7 +278,7 @@ npm run build:pages
2. 推送到 `master` — CI 自动部署
3. 访问:`https://lessup.github.io/meta-human/`

**[📖 部署指南 →](docs/guide/installation.md)**
**[📖 部署指南 →](docs/zh/guide/installation.md)**

---

Expand Down Expand Up @@ -337,10 +337,10 @@ npm run test:ui # Vitest UI 模式

## 📚 文档

- **[快速开始](docs/guide/)** — 5 分钟快速上手
- **[API 参考](docs/api/)** — 后端 API 文档
- **[架构设计](docs/architecture/)** — 系统设计
- **[配置说明](docs/guide/configuration.md)** — 环境变量与设置
- **[快速开始](docs/zh/guide/getting-started.md)** — 5 分钟快速上手
- **[API 参考](docs/zh/api/overview.md)** — 后端 API 文档
- **[架构设计](docs/zh/architecture/overview.md)** — 系统设计
- **[配置说明](docs/zh/guide/configuration.md)** — 环境变量与设置
- **[贡献指南](docs/contributing/)** — 贡献指南
- **[更新日志](CHANGELOG.md)** — 版本历史

Expand Down
4 changes: 2 additions & 2 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export default defineConfig({
hostname: 'https://lessup.github.io/meta-human/',
},

// 忽略本地开发链接和某些相对链接
ignoreDeadLinks: [/localhost/, /\.\.\/api\//, /\.\.\/architecture\//],
// 忽略本地开发链接
ignoreDeadLinks: [/localhost/],

locales: {
zh: {
Expand Down
28 changes: 0 additions & 28 deletions docs/agents/domain.md

This file was deleted.

28 changes: 0 additions & 28 deletions docs/agents/issue-tracker.md

This file was deleted.

39 changes: 0 additions & 39 deletions docs/agents/triage-labels.md

This file was deleted.

Loading
Loading