feat: add dynamic pipeline detection for team sessions v5 architecture

Backend:
- Fix readLegacyFiles to handle { name, prefix }[] role format
- Add roles backfill in getEffectiveTeamMeta when meta.json exists
- Ensure pipeline_stages and roles flow correctly to API response

Team Skills:
- Add pipeline metadata initialization to all 16 team skill coordinator roles
- Each skill now reports pipeline_stages and roles to meta.json at session init

Documentation:
- Update command references and component documentation
- Add numerical-analysis-workflow skill spec
- Sync zh/en translations for commands and components
This commit is contained in:
catlog22
2026-03-04 14:52:07 +08:00
parent b203ada9c5
commit f389e3e6dd
56 changed files with 2007 additions and 201 deletions

View File

@@ -34,53 +34,53 @@
|------|------|------|
| [Button](/components/ui/button) | 可点击的操作按钮,带变体和尺寸 | `variant`, `size`, `asChild` |
| [Input](/components/ui/input) | 文本输入字段 | `error` |
| [Textarea](/components/ui/textarea) | 多行文本输入 | `error` |
| Textarea | 多行文本输入 | `error` |
| [Select](/components/ui/select) | 下拉选择Radix | Select 组件 |
| [Checkbox](/components/ui/checkbox) | 布尔复选框Radix | `checked`, `onCheckedChange` |
| [Switch](/components/ui/switch) | 切换开关 | `checked`, `onCheckedChange` |
| Switch | 切换开关 | `checked`, `onCheckedChange` |
### 布局组件
| 组件 | 描述 | Props |
|------|------|------|
| [Card](/components/ui/card) | 带标题/脚注的内容容器 | 嵌套组件 |
| [Separator](/components/ui/separator) | 视觉分隔符 | `orientation` |
| [ScrollArea](/components/ui/scroll-area) | 自定义滚动条容器 | - |
| Separator | 视觉分隔符 | `orientation` |
| ScrollArea | 自定义滚动条容器 | - |
### 反馈组件
| 组件 | 描述 | Props |
|------|------|------|
| [Badge](/components/ui/badge) | 状态指示器标签 | `variant` |
| [Progress](/components/ui/progress) | 进度条 | `value` |
| [Alert](/components/ui/alert) | 通知消息 | `variant` |
| [Toast](/components/ui/toast) | 临时通知Radix | Toast 组件 |
| Progress | 进度条 | `value` |
| Alert | 通知消息 | `variant` |
| Toast | 临时通知Radix | Toast 组件 |
### 导航组件
| 组件 | 描述 | Props |
|------|------|------|
| [Tabs](/components/ui/tabs) | 标签页导航Radix | Tabs 组件 |
| [TabsNavigation](/components/ui/tabs-navigation) | 自定义标签栏 | `tabs`, `value`, `onValueChange` |
| [Breadcrumb](/components/ui/breadcrumb) | 导航面包屑 | Breadcrumb 组件 |
| Tabs | 标签页导航Radix | Tabs 组件 |
| TabsNavigation | 自定义标签栏 | `tabs`, `value`, `onValueChange` |
| Breadcrumb | 导航面包屑 | Breadcrumb 组件 |
### 叠加层组件
| 组件 | 描述 | Props |
|------|------|------|
| [Dialog](/components/ui/dialog) | 模态对话框Radix | `open`, `onOpenChange` |
| [Drawer](/components/ui/drawer) | 侧边面板Radix | `open`, `onOpenChange` |
| [Dropdown Menu](/components/ui/dropdown) | 上下文菜单Radix | Dropdown 组件 |
| [Popover](/components/ui/popover) | 浮动内容Radix | `open`, `onOpenChange` |
| [Tooltip](/components/ui/tooltip) | 悬停工具提示Radix | `content` |
| [AlertDialog](/components/ui/alert-dialog) | 确认对话框Radix | Dialog 组件 |
| Dialog | 模态对话框Radix | `open`, `onOpenChange` |
| Drawer | 侧边面板Radix | `open`, `onOpenChange` |
| Dropdown Menu | 上下文菜单Radix | Dropdown 组件 |
| Popover | 浮动内容Radix | `open`, `onOpenChange` |
| Tooltip | 悬停工具提示Radix | `content` |
| AlertDialog | 确认对话框Radix | Dialog 组件 |
### 展开组件
| 组件 | 描述 | Props |
|------|------|------|
| [Collapsible](/components/ui/collapsible) | 展开/折叠内容Radix | `open`, `onOpenChange` |
| [Accordion](/components/ui/accordion) | 可折叠部分Radix | Accordion 组件 |
| Collapsible | 展开/折叠内容Radix | `open`, `onOpenChange` |
| Accordion | 可折叠部分Radix | Accordion 组件 |
---

View File

@@ -116,4 +116,4 @@ Badge 徽章组件用于以紧凑形式显示状态、类别或标签。它通
- [Card 卡片](/zh/components/ui/card)
- [Button 按钮](/zh/components/ui/button)
- [Avatar 头像](/zh/components/ui/avatar)
- Avatar 头像

View File

@@ -77,4 +77,4 @@ sidebar: auto
- [Input 输入框](/zh/components/ui/input)
- [Select 选择器](/zh/components/ui/select)
- [Dialog 对话框](/zh/components/ui/dialog)
- Dialog 对话框

View File

@@ -104,4 +104,4 @@ sidebar: auto
- [Button 按钮](/zh/components/ui/button)
- [Badge 徽章](/zh/components/ui/badge)
- [Separator 分隔线](/zh/components/ui/separator)
- Separator 分隔线

View File

@@ -117,4 +117,4 @@ const state = ref('indeterminate')
- [Input 输入框](/zh/components/ui/input)
- [Select 选择器](/zh/components/ui/select)
- [Radio Group 单选框组](/zh/components/ui/radio-group)
- Radio Group 单选框组