Help us improve
Share bugs, ideas, or general feedback.
From team-knowledge
Auto-invoke whenever the user asks about architecture decisions, technical choices, debugging known issues, business rules, domain models, or any task where prior team experience could apply. Provides access to the team's accumulated knowledge base across tech-wiki (cross-project tech patterns and anti-patterns) and biz-wiki (per-domain business knowledge: entities, processes, pitfalls, decisions). Always consult before making non-trivial design decisions or when encountering unfamiliar bugs.
npx claudepluginhub chainupcloud/team-knowledge-plugin --plugin team-knowledgeHow this skill is triggered — by the user, by Claude, or both
Slash command
/team-knowledge:team-knowledgeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
知识库位于 `~/.team-knowledge/`(团队共享 Git 仓库)。如果用户在 `~/.claude/settings.json` 的 `env` 中设置了 `TEAM_KNOWLEDGE_REPO`,以该路径为准;下文所有 `~/.team-knowledge/` 都按相同规则替换。
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
知识库位于 ~/.team-knowledge/(团队共享 Git 仓库)。如果用户在 ~/.claude/settings.json 的 env 中设置了 TEAM_KNOWLEDGE_REPO,以该路径为准;下文所有 ~/.team-knowledge/ 都按相同规则替换。
读 ~/.team-knowledge/knowledge-catalog.md(≤80 行)。
这个文件告诉你:
根据 Step 1 中"按任务阶段推荐查阅路径"表,读对应的 catalog.md:
tech-wiki/catalog.mdbiz-wiki/{domain}/catalog.md每条知识在 catalog 里只有一行:ID | 标题 | maturity | tags
用 tags 和 maturity 过滤 —— 优先选 proven > verified > draft。
读 TK-*.md 或 BK-*.md 完整文件,约 50-200 行。
只读真正相关的。如果不确定相关性,先读到第一个 ## 二级标题就停下,再决定是否继续。
每个条目有 source_references 字段,指向原始 PR / 复盘文档。仅在需要追溯具体推导过程时读取。
| 当前任务 | 优先 catalog | 重点知识类型 |
|---|---|---|
| 业务理解 / 需求分析 | biz-wiki/{domain}/catalog.md | model, process, pitfall |
| 技术选型 | tech-wiki/catalog.md | decision, anti-patterns |
| 架构设计 | 两个都要 | decision, model, anti-patterns |
| 编码实现 | tech-wiki/patterns/, team-conventions/ | guideline (recommend) |
| 排查 bug | 先 */pitfalls/, 再 anti-patterns/ | pitfall, guideline (avoid) |
| 跨团队对接 | biz-wiki/{domain}/processes/ | process |
任何使用了知识库条目的产出(架构方案、代码改动、排查报告),必须在 JSON 输出或 markdown 报告底部附 knowledgeReferences:
{
"knowledgeReferences": [
{"id": "TK-PAT-001", "title": "分页查询延迟关联优化", "usedIn": "Step 2 性能优化"},
{"id": "BK-ECO-PIT-001", "title": "高并发库存超扣", "usedIn": "并发控制设计"}
]
}
ARCHIVE 阶段会扫描这些引用,自动更新对应条目的 last_referenced 字段,触发成熟度提升。
如果需要对某个主题做大范围查询("找所有跟事务相关的知识"),调用 @knowledge-explorer subagent,不要在主上下文里 grep —— 会爆 token。
TK-*.md / BK-*.md,先经过 catalog 过滤/archive 让 archiver 提取)@knowledge-explorer)任务完成后,提醒用户运行 /archive,让 archiver subagent 提取本次会话中产生的知识。