fix: remove duplicate /easy-vibe prefix from internal links

Removed `/easy-vibe/` prefix from internal links in all index.md files.
VitePress automatically adds the base path, so these prefixes were causing
404 errors due to double path resolution:

- Before: /easy-vibe/zh-cn/appendix/...
- After: /zh-cn/appendix/...
- VitePress resolves to: /easy-vibe/zh-cn/appendix/... (local/GitHub)
- VitePress resolves to: /zh-cn/appendix/... (Vercel)

This fixes the sidebar 404 errors reported in appendix section.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
sanbuphy
2026-02-20 01:47:53 +08:00
parent 648ac343f6
commit c4c494cbac
4 changed files with 137 additions and 137 deletions
+99 -99
View File
@@ -9,42 +9,42 @@
从晶体管到操作系统,深入了解计算机如何工作: 从晶体管到操作系统,深入了解计算机如何工作:
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/1-computer-fundamentals/transistor-to-cpu" href="/zh-cn/appendix/1-computer-fundamentals/transistor-to-cpu"
title="从晶体管到 CPU" title="从晶体管到 CPU"
description="理解计算机最底层的硬件逻辑,从晶体管开关到 CPU 指令执行" description="理解计算机最底层的硬件逻辑,从晶体管开关到 CPU 指令执行"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/1-computer-fundamentals/operating-systems" href="/zh-cn/appendix/1-computer-fundamentals/operating-systems"
title="操作系统" title="操作系统"
description="进程管理、内存管理、文件系统——操作系统的核心职责" description="进程管理、内存管理、文件系统——操作系统的核心职责"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/1-computer-fundamentals/data-encoding-storage" href="/zh-cn/appendix/1-computer-fundamentals/data-encoding-storage"
title="数据的编码、存储与传输" title="数据的编码、存储与传输"
description="二进制、字符编码、数据压缩与网络传输基础" description="二进制、字符编码、数据压缩与网络传输基础"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/1-computer-fundamentals/computer-networks" href="/zh-cn/appendix/1-computer-fundamentals/computer-networks"
title="网络:两台电脑如何对话" title="网络:两台电脑如何对话"
description="从网线到互联网,理解网络通信的底层原理" description="从网线到互联网,理解网络通信的底层原理"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/1-computer-fundamentals/data-structures" href="/zh-cn/appendix/1-computer-fundamentals/data-structures"
title="数据结构" title="数据结构"
description="数组、链表、树、图——组织数据的基本方式" description="数组、链表、树、图——组织数据的基本方式"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/1-computer-fundamentals/algorithm-thinking" href="/zh-cn/appendix/1-computer-fundamentals/algorithm-thinking"
title="算法思维入门" title="算法思维入门"
description="排序、搜索、递归——解决问题的思维框架" description="排序、搜索、递归——解决问题的思维框架"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/1-computer-fundamentals/programming-languages" href="/zh-cn/appendix/1-computer-fundamentals/programming-languages"
title="编程语言图谱" title="编程语言图谱"
description="从汇编到高级语言,理解编程语言的演进与分类" description="从汇编到高级语言,理解编程语言的演进与分类"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/1-computer-fundamentals/type-systems-compilers" href="/zh-cn/appendix/1-computer-fundamentals/type-systems-compilers"
title="类型系统与编译原理入门" title="类型系统与编译原理入门"
description="静态类型 vs 动态类型,编译器如何理解你的代码" description="静态类型 vs 动态类型,编译器如何理解你的代码"
/> />
@@ -55,52 +55,52 @@
掌握现代软件开发必备的命令行、Git、编辑器等工具: 掌握现代软件开发必备的命令行、Git、编辑器等工具:
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/2-development-tools/ide-basics" href="/zh-cn/appendix/2-development-tools/ide-basics"
title="集成开发环境 (IDE) 基础" title="集成开发环境 (IDE) 基础"
description="VS Code、Cursor、Trae——选择适合你的开发工具" description="VS Code、Cursor、Trae——选择适合你的开发工具"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/2-development-tools/command-line-shell" href="/zh-cn/appendix/2-development-tools/command-line-shell"
title="命令行与 Shell 脚本" title="命令行与 Shell 脚本"
description="终端操作、Shell 命令、脚本自动化" description="终端操作、Shell 命令、脚本自动化"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/2-development-tools/editors-and-ai" href="/zh-cn/appendix/2-development-tools/editors-and-ai"
title="编辑器与 AI 编程助手" title="编辑器与 AI 编程助手"
description="AI 时代的编辑器使用方式与效率提升技巧" description="AI 时代的编辑器使用方式与效率提升技巧"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/2-development-tools/git-version-control" href="/zh-cn/appendix/2-development-tools/git-version-control"
title="Git:代码的时光机" title="Git:代码的时光机"
description="版本控制、分支管理、团队协作" description="版本控制、分支管理、团队协作"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/2-development-tools/environment-path" href="/zh-cn/appendix/2-development-tools/environment-path"
title="环境变量与 PATH" title="环境变量与 PATH"
description="理解系统环境配置,解决「命令找不到」问题" description="理解系统环境配置,解决「命令找不到」问题"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/2-development-tools/ports-localhost" href="/zh-cn/appendix/2-development-tools/ports-localhost"
title="端口与 localhost" title="端口与 localhost"
description="理解网络端口、本地开发服务器与端口冲突" description="理解网络端口、本地开发服务器与端口冲突"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/2-development-tools/ssh-authentication" href="/zh-cn/appendix/2-development-tools/ssh-authentication"
title="SSH 与密钥认证" title="SSH 与密钥认证"
description="远程登录、密钥管理、安全连接" description="远程登录、密钥管理、安全连接"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/2-development-tools/package-managers" href="/zh-cn/appendix/2-development-tools/package-managers"
title="包管理器" title="包管理器"
description="npm、pip、cargo——依赖管理的艺术" description="npm、pip、cargo——依赖管理的艺术"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/2-development-tools/debugging-art/" href="/zh-cn/appendix/2-development-tools/debugging-art/"
title="调试的艺术" title="调试的艺术"
description="断点调试、日志分析、问题定位方法论" description="断点调试、日志分析、问题定位方法论"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/2-development-tools/regex" href="/zh-cn/appendix/2-development-tools/regex"
title="正则表达式" title="正则表达式"
description="模式匹配、文本处理的利器" description="模式匹配、文本处理的利器"
/> />
@@ -111,77 +111,77 @@
全面了解浏览器原理、JavaScript、前端框架和工程化实践: 全面了解浏览器原理、JavaScript、前端框架和工程化实践:
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/javascript-deep-dive" href="/zh-cn/appendix/3-browser-and-frontend/javascript-deep-dive"
title="JavaScript 语言深入" title="JavaScript 语言深入"
description="闭包、原型链、异步——JS 核心概念解析" description="闭包、原型链、异步——JS 核心概念解析"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/typescript" href="/zh-cn/appendix/3-browser-and-frontend/typescript"
title="TypeScript:给 JS 加上类型系统" title="TypeScript:给 JS 加上类型系统"
description="类型安全、接口定义、泛型编程" description="类型安全、接口定义、泛型编程"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/frontend-frameworks" href="/zh-cn/appendix/3-browser-and-frontend/frontend-frameworks"
title="前端框架对比" title="前端框架对比"
description="React / Vue / Svelte / Angular——选择适合你的框架" description="React / Vue / Svelte / Angular——选择适合你的框架"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/browser-as-os" href="/zh-cn/appendix/3-browser-and-frontend/browser-as-os"
title="浏览器是一个操作系统" title="浏览器是一个操作系统"
description="进程模型、资源管理、安全沙箱" description="进程模型、资源管理、安全沙箱"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/browser-as-os-rendering" href="/zh-cn/appendix/3-browser-and-frontend/browser-as-os-rendering"
title="浏览器渲染管道" title="浏览器渲染管道"
description="DOM、CSSOM、布局、绘制——页面是如何渲染的" description="DOM、CSSOM、布局、绘制——页面是如何渲染的"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/html-css-layout" href="/zh-cn/appendix/3-browser-and-frontend/html-css-layout"
title="HTML / CSS 布局体系" title="HTML / CSS 布局体系"
description="盒模型、Flexbox、Grid——现代布局方案" description="盒模型、Flexbox、Grid——现代布局方案"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/javascript-runtime" href="/zh-cn/appendix/3-browser-and-frontend/javascript-runtime"
title="JavaScript 运行时" title="JavaScript 运行时"
description="事件循环、任务队列、微任务与宏任务" description="事件循环、任务队列、微任务与宏任务"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/frontend-framework-nature" href="/zh-cn/appendix/3-browser-and-frontend/frontend-framework-nature"
title="前端框架的本质" title="前端框架的本质"
description="响应式原理、虚拟 DOM、组件化思想" description="响应式原理、虚拟 DOM、组件化思想"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/state-management" href="/zh-cn/appendix/3-browser-and-frontend/state-management"
title="状态管理哲学" title="状态管理哲学"
description="Redux、MobX、Zustand——状态管理的演进" description="Redux、MobX、Zustand——状态管理的演进"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/routing-navigation" href="/zh-cn/appendix/3-browser-and-frontend/routing-navigation"
title="路由与导航" title="路由与导航"
description="SPA 路由原理、历史模式与哈希模式" description="SPA 路由原理、历史模式与哈希模式"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/graphics-animation" href="/zh-cn/appendix/3-browser-and-frontend/graphics-animation"
title="图形与动画" title="图形与动画"
description="Canvas / SVG / WebGL——Web 图形技术全景" description="Canvas / SVG / WebGL——Web 图形技术全景"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/realtime-communication" href="/zh-cn/appendix/3-browser-and-frontend/realtime-communication"
title="实时通信" title="实时通信"
description="WebSocket / SSE——实时数据推送方案" description="WebSocket / SSE——实时数据推送方案"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/web-performance" href="/zh-cn/appendix/3-browser-and-frontend/web-performance"
title="网页性能的度量与优化" title="网页性能的度量与优化"
description="Core Web Vitals、性能监控、优化策略" description="Core Web Vitals、性能监控、优化策略"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/frontend-engineering" href="/zh-cn/appendix/3-browser-and-frontend/frontend-engineering"
title="前端工程化全貌" title="前端工程化全貌"
description="构建工具、模块化、代码规范" description="构建工具、模块化、代码规范"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/3-browser-and-frontend/a11n-i18n" href="/zh-cn/appendix/3-browser-and-frontend/a11n-i18n"
title="无障碍与国际化" title="无障碍与国际化"
description="让 Web 对所有人都友好" description="让 Web 对所有人都友好"
/> />
@@ -192,92 +192,92 @@
深入后端开发、API 设计、认证授权、缓存和消息队列等核心技术: 深入后端开发、API 设计、认证授权、缓存和消息队列等核心技术:
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/backend-languages" href="/zh-cn/appendix/4-server-and-backend/backend-languages"
title="后端语言对比" title="后端语言对比"
description="Node.js / Go / Java / Rust——选择适合的后端技术栈" description="Node.js / Go / Java / Rust——选择适合的后端技术栈"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/client-languages" href="/zh-cn/appendix/4-server-and-backend/client-languages"
title="客户端语言对比" title="客户端语言对比"
description="Swift / Kotlin / Dart——移动端开发语言选择" description="Swift / Kotlin / Dart——移动端开发语言选择"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/cross-platform" href="/zh-cn/appendix/4-server-and-backend/cross-platform"
title="跨平台方案对比" title="跨平台方案对比"
description="React Native / Flutter / Electron / Tauri——一套代码多端运行" description="React Native / Flutter / Electron / Tauri——一套代码多端运行"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/http-protocol" href="/zh-cn/appendix/4-server-and-backend/http-protocol"
title="HTTP 协议" title="HTTP 协议"
description="请求方法、状态码、头部、HTTPS" description="请求方法、状态码、头部、HTTPS"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/request-journey" href="/zh-cn/appendix/4-server-and-backend/request-journey"
title="一个请求的完整旅程" title="一个请求的完整旅程"
description="从浏览器输入 URL 到服务器响应的全链路分析" description="从浏览器输入 URL 到服务器响应的全链路分析"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/web-frameworks" href="/zh-cn/appendix/4-server-and-backend/web-frameworks"
title="Web 框架的本质" title="Web 框架的本质"
description="路由、中间件、请求处理——框架做了什么" description="路由、中间件、请求处理——框架做了什么"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/api-design" href="/zh-cn/appendix/4-server-and-backend/api-design"
title="API 设计哲学" title="API 设计哲学"
description="REST / GraphQL / gRPC——选择合适的 API 风格" description="REST / GraphQL / gRPC——选择合适的 API 风格"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/api-intro" href="/zh-cn/appendix/4-server-and-backend/api-intro"
title="API 入门" title="API 入门"
description="接口设计基础、请求响应格式、错误处理" description="接口设计基础、请求响应格式、错误处理"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/serialization" href="/zh-cn/appendix/4-server-and-backend/serialization"
title="序列化与数据格式" title="序列化与数据格式"
description="JSON / Protobuf / MessagePack——数据传输格式选择" description="JSON / Protobuf / MessagePack——数据传输格式选择"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/auth-authorization" href="/zh-cn/appendix/4-server-and-backend/auth-authorization"
title="认证与授权体系" title="认证与授权体系"
description="JWT、OAuth、Session——身份验证方案" description="JWT、OAuth、Session——身份验证方案"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/concurrency-async" href="/zh-cn/appendix/4-server-and-backend/concurrency-async"
title="并发、异步与多线程" title="并发、异步与多线程"
description="并发模型、异步编程、线程安全" description="并发模型、异步编程、线程安全"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/caching" href="/zh-cn/appendix/4-server-and-backend/caching"
title="缓存的层次与策略" title="缓存的层次与策略"
description="浏览器缓存、CDN、Redis——多级缓存架构" description="浏览器缓存、CDN、Redis——多级缓存架构"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/message-queues" href="/zh-cn/appendix/4-server-and-backend/message-queues"
title="消息队列与事件驱动" title="消息队列与事件驱动"
description="Kafka、RabbitMQ——解耦与异步处理" description="Kafka、RabbitMQ——解耦与异步处理"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/async-task-queues" href="/zh-cn/appendix/4-server-and-backend/async-task-queues"
title="异步任务队列" title="异步任务队列"
description="Celery、Bull——后台任务处理" description="Celery、Bull——后台任务处理"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/rate-limiting-backpressure" href="/zh-cn/appendix/4-server-and-backend/rate-limiting-backpressure"
title="限流与背压控制" title="限流与背压控制"
description="保护系统免受过载冲击" description="保护系统免受过载冲击"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/search-engines" href="/zh-cn/appendix/4-server-and-backend/search-engines"
title="搜索引擎原理" title="搜索引擎原理"
description="Elasticsearch、全文检索、倒排索引" description="Elasticsearch、全文检索、倒排索引"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/file-storage" href="/zh-cn/appendix/4-server-and-backend/file-storage"
title="文件存储与对象存储" title="文件存储与对象存储"
description="本地存储、S3、OSS——文件管理方案" description="本地存储、S3、OSS——文件管理方案"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/4-server-and-backend/backend-layered-architecture" href="/zh-cn/appendix/4-server-and-backend/backend-layered-architecture"
title="后端分层架构" title="后端分层架构"
description="Controller / Service / Repository——代码组织之道" description="Controller / Service / Repository——代码组织之道"
/> />
@@ -288,42 +288,42 @@
从 SQL 到数据治理,全面掌握数据处理和分析技能: 从 SQL 到数据治理,全面掌握数据处理和分析技能:
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/5-data/sql" href="/zh-cn/appendix/5-data/sql"
title="SQL" title="SQL"
description="查询、连接、聚合——数据库查询语言基础" description="查询、连接、聚合——数据库查询语言基础"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/5-data/database-fundamentals" href="/zh-cn/appendix/5-data/database-fundamentals"
title="数据库原理" title="数据库原理"
description="索引、事务、查询优化——深入理解数据库" description="索引、事务、查询优化——深入理解数据库"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/5-data/data-models" href="/zh-cn/appendix/5-data/data-models"
title="数据模型全景" title="数据模型全景"
description="文档 / 图 / 时序 / 向量——NoSQL 数据库分类" description="文档 / 图 / 时序 / 向量——NoSQL 数据库分类"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/5-data/data-tracking" href="/zh-cn/appendix/5-data/data-tracking"
title="数据埋点与用户行为采集" title="数据埋点与用户行为采集"
description="事件设计、数据采集、埋点方案" description="事件设计、数据采集、埋点方案"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/5-data/data-analysis" href="/zh-cn/appendix/5-data/data-analysis"
title="数据分析基础" title="数据分析基础"
description="统计方法、指标体系、漏斗分析" description="统计方法、指标体系、漏斗分析"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/5-data/ab-testing" href="/zh-cn/appendix/5-data/ab-testing"
title="A/B 测试与实验驱动" title="A/B 测试与实验驱动"
description="实验设计、样本量、显著性检验" description="实验设计、样本量、显著性检验"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/5-data/data-visualization" href="/zh-cn/appendix/5-data/data-visualization"
title="数据可视化与仪表盘" title="数据可视化与仪表盘"
description="图表选择、可视化设计、仪表盘搭建" description="图表选择、可视化设计、仪表盘搭建"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/5-data/data-governance" href="/zh-cn/appendix/5-data/data-governance"
title="数据治理与数据质量" title="数据治理与数据质量"
description="数据标准、数据质量、元数据管理" description="数据标准、数据质量、元数据管理"
/> />
@@ -334,22 +334,22 @@
学习微服务架构、分布式系统和系统设计方法论: 学习微服务架构、分布式系统和系统设计方法论:
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/6-architecture-and-system-design/monolith-to-microservices" href="/zh-cn/appendix/6-architecture-and-system-design/monolith-to-microservices"
title="从单体到微服务的演进" title="从单体到微服务的演进"
description="何时拆分、如何拆分、拆分后的挑战" description="何时拆分、如何拆分、拆分后的挑战"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/6-architecture-and-system-design/distributed-systems" href="/zh-cn/appendix/6-architecture-and-system-design/distributed-systems"
title="分布式系统的挑战" title="分布式系统的挑战"
description="CAP 定理、一致性、分布式事务" description="CAP 定理、一致性、分布式事务"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/6-architecture-and-system-design/high-availability" href="/zh-cn/appendix/6-architecture-and-system-design/high-availability"
title="高可用与容灾" title="高可用与容灾"
description="故障转移、异地多活、灾难恢复" description="故障转移、异地多活、灾难恢复"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/6-architecture-and-system-design/system-design-methodology" href="/zh-cn/appendix/6-architecture-and-system-design/system-design-methodology"
title="系统设计方法论" title="系统设计方法论"
description="需求分析、容量估算、架构权衡" description="需求分析、容量估算、架构权衡"
/> />
@@ -360,67 +360,67 @@
掌握容器化、Kubernetes、CI/CD、云平台和监控告警: 掌握容器化、Kubernetes、CI/CD、云平台和监控告警:
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/linux-basics" href="/zh-cn/appendix/7-infrastructure-and-operations/linux-basics"
title="Linux 基础" title="Linux 基础"
description="文件系统、权限管理、常用命令" description="文件系统、权限管理、常用命令"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/docker-containers" href="/zh-cn/appendix/7-infrastructure-and-operations/docker-containers"
title="Docker 容器化" title="Docker 容器化"
description="镜像、容器、Dockerfile——应用容器化" description="镜像、容器、Dockerfile——应用容器化"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/kubernetes" href="/zh-cn/appendix/7-infrastructure-and-operations/kubernetes"
title="Kubernetes 编排" title="Kubernetes 编排"
description="Pod、Service、Deployment——容器编排平台" description="Pod、Service、Deployment——容器编排平台"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/ci-cd" href="/zh-cn/appendix/7-infrastructure-and-operations/ci-cd"
title="CI / CD 自动化" title="CI / CD 自动化"
description="持续集成、持续部署、自动化流水线" description="持续集成、持续部署、自动化流水线"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/dns-https" href="/zh-cn/appendix/7-infrastructure-and-operations/dns-https"
title="域名、DNS 与 HTTPS" title="域名、DNS 与 HTTPS"
description="域名解析、SSL 证书、HTTPS 配置" description="域名解析、SSL 证书、HTTPS 配置"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/load-balancing-gateway" href="/zh-cn/appendix/7-infrastructure-and-operations/load-balancing-gateway"
title="负载均衡与网关" title="负载均衡与网关"
description="Nginx、HAProxy——流量分发与负载均衡" description="Nginx、HAProxy——流量分发与负载均衡"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/gateway-proxy" href="/zh-cn/appendix/7-infrastructure-and-operations/gateway-proxy"
title="网关与反向代理" title="网关与反向代理"
description="API 网关、反向代理、请求转发" description="API 网关、反向代理、请求转发"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/cloud-platforms" href="/zh-cn/appendix/7-infrastructure-and-operations/cloud-platforms"
title="云平台实战" title="云平台实战"
description="AWS、阿里云、腾讯云——云服务选型" description="AWS、阿里云、腾讯云——云服务选型"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/cloud-iam" href="/zh-cn/appendix/7-infrastructure-and-operations/cloud-iam"
title="IAM 权限管理" title="IAM 权限管理"
description="云上权限模型、角色管理、最小权限原则" description="云上权限模型、角色管理、最小权限原则"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/cloud-storage-cdn" href="/zh-cn/appendix/7-infrastructure-and-operations/cloud-storage-cdn"
title="对象存储与 CDN" title="对象存储与 CDN"
description="S3、OSS、CDN 加速——静态资源管理" description="S3、OSS、CDN 加速——静态资源管理"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/infrastructure-as-code" href="/zh-cn/appendix/7-infrastructure-and-operations/infrastructure-as-code"
title="基础设施即代码" title="基础设施即代码"
description="Terraform、Pulumi——用代码管理基础设施" description="Terraform、Pulumi——用代码管理基础设施"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/monitoring-logging" href="/zh-cn/appendix/7-infrastructure-and-operations/monitoring-logging"
title="监控、日志与告警" title="监控、日志与告警"
description="Prometheus、Grafana、ELK——可观测性体系" description="Prometheus、Grafana、ELK——可观测性体系"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/7-infrastructure-and-operations/incident-response" href="/zh-cn/appendix/7-infrastructure-and-operations/incident-response"
title="故障排查与应急响应" title="故障排查与应急响应"
description="故障定位、根因分析、应急预案" description="故障定位、根因分析、应急预案"
/> />
@@ -431,82 +431,82 @@
从 AI 历史到 Agent 智能体,全面了解人工智能技术: 从 AI 历史到 Agent 智能体,全面了解人工智能技术:
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/ai-history" href="/zh-cn/appendix/8-artificial-intelligence/ai-history"
title="AI 简史与核心概念" title="AI 简史与核心概念"
description="从图灵测试到大模型,AI 发展的关键里程碑" description="从图灵测试到大模型,AI 发展的关键里程碑"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/neural-networks" href="/zh-cn/appendix/8-artificial-intelligence/neural-networks"
title="神经网络与深度学习" title="神经网络与深度学习"
description="神经元、反向传播、深度学习基础" description="神经元、反向传播、深度学习基础"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/transformer-attention" href="/zh-cn/appendix/8-artificial-intelligence/transformer-attention"
title="Transformer 与注意力机制" title="Transformer 与注意力机制"
description="现代大模型的核心架构" description="现代大模型的核心架构"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/llm-principles" href="/zh-cn/appendix/8-artificial-intelligence/llm-principles"
title="大语言模型的工作原理" title="大语言模型的工作原理"
description="GPT、Claude——LLM 如何理解和生成文本" description="GPT、Claude——LLM 如何理解和生成文本"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/prompt-engineering" href="/zh-cn/appendix/8-artificial-intelligence/prompt-engineering"
title="提示词工程" title="提示词工程"
description="设计有效的提示词,释放 AI 潜力" description="设计有效的提示词,释放 AI 潜力"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/context-engineering" href="/zh-cn/appendix/8-artificial-intelligence/context-engineering"
title="上下文工程" title="上下文工程"
description="管理上下文窗口,优化长文本处理" description="管理上下文窗口,优化长文本处理"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/multimodal-models" href="/zh-cn/appendix/8-artificial-intelligence/multimodal-models"
title="多模态模型" title="多模态模型"
description="视觉 / 音频 / 视频——多模态 AI 能力" description="视觉 / 音频 / 视频——多模态 AI 能力"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/image-generation" href="/zh-cn/appendix/8-artificial-intelligence/image-generation"
title="图像生成原理" title="图像生成原理"
description="Diffusion、GAN——AI 绘画背后的技术" description="Diffusion、GAN——AI 绘画背后的技术"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/speech-synthesis-recognition" href="/zh-cn/appendix/8-artificial-intelligence/speech-synthesis-recognition"
title="语音合成与识别" title="语音合成与识别"
description="TTS、ASR——语音 AI 技术原理" description="TTS、ASR——语音 AI 技术原理"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/embedding-vector-retrieval" href="/zh-cn/appendix/8-artificial-intelligence/embedding-vector-retrieval"
title="Embedding 与向量检索" title="Embedding 与向量检索"
description="文本向量化、向量数据库、语义搜索" description="文本向量化、向量数据库、语义搜索"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/rag" href="/zh-cn/appendix/8-artificial-intelligence/rag"
title="RAG 架构" title="RAG 架构"
description="检索增强生成——让 AI 拥有知识库" description="检索增强生成——让 AI 拥有知识库"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/ai-agents" href="/zh-cn/appendix/8-artificial-intelligence/ai-agents"
title="AI Agent 与工具调用" title="AI Agent 与工具调用"
description="自主决策、工具使用、任务规划" description="自主决策、工具使用、任务规划"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/ai-protocols" href="/zh-cn/appendix/8-artificial-intelligence/ai-protocols"
title="AI 协议" title="AI 协议"
description="MCP 等协议——AI 工具互操作标准" description="MCP 等协议——AI 工具互操作标准"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/model-finetuning-deployment" href="/zh-cn/appendix/8-artificial-intelligence/model-finetuning-deployment"
title="模型微调与部署" title="模型微调与部署"
description="LoRA、量化、模型部署实践" description="LoRA、量化、模型部署实践"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/ai-native-app-design" href="/zh-cn/appendix/8-artificial-intelligence/ai-native-app-design"
title="AI 原生应用设计" title="AI 原生应用设计"
description="设计以 AI 为核心的应用体验" description="设计以 AI 为核心的应用体验"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/8-artificial-intelligence/ai-capability-dictionary" href="/zh-cn/appendix/8-artificial-intelligence/ai-capability-dictionary"
title="AI 能力词典" title="AI 能力词典"
description="AI 领域常用术语和核心概念速查" description="AI 领域常用术语和核心概念速查"
/> />
@@ -517,37 +517,37 @@
提升代码质量、测试策略、设计模式和工程实践能力: 提升代码质量、测试策略、设计模式和工程实践能力:
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/9-engineering-excellence/code-quality-refactoring" href="/zh-cn/appendix/9-engineering-excellence/code-quality-refactoring"
title="代码质量与重构" title="代码质量与重构"
description="代码异味、重构手法、整洁代码" description="代码异味、重构手法、整洁代码"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/9-engineering-excellence/testing-strategies" href="/zh-cn/appendix/9-engineering-excellence/testing-strategies"
title="测试策略" title="测试策略"
description="单元测试、集成测试、E2E 测试——测试金字塔" description="单元测试、集成测试、E2E 测试——测试金字塔"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/9-engineering-excellence/design-patterns" href="/zh-cn/appendix/9-engineering-excellence/design-patterns"
title="设计模式" title="设计模式"
description="创建型、结构型、行为型——经典设计模式" description="创建型、结构型、行为型——经典设计模式"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/9-engineering-excellence/security-thinking" href="/zh-cn/appendix/9-engineering-excellence/security-thinking"
title="安全思维与攻防基础" title="安全思维与攻防基础"
description="常见漏洞、安全编码、防御策略" description="常见漏洞、安全编码、防御策略"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/9-engineering-excellence/technical-writing" href="/zh-cn/appendix/9-engineering-excellence/technical-writing"
title="技术文档写作" title="技术文档写作"
description="README、API 文档、技术方案——写作技巧" description="README、API 文档、技术方案——写作技巧"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/9-engineering-excellence/open-source-collaboration" href="/zh-cn/appendix/9-engineering-excellence/open-source-collaboration"
title="开源协作" title="开源协作"
description="GitHub 工作流、PR 规范、社区参与" description="GitHub 工作流、PR 规范、社区参与"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/appendix/9-engineering-excellence/technology-selection" href="/zh-cn/appendix/9-engineering-excellence/technology-selection"
title="技术选型方法论" title="技术选型方法论"
description="如何评估和选择适合的技术方案" description="如何评估和选择适合的技术方案"
/> />
+13 -13
View File
@@ -12,12 +12,12 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-0/0.1-learning-map/" href="/zh-cn/stage-0/0.1-learning-map/"
title="1. 学习地图" title="1. 学习地图"
description="了解整个学习路径,明确每个阶段的目标和收获。" description="了解整个学习路径,明确每个阶段的目标和收获。"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-0/0.2-ai-capabilities-through-games/" href="/zh-cn/stage-0/0.2-ai-capabilities-through-games/"
title="2. AI 时代,会说话就会编程" title="2. AI 时代,会说话就会编程"
description="通过贪吃蛇等小游戏,体验 AI 编程的魅力,打破对编程的恐惧。" description="通过贪吃蛇等小游戏,体验 AI 编程的魅力,打破对编程的恐惧。"
/> />
@@ -29,27 +29,27 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-1/1.1-introduction-to-ai-ide/" href="/zh-cn/stage-1/1.1-introduction-to-ai-ide/"
title="1. 学会 AI 编程工具" title="1. 学会 AI 编程工具"
description="了解当前主流的 AI 编程工具,选择最适合你的开发搭档。" description="了解当前主流的 AI 编程工具,选择最适合你的开发搭档。"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-1/1.0-finding-great-idea/" href="/zh-cn/stage-1/1.0-finding-great-idea/"
title="2. 找到好点子" title="2. 找到好点子"
description="学会寻找和验证产品想法,找到值得做的项目。" description="学会寻找和验证产品想法,找到值得做的项目。"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-1/1.2-building-prototype/" href="/zh-cn/stage-1/1.2-building-prototype/"
title="3. 搭建产品原型" title="3. 搭建产品原型"
description="学习如何快速将产品想法转化为可视化的原型,进行低成本试错。" description="学习如何快速将产品想法转化为可视化的原型,进行低成本试错。"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-1/1.3-integrating-ai-capabilities/" href="/zh-cn/stage-1/1.3-integrating-ai-capabilities/"
title="4. 接入 AI 能力" title="4. 接入 AI 能力"
description="通过集成简单的 AI API,让你的原型具备智能交互能力。" description="通过集成简单的 AI API,让你的原型具备智能交互能力。"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-1/1.4-complete-project-practice/" href="/zh-cn/stage-1/1.4-complete-project-practice/"
title="5. 完整项目实战" title="5. 完整项目实战"
description="综合运用所学知识,从 0 到 1 完成一个完整的产品原型开发。" description="综合运用所学知识,从 0 到 1 完成一个完整的产品原型开发。"
/> />
@@ -66,17 +66,17 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-1/appendix-a-product-thinking/" href="/zh-cn/stage-1/appendix-a-product-thinking/"
title="产品思维与方案设计" title="产品思维与方案设计"
description="补充产品经理必备的思维模型,提升需求分析与产品设计能力。" description="补充产品经理必备的思维模型,提升需求分析与产品设计能力。"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-1/appendix-industry-scenarios/" href="/zh-cn/stage-1/appendix-industry-scenarios/"
title="AI 行业应用场景参考 (B端)" title="AI 行业应用场景参考 (B端)"
description="了解 AI 在不同产业的应用场景,寻找产品灵感与方向。" description="了解 AI 在不同产业的应用场景,寻找产品灵感与方向。"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-1/appendix-c-consumer-scenarios/" href="/zh-cn/stage-1/appendix-c-consumer-scenarios/"
title="AI 消费场景灵感参考 (C端)" title="AI 消费场景灵感参考 (C端)"
description="探索 AI 在消费级产品中的应用场景,激发创意灵感。" description="探索 AI 在消费级产品中的应用场景,激发创意灵感。"
/> />
@@ -93,17 +93,17 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-1/appendix-b-common-errors/" href="/zh-cn/stage-1/appendix-b-common-errors/"
title="写代码时遇到错误怎么办" title="写代码时遇到错误怎么办"
description="汇总开发过程中常见的报错信息及解决方法,助你快速排查问题。" description="汇总开发过程中常见的报错信息及解决方法,助你快速排查问题。"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-1/appendix-articles/example0-1/vibe-coding-tools-snake-game-tutorial" href="/zh-cn/stage-1/appendix-articles/example0-1/vibe-coding-tools-snake-game-tutorial"
title="七款 AI 编程工具对比" title="七款 AI 编程工具对比"
description="对比测试主流 AI 编程平台,帮你选择最适合的工具。" description="对比测试主流 AI 编程平台,帮你选择最适合的工具。"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-1/appendix-articles/example0-2/vibe-coding-tools-build-website-with-ai-coding-and-design-agents" href="/zh-cn/stage-1/appendix-articles/example0-2/vibe-coding-tools-build-website-with-ai-coding-and-design-agents"
title="用设计和编程 Agent 设计网站" title="用设计和编程 Agent 设计网站"
description="学习如何使用 AI 智能体协同工作,提升开发效率。" description="学习如何使用 AI 智能体协同工作,提升开发效率。"
/> />
+16 -16
View File
@@ -10,27 +10,27 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/frontend/2.0-lovart-assets/" href="/zh-cn/stage-2/frontend/2.0-lovart-assets/"
title="前端零:使用 Lovart 生产素材" title="前端零:使用 Lovart 生产素材"
description="学习如何使用 Lovart 等 AI 工具快速生成高质量的游戏素材与 UI 资源" description="学习如何使用 Lovart 等 AI 工具快速生成高质量的游戏素材与 UI 资源"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/frontend/2.1-figma-mastergo/" href="/zh-cn/stage-2/frontend/2.1-figma-mastergo/"
title="前端一:Figma 与 MasterGo 入门" title="前端一:Figma 与 MasterGo 入门"
description="掌握专业 UI 设计工具的基础操作,从设计稿到代码的协作流程" description="掌握专业 UI 设计工具的基础操作,从设计稿到代码的协作流程"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/frontend/2.2-ui-design/" href="/zh-cn/stage-2/frontend/2.2-ui-design/"
title="前端二:构建第一个现代应用程序 - UI 设计" title="前端二:构建第一个现代应用程序 - UI 设计"
description="从零开始设计一个现代 Web 应用的界面,实践 UI 设计原则" description="从零开始设计一个现代 Web 应用的界面,实践 UI 设计原则"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/frontend/2.3-multi-product-ui/" href="/zh-cn/stage-2/frontend/2.3-multi-product-ui/"
title="前端三:参考 UI 设计规范与多产品 UI 设计" title="前端三:参考 UI 设计规范与多产品 UI 设计"
description="学习主流 UI 设计规范,提升产品设计的一致性与美感" description="学习主流 UI 设计规范,提升产品设计的一致性与美感"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/frontend/2.4-hogwarts-portraits/" href="/zh-cn/stage-2/frontend/2.4-hogwarts-portraits/"
title="前端四:一起做霍格沃茨画像" title="前端四:一起做霍格沃茨画像"
description="实战项目:结合 AI 生成的图像,构建一个交互式的霍格沃茨画像应用" description="实战项目:结合 AI 生成的图像,构建一个交互式的霍格沃茨画像应用"
/> />
@@ -42,37 +42,37 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/backend/2.1-what-is-api/extra2/" href="/zh-cn/stage-2/backend/2.1-what-is-api/extra2/"
title="后端一:什么是 API" title="后端一:什么是 API"
description="理解 API 的核心概念,它是前后端交互的桥梁" description="理解 API 的核心概念,它是前后端交互的桥梁"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/backend/2.2-database-supabase/chapter5/" href="/zh-cn/stage-2/backend/2.2-database-supabase/chapter5/"
title="后端二:从数据库到 Supabase" title="后端二:从数据库到 Supabase"
description="掌握关系型数据库基础,并学习使用 Supabase 这一现代 BaaS 平台" description="掌握关系型数据库基础,并学习使用 Supabase 这一现代 BaaS 平台"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/backend/2.3-ai-interface-code/" href="/zh-cn/stage-2/backend/2.3-ai-interface-code/"
title="后端三:大模型辅助编写接口代码与接口文档" title="后端三:大模型辅助编写接口代码与接口文档"
description="利用 AI 辅助生成后端接口代码及标准的接口文档,提升开发效率" description="利用 AI 辅助生成后端接口代码及标准的接口文档,提升开发效率"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/backend/2.4-git-workflow/extra1/" href="/zh-cn/stage-2/backend/2.4-git-workflow/extra1/"
title="后端四:Git 工作流" title="后端四:Git 工作流"
description="掌握 Git 版本控制系统的核心操作与协作流程" description="掌握 Git 版本控制系统的核心操作与协作流程"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/backend/2.5-zeabur-deployment/extra6/" href="/zh-cn/stage-2/backend/2.5-zeabur-deployment/extra6/"
title="后端五:如何部署 Web 应用" title="后端五:如何部署 Web 应用"
description="学习使用 Zeabur 快速部署你的全栈应用到云端" description="学习使用 Zeabur 快速部署你的全栈应用到云端"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/backend/2.6-modern-cli/extra7/" href="/zh-cn/stage-2/backend/2.6-modern-cli/extra7/"
title="后端六:现代 CLI 开发工具" title="后端六:现代 CLI 开发工具"
description="探索现代 CLI 工具,提升命令行环境下的开发体验" description="探索现代 CLI 工具,提升命令行环境下的开发体验"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/backend/2.7-stripe-payment/" href="/zh-cn/stage-2/backend/2.7-stripe-payment/"
title="后端七:如何集成 Stripe 等收费系统" title="后端七:如何集成 Stripe 等收费系统"
description="实战:为你的应用集成 Stripe 支付功能,实现商业化变现" description="实战:为你的应用集成 Stripe 支付功能,实现商业化变现"
/> />
@@ -84,12 +84,12 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/assignments/2.1-fullstack-app/" href="/zh-cn/stage-2/assignments/2.1-fullstack-app/"
title="大作业 1:构建第一个现代应用程序 - 全栈应用" title="大作业 1:构建第一个现代应用程序 - 全栈应用"
description="综合运用所学知识,独立完成一个功能完整的全栈应用开发" description="综合运用所学知识,独立完成一个功能完整的全栈应用开发"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/assignments/2.2-modern-frontend-trae/" href="/zh-cn/stage-2/assignments/2.2-modern-frontend-trae/"
title="大作业 2:现代前端组件库 + Trae 实战" title="大作业 2:现代前端组件库 + Trae 实战"
description="使用现代组件库与 Trae IDE,高效构建复杂的前端界面" description="使用现代组件库与 Trae IDE,高效构建复杂的前端界面"
/> />
@@ -99,12 +99,12 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/ai-capabilities/2.1-dify-knowledge-base/chapter3/" href="/zh-cn/stage-2/ai-capabilities/2.1-dify-knowledge-base/chapter3/"
title="AI 一:Dify 入门与知识库集成" title="AI 一:Dify 入门与知识库集成"
description="学习使用 Dify 构建 AI 应用,并集成私有知识库" description="学习使用 Dify 构建 AI 应用,并集成私有知识库"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-2/ai-capabilities/2.2-multimodal-api/extra3/" href="/zh-cn/stage-2/ai-capabilities/2.2-multimodal-api/extra3/"
title="AI 二:学会查询 AI 词典与集成多模态 API" title="AI 二:学会查询 AI 词典与集成多模态 API"
description="探索更多 AI 能力,集成视觉、语音等多模态 API" description="探索更多 AI 能力,集成视觉、语音等多模态 API"
/> />
+9 -9
View File
@@ -10,12 +10,12 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-3/core-skills/3.1-mcp-claude-code-skills/" href="/zh-cn/stage-3/core-skills/3.1-mcp-claude-code-skills/"
title="高级一:MCP 与 Claude Code Skills" title="高级一:MCP 与 Claude Code Skills"
description="掌握 Model Context Protocol (MCP),扩展 AI 编程工具的能力边界" description="掌握 Model Context Protocol (MCP),扩展 AI 编程工具的能力边界"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-3/core-skills/3.2-long-running-tasks/" href="/zh-cn/stage-3/core-skills/3.2-long-running-tasks/"
title="高级二:如何让 Coding Tools 长时间工作" title="高级二:如何让 Coding Tools 长时间工作"
description="学习如何让 AI 编码工具处理长时间运行的复杂任务" description="学习如何让 AI 编码工具处理长时间运行的复杂任务"
/> />
@@ -27,22 +27,22 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-3/cross-platform/3.3-wechat-miniprogram/" href="/zh-cn/stage-3/cross-platform/3.3-wechat-miniprogram/"
title="高级三:如何构建微信小程序" title="高级三:如何构建微信小程序"
description="从零开始开发微信小程序,掌握小程序开发的核心流程" description="从零开始开发微信小程序,掌握小程序开发的核心流程"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-3/cross-platform/3.4-wechat-miniprogram-backend/" href="/zh-cn/stage-3/cross-platform/3.4-wechat-miniprogram-backend/"
title="高级四:如何构建微信小程序(包含后端)" title="高级四:如何构建微信小程序(包含后端)"
description="构建带有后端支持的完整微信小程序应用" description="构建带有后端支持的完整微信小程序应用"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-3/cross-platform/3.5-android-app/" href="/zh-cn/stage-3/cross-platform/3.5-android-app/"
title="高级五:如何构建安卓程序" title="高级五:如何构建安卓程序"
description="使用现代跨平台框架构建 Android 原生应用" description="使用现代跨平台框架构建 Android 原生应用"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-3/cross-platform/3.6-ios-app/" href="/zh-cn/stage-3/cross-platform/3.6-ios-app/"
title="高级六:如何构建 iOS 程序" title="高级六:如何构建 iOS 程序"
description="开发并发布 iOS 应用,掌握 iOS 生态的开发规范" description="开发并发布 iOS 应用,掌握 iOS 生态的开发规范"
/> />
@@ -54,7 +54,7 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-3/personal-brand/3.7-personal-website-blog/" href="/zh-cn/stage-3/personal-brand/3.7-personal-website-blog/"
title="高级七:如何构建属于自己的个人网页与学术博客" title="高级七:如何构建属于自己的个人网页与学术博客"
description="使用现代化技术栈搭建高性能、高颜值的个人博客" description="使用现代化技术栈搭建高性能、高颜值的个人博客"
/> />
@@ -66,12 +66,12 @@
<NavGrid> <NavGrid>
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-3/ai-advanced/3.a1-rag-introduction/" href="/zh-cn/stage-3/ai-advanced/3.a1-rag-introduction/"
title="高级 AI 一:什么是 RAG 以及它如何工作" title="高级 AI 一:什么是 RAG 以及它如何工作"
description="深入理解检索增强生成 (RAG) 的原理及其在 AI 应用中的价值" description="深入理解检索增强生成 (RAG) 的原理及其在 AI 应用中的价值"
/> />
<NavCard <NavCard
href="/easy-vibe/zh-cn/stage-3/ai-advanced/3.a2-langgraph-advanced-rag/" href="/zh-cn/stage-3/ai-advanced/3.a2-langgraph-advanced-rag/"
title="高级 AI 二:中高级 RAG 与工作流编排 - 以 LangGraph 为例" title="高级 AI 二:中高级 RAG 与工作流编排 - 以 LangGraph 为例"
description="学习使用 LangGraph 编排复杂的 AI 工作流,构建高级 RAG 系统" description="学习使用 LangGraph 编排复杂的 AI 工作流,构建高级 RAG 系统"
/> />