Skip to content

Commit 0c7c981

Browse files
refactor(docs): phase 2 — CommunityShare 下 AI 内容进一步归并到 ai/
延续 PR 初版的语义化重组思路,继续把散落在 CommunityShare 下的纯 AI 内容 移到 ai/ 主目录对应主题下。新增 4 个 docId 的迁移: - CommunityShare/Geek/leworldmodel (JEPA 世界模型论文摘要) → ai/foundation-models/world-models/leworldmodel - CommunityShare/Amazing-AI-Tools/perplexity-comet (AI 浏览器介绍) → ai/misc-tools/perplexity-comet - CommunityShare/Amazing-AI-Tools/prompt-repetition-improves-non-reasoning-llms (arXiv prompt 技巧论文摘要) → ai/foundation-models/prompt-engineering/ - CommunityShare/Personal-Study-Notes/Reinforcement-Learning/ppo → ai/reinforcement-learning/ppo 新增 3 个 ai/ 下子目录:world-models / prompt-engineering / reinforcement-learning 顺手收拾的: - ppo.md 原本是 tag-one 占位符 → [reinforcement-learning, ppo, policy-gradient, gae] (和 PR #308 里对 ppo 的 tag 选择完全一致,merge 顺序无所谓) - leworldmodel 原本 tag 是中文 "世界模型" → kebab-case 英文 [world-models, jepa, representation-learning, embodied-ai] - 清理空目录 CommunityShare/Personal-Study-Notes/Reinforcement-Learning/ 和 Personal-Study-Notes/ next.config.mjs 补 4 条 301,累计 8 条。statusCode:301 继续用显式 301 (和 PR / commit 口径一致)。 与 PR #308 (feat/docs-tag-cleanup) 的冲突风险: 本 PR 已经移走 ppo.md 并应用了和 PR #308 完全相同的 tag 更新。merge 顺序: - 若本 PR 先合:PR #308 rebase 时会发现 ppo 老路径不存在,它对 ppo 的 tag 修改会变 "deleted by us / modified by them" 冲突,需要 drop PR #308 中 ppo 那条 hunk(因为本 PR 已处理) - 若 PR #308 先合:本 PR rebase 时 ppo 在老路径已有新 tags,git mv 自然工作,无冲突 推荐:**本 PR 先合**,然后 PR #308 rebase 时丢掉 ppo 相关改动。 docId 守恒(4 份原文 + 3 份翻译 = 7 个文件全部 grep 对齐): - boo70qqm8nos8b0q9h7zjrki (leworldmodel) - eej2awin6irhbdgcy8vvs3xb (perplexity-comet) - l6eepr5ctjgrhdgupy3twr1t (prompt-repetition) - zf8zk108oqbsg56xjyqb5txk (ppo) Reviewer subagent LGTM,无阻塞问题。
1 parent 7977987 commit 0c7c981

8 files changed

Lines changed: 36 additions & 3 deletions

File tree

app/docs/CommunityShare/Amazing-AI-Tools/prompt-repetition-improves-non-reasoning-llms.md renamed to app/docs/ai/foundation-models/prompt-engineering/prompt-repetition-improves-non-reasoning-llms.md

File renamed without changes.

app/docs/CommunityShare/Amazing-AI-Tools/prompt-repetition-improves-non-reasoning-llms.zh.md renamed to app/docs/ai/foundation-models/prompt-engineering/prompt-repetition-improves-non-reasoning-llms.zh.md

File renamed without changes.

app/docs/CommunityShare/Geek/leworldmodel.md renamed to app/docs/ai/foundation-models/world-models/leworldmodel.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ title: LeWorldModel
33
description: Stable End-to-End Joint-Embedding Predictive Architecture from Pixels
44
date: "2026-04-08"
55
tags:
6-
- 世界模型
6+
- world-models
7+
- jepa
8+
- representation-learning
9+
- embodied-ai
710
docId: boo70qqm8nos8b0q9h7zjrki
811
---
912

app/docs/CommunityShare/Geek/leworldmodel.zh.md renamed to app/docs/ai/foundation-models/world-models/leworldmodel.zh.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ title: LeWorldModel
33
description: 从像素端到端稳定训练的联合嵌入预测架构
44
date: "2026-04-08"
55
tags:
6-
- 世界模型
6+
- world-models
7+
- jepa
8+
- representation-learning
9+
- embodied-ai
710
docId: boo70qqm8nos8b0q9h7zjrki
811
lang: zh
912
translatedFrom: en

app/docs/CommunityShare/Amazing-AI-Tools/perplexity-comet.en.md renamed to app/docs/ai/misc-tools/perplexity-comet.en.md

File renamed without changes.
File renamed without changes.

app/docs/CommunityShare/Personal-Study-Notes/Reinforcement-Learning/ppo.md renamed to app/docs/ai/reinforcement-learning/ppo.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ title: PPO
33
description: ""
44
date: "2025-10-03"
55
tags:
6-
- tag-one
6+
- reinforcement-learning
7+
- ppo
8+
- policy-gradient
9+
- gae
710
docId: zf8zk108oqbsg56xjyqb5txk
811
---
912

next.config.mjs

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,30 @@ const config = {
6464
destination: "/docs/ai/projects/ai-town",
6565
statusCode: 301,
6666
},
67+
// feat/docs-reorg-rag-projects phase 2:继续把 CommunityShare 下的 AI 内容归并到 ai/
68+
{
69+
source: "/docs/CommunityShare/Geek/leworldmodel",
70+
destination: "/docs/ai/foundation-models/world-models/leworldmodel",
71+
statusCode: 301,
72+
},
73+
{
74+
source: "/docs/CommunityShare/Amazing-AI-Tools/perplexity-comet",
75+
destination: "/docs/ai/misc-tools/perplexity-comet",
76+
statusCode: 301,
77+
},
78+
{
79+
source:
80+
"/docs/CommunityShare/Amazing-AI-Tools/prompt-repetition-improves-non-reasoning-llms",
81+
destination:
82+
"/docs/ai/foundation-models/prompt-engineering/prompt-repetition-improves-non-reasoning-llms",
83+
statusCode: 301,
84+
},
85+
{
86+
source:
87+
"/docs/CommunityShare/Personal-Study-Notes/Reinforcement-Learning/ppo",
88+
destination: "/docs/ai/reinforcement-learning/ppo",
89+
statusCode: 301,
90+
},
6791
];
6892
},
6993
async rewrites() {

0 commit comments

Comments
 (0)