Files
examination/topics/index.json
T
wonder d3cba0e23c feat: 初始化 CS 知识应试强化系统
- 纯 HTML/CSS/JS 单页应用,支持填空题和选择题交互
- 5 个主题共 100 道题(GC/JVM、AI 结构化输出、记忆管理、幻觉、工具链)
- 按主题组织、按题型拆分的 JSON 数据结构
- JSON Schema 校验 + 提示词模板 + 题型模板
- 自定义导入功能(粘贴/上传 JSON)
- 项目文档(需求 + 架构)

Co-Authored-By: Claude Code <noreply@anthropic.com>
2026-09-02 18:22:20 +08:00

71 lines
1.8 KiB
JSON

{
"version": "1.0.0",
"updated": "2026-09-02",
"topics": [
{
"slug": "gc-jvm",
"name": "GC / JVM / 三色标记",
"description": "JVM 堆内存模型、GC 算法、三色标记法、垃圾收集器",
"path": "topics/gc-jvm",
"stats": {
"total": 20,
"by_type": {
"fill_blank": 10,
"single_choice": 10
}
}
},
{
"slug": "ai-structured-output",
"name": "AI 结构化输出 / Agent 架构",
"description": "结构化输出方法、Agent 模式、受限解码",
"path": "topics/ai-structured-output",
"stats": {
"total": 20,
"by_type": {
"fill_blank": 10,
"single_choice": 10
}
}
},
{
"slug": "ai-memory",
"name": "Agent 记忆管理 / 冲突处理",
"description": "记忆分层架构、淘汰策略、冲突检测与消解",
"path": "topics/ai-memory",
"stats": {
"total": 20,
"by_type": {
"fill_blank": 10,
"single_choice": 10
}
}
},
{
"slug": "ai-hallucination",
"name": "AI 幻觉 / 目标评价 / 规范",
"description": "幻觉分类、Critic 架构、Context Engineering、评估体系",
"path": "topics/ai-hallucination",
"stats": {
"total": 20,
"by_type": {
"fill_blank": 10,
"single_choice": 10
}
}
},
{
"slug": "ai-tooling",
"name": "AI 工具 / Harness / 综合",
"description": "AI 工具选型、Harness 架构、可靠性保障、提效分析",
"path": "topics/ai-tooling",
"stats": {
"total": 20,
"by_type": {
"fill_blank": 10,
"single_choice": 10
}
}
}
]
}