-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.js
More file actions
62 lines (62 loc) · 3.37 KB
/
Copy pathcourses.js
File metadata and controls
62 lines (62 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// 课程数据 - 由 add-course.py 维护,请勿手动编辑
const COURSES = [
{
title: "AI Agent 2.0 基础",
tag: "已完结 · 4 阶段",
desc: "从零做出真能干活的 Agent 并部署上线。覆盖工具、记忆、流式、评测、生产化、RAG、多 Agent 全链路。",
stats: [{ big: "14", lbl: "节课" }, { big: "4", lbl: "阶段" }, { big: "~210min", lbl: "总时长" }],
gradient: "#1e3a8a, #0ea5e9",
path: "ai-agent-2.0",
stages: [
{ name: "阶段一 · 基础", lessons: [
{ n: "01", t: "什么是 AI Agent?", f: "0001-what-is-an-ai-agent.html" },
{ n: "02", t: "让 Agent 自己选工具", f: "0002-let-agent-choose-tools.html" },
{ n: "03", t: "系统提示与最简记忆", f: "0003-system-prompt-and-memory.html" },
{ n: "04", t: "长期记忆", f: "0004-long-term-memory.html" },
{ n: "05", t: "封装 Agent 类与错误处理", f: "0005-agent-class-and-error-handling.html" },
{ n: "06", t: "把 Agent 变成 Web 服务", f: "0006-agent-as-web-service.html" }
]},
{ name: "阶段二 · 能用", lessons: [
{ n: "07", t: "Agent 评测", f: "0007-agent-evals.html" },
{ n: "08", t: "流式输出", f: "0008-streaming-output.html" }
]},
{ name: "阶段三 · 生产化", lessons: [
{ n: "09", t: "生产化部署", f: "0009-production-deployment.html" },
{ n: "10", t: "切换到 Claude", f: "0010-switch-to-claude.html" },
{ n: "11", t: "RAG 与向量记忆", f: "0011-rag-and-vector-memory.html" }
]},
{ name: "阶段四 · 进阶", lessons: [
{ n: "12", t: "多 Agent 委托", f: "0012-multi-agent-handoff.html" },
{ n: "13", t: "何时用 Agent / 何时用 Workflow", f: "0013-when-to-use-agent-vs-workflow.html" },
{ n: "14", t: "项目实战", f: "0014-capstone-project.html" }
]}
]
}
,
{
title: "别让 AI 瞎写代码|工程化 Agent+skills 开发全流程",
tag: "已完结 · 4 阶段",
desc: "以 LinguaAI 为案例,走完 setup → grill-me → to-spec → to-tickets → implement 整条 Skill 流水线,从需求到交付一条龙,把 AI 开发做成工程。",
stats: [{ big: "8", lbl: "节课" }, { big: "4", lbl: "阶段" }, { big: "~120min", lbl: "总时长" }],
gradient: "#134e4a, #14b8a6",
path: "linguaai-course",
stages: [
{ name: "阶段一 · 起步", lessons: [
{ n: "01", t: "全景:Agent + Skill 开发范式", f: "0001-overview-and-roadmap.html" },
{ n: "02", t: "原型设计:solo-design 定界面", f: "0002-prototype-design.html" }
]},
{ name: "阶段二 · 核心流水线", lessons: [
{ n: "03", t: "需求产出:想法变工单", f: "0003-requirements.html" },
{ n: "04", t: "实现循环:工单到提交", f: "0004-implementation-loop.html" }
]},
{ name: "阶段三 · 调试与技术", lessons: [
{ n: "05", t: "踩坑与调试:反馈回路", f: "0005-debugging-and-pitfalls.html" },
{ n: "06", t: "技术实现:LinguaAI 架构", f: "0006-technical-architecture.html" }
]},
{ name: "阶段四 · 元与展望", lessons: [
{ n: "07", t: "元课程:教程如何生成", f: "0007-meta-how-this-course-was-made.html" },
{ n: "08", t: "展望与挖坑:可改进之处", f: "0008-future-and-pitfalls.html" }
]}
]
}
];