Skip to content

Commit 09e44fa

Browse files
committed
feat: 添加文件发现系统页面及相关文档
docs: 更新导航和页面数量统计 refactor: 在多个页面添加设计哲学章节
1 parent ab7c4ca commit 09e44fa

8 files changed

Lines changed: 1423 additions & 5 deletions

File tree

src/App.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ const TurnStateMachine = lazy(() => import('./pages/TurnStateMachine').then(m =>
114114
const TokenAccountingSystem = lazy(() => import('./pages/TokenAccountingSystem').then(m => ({ default: m.TokenAccountingSystem })));
115115
const SessionPersistence = lazy(() => import('./pages/SessionPersistence').then(m => ({ default: m.SessionPersistence })));
116116
const ToolDeveloperGuide = lazy(() => import('./pages/ToolDeveloperGuide').then(m => ({ default: m.ToolDeveloperGuide })));
117+
const FileDiscovery = lazy(() => import('./pages/FileDiscovery').then(m => ({ default: m.FileDiscovery })));
117118
const CoreCode = lazy(() => import('./pages/CoreCode').then(m => ({ default: m.CoreCode })));
118119
const LoopMechanism = lazy(() => import('./pages/LoopMechanism').then(m => ({ default: m.LoopMechanism })));
119120

@@ -248,6 +249,8 @@ function App() {
248249
return <ToolReference />;
249250
case 'tool-dev-guide':
250251
return <ToolDeveloperGuide />;
252+
case 'file-discovery':
253+
return <FileDiscovery />;
251254
case 'tool-scheduler':
252255
return <ToolSchedulerDetails />;
253256
case 'tool-arch':

src/nav.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export const navGroups: NavGroup[] = [
5555
{ id: 'tool-ref', label: '工具参考', highlight: true },
5656
{ id: 'tool-dev-guide', label: '工具开发指南', highlight: true },
5757
{ id: 'tool-scheduler', label: '工具调度详解', highlight: true },
58+
{ id: 'file-discovery', label: '文件发现系统', highlight: true },
5859
{ id: 'tool-arch', label: '工具架构' },
5960
{ id: 'tool-detail', label: '工具执行' },
6061
{ id: 'ai-tool', label: 'AI工具交互' },

0 commit comments

Comments
 (0)