name: sou description: 语义代码搜索 mcp_tool: augment-context-engine
Sou Skill (Augment)
语义代码搜索,R1阶段首选工具。
优先级
1. sou (augment) — 语义搜索,首选
2. grep — 精确文本匹配
3. read_file — 最后手段
调用方式
sou.search("用户认证逻辑")
sou.search("订单状态流转")
最佳实践
// ✅ 好
sou.search("用户注册验证逻辑")
// ❌ 差
sou.search("function") // 太泛
降级
sou不可用时:
grep -r "关键词" --include="*.ts" ./src