为什么需要 Skill Wiki
别再把 SKILL.md 整个塞进 agent 了。
三个架构倒置,每一个都对应一个可量化的代价。完整论证见 背景文档。
存在 ≠ 内容
Agent 始终只看 ~3 KB 的 _index.xml。原子内容只在被检索命中时
才载入 —— 用 ID 寻址,不靠相关性瞎猜。
类型化边,不是平表 related
14 种动词(requires、validates-with、
contradicts、specializes…)
带语义,parser 和 L3 检查器能据此推理。图不是装饰。
三级投影
每个原子编译产出 summary(~30 tok)、
core(~150 tok)、full(~380 tok)。
按预算挑能装下的最小那一档。
规范表面 · v1.0 冻结
wiki 的形状
Prime 协议在 v1.0 冻结的四个数字 —— Skill Wiki 就建在这套协议上。 装多少 Prime 都不会变。
— 当前的发布情况 —
市场 · 实时
参考部署
本站市场里 6 个参考 Prime 的实际数字 —— 用 v0.1.0 参考实现编译产出。
详细列表见 市场 →
旗舰 Prime
来自市场
Skill Wiki 本身 domain-blind —— 知识活在 Prime 里。当前市场已覆盖设计、 后端架构、应用安全等领域,所有 Prime 共用同一份 Prime 协议。
@frontend-design 是旗舰参考 Prime:
898 个关于视觉设计的类型化原子 ——
协议在真实领域上跑通的最深一份样本。
@frontend-design
898 个类型化原子,覆盖 9 个设计子领域 —— 色彩、版式、动效、间距、可访问性、文案 voice、视觉层次、布局、组件模式。 参考语料 + 参考应用:5 工具 MCP 封装、31 个 persona、30 个任务分类、 20-task benchmark。
- 原子
- 898
- 使用 kind
- 28 / 28
- Token
- 编译产出 422,867
- 命名空间
- 5
- 许可
- Apache-2.0
@backend-architecture
@backend-architecture v0.1.0Domain plugin for backend / distributed-system architecture corpora. Covers 12-Factor App principles, microservices patterns, and the layer / deployment / scale axes that classify the trade-offs.
@security-appsec
@security v0.1.0Domain plugin for application-security corpora derived from the OWASP Cheat Sheet Series. Covers input validation, authentication, session management, cryptography, injection prevention, XSS, CSRF, secrets management, and core security principles.
@web-style
@web-style v0.1.0Domain plugin for JavaScript style corpora. Covers naming conventions, variable declarations, function shape, object and array idioms, module layout, and core readability principles drawn from Airbnb and Google style guides.
@android-compose
@android-compose v0.1.0Domain plugin for Jetpack Compose component API guidance and Material 3 design tokens. Covers composable function shape, state hoisting, modifiers, slot APIs, recomposition discipline, lazy lists, Material 3 color/typography/elevation/motion tokens, accessibility, and adaptive layout patterns.
@ios-swift
@ios-swift v0.1.0Domain plugin for Swift / iOS / Apple-platform corpora derived from the official Swift API Design Guidelines and the Google Swift Style Guide. Covers naming, protocol- and value-oriented design, optional handling, error propagation, memory management in closures, and structured concurrency.
上手
30 秒装好。
Skill Wiki 走 MCP。把 Claude Code、Cursor、Continue 或任何 MCP 客户端指过来即可。
1 · 启动 server
bun add -g @skill-wiki/cli
bunx @skill-wiki/mcp-server-core 2 · 接入 Claude Code
{
"mcpServers": {
"skill-wiki": {
"command": "bunx",
"args": ["@skill-wiki/mcp-server-core"],
"env": { "PRIME_DIR": "/abs/path/to/compiled" }
}
}
}