docs: reorganize docs — archive outdated, create brainstorming folder
Some checks failed
CI / Lint & TypeCheck (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Build Frontend (push) Has been cancelled
CI / Rust Check (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled

- Create docs/brainstorming/ with 5 discussion records (Mar 16 - Apr 7)
- Archive ~30 outdated audit reports (V5-V11) to docs/archive/old-audits/
- Archive superseded analysis docs to docs/archive/old-analysis/
- Archive completed session plans to docs/archive/old-plans/
- Archive old test reports/validations to respective archive folders
- Remove empty directories left after moves
- Keep current docs: TRUTH.md, feature docs, deployment, knowledge-base, superpowers
This commit is contained in:
iven
2026-04-07 09:54:30 +08:00
parent 8e9fc54d92
commit 2e5f63be32
101 changed files with 1829 additions and 17 deletions

View File

@@ -0,0 +1,69 @@
# T7 技能生态 测试报告
> **执行日期**: 2026-04-05 | **测试工具**: tauri-mcp execute_js + 代码审查 | **V12 基线**: 85/100
## 摘要
- **执行用例数**: 4/73 个需 UI 交互)
- **已修复 P1**: 1 ✅(部分)
- **未修复**: 4 ⚠️
- **新发现缺陷**: 0
### 缺陷统计
| 级别 | 数量 | 说明 |
|------|------|------|
| P0 | 0 | - |
| P1 | 0 | M5-01 部分修复triggers 正确category 仍错) |
| P2 | 3 | M5-02 tools 字段丢失; M5-03 Python3 硬编码; M5-06 分类不全 |
| P3 | 2 | M5-04 YAML 引号; M5-05 duration_ms 未设置 |
---
## V12 已知问题验证
| V12 ID | 描述 | V12 严重度 | 验证结果 | 备注 |
|--------|------|-----------|---------|------|
| M5-01 | tags 误映射为 triggers | P1 | ⚠️ **部分修复** | triggers 正确返回skill_list 返回真实 triggers但 category 仍从 tags[0] 映射75 个技能全部 category=null |
| M5-02 | SKILL.md tools 字段丢失 | P2 | ❓ 未验证 | 需检查 Rust loader |
| M5-03 | Python3 硬编码 | P2 | ❓ 未验证 | Windows 兼容性问题 |
| M5-04 | YAML 引号只处理双引号 | P3 | ❓ 未验证 | - |
| M5-05 | ShellSkill duration_ms 未设置 | P3 | ❓ 未验证 | - |
| M5-06 | CATEGORY_CONFIG 仅覆盖 9 分类 | P3 | ⚠️ **未修复** | 75 个技能全为 nullSkillCard 显示灰色 |
## 运行时验证
### skill_list
- **技能总数**: 75
- **triggers 字段**: ✅ 正确返回(如 "品牌个性"、"微交互"、"截图验证"
- **tags 字段**: 全部为 `[]`(空数组)
- **category 字段**: 全部为 `null`
```json
{
"count": 75,
"sample": [
{"name": "whimsy-injector", "tags": [], "triggers": ["品牌个性","微交互","趣味设计"], "category": null},
{"name": "evidence-collector", "tags": [], "triggers": ["证据收集","截图验证","QA验证"], "category": null},
{"name": "github-deep-research", "tags": [], "triggers": ["分析仓库","GitHub分析"], "category": null}
]
}
```
---
## 健康度评估
| 维度 | V12 基线 | 本次评估 | 变化 |
|------|---------|---------|------|
| **综合** | **85/100** | **87/100** | **+2** |
**提升原因**:
- M5-01 triggers 映射已修复(正确使用 backend.triggers
- 75 个技能全部成功加载
**残留风险**:
- category 映射仍从 tags[0] 获取P2
- 75 个技能全部无分类标签P2
- Python 技能在 Windows 可能失败P2