Universal 技能 Mar
- 作者仓库星标 0
- 作者仓库 skills-registry
Universal Skills Marketplace
Context7 for skills, not docs. One MCP server. Two ecosystems. Unofficial.
Mission
Build, maintain, or extend an unofficial bridge that lets any Claude Code or OpenAI Codex session search one registry for skills originating in either ecosystem, get them back with quality scores + install commands for both CLIs, and load them on demand.
Not affiliated with Anthropic or OpenAI. Identity details in references/00-architecture-overview.md.
Routing table — pick the right reference
| I want to… | Primary reference | Supporting asset / script |
|---|---|---|
| Understand the whole system | references/00-architecture-overview.md |
assets/diagrams/system-topology.png |
| Learn the SKILL.md open standard | references/01-agentskills-io-spec-walkthrough.md |
assets/templates/standalone-SKILL.md.template |
| Author a Claude plugin | references/02-claude-plugin-format.md |
assets/templates/claude-plugin.json.template, assets/real-examples/context7-plugin.json |
| Author a Codex plugin | references/03-codex-plugin-format.md |
assets/templates/codex-plugin.json.template, assets/real-examples/openai-canva-plugin.json |
| Design MCP tools | references/04-mcp-tool-design.md |
assets/templates/mcp-server-index.ts.template |
| Deploy Cloudflare Workers | references/05-cloudflare-workers-playbook.md |
assets/templates/wrangler.toml.*.template |
| Design the D1 catalog | references/06-d1-schema-design.md |
assets/templates/d1-schema.sql.template |
| Plan R2 content storage | references/07-r2-storage-patterns.md |
— |
| Build the upstream indexer | references/08-github-indexer-design.md |
scripts/fetch-upstream-catalog.sh |
| Score skill quality 0-100 | references/09-quality-scoring-rubric.md |
assets/fixtures/known-good/ |
| Copy what Context7 got right | references/10-context7-architectural-analysis.md |
assets/real-examples/context7-*.json |
| Translate between manifest formats | references/11-manifest-translator-algorithm.md |
scripts/test-translator.ts, assets/fixtures/lossy-cases/ |
| Verify end-to-end | references/12-verification-playbook.md |
scripts/validate.sh |
Phase dispatcher
- Planning / just arrived → read
00-architecture-overview.md, then10-context7-architectural-analysis.md, thenreferences/11-manifest-translator-algorithm.md(the three anchoring docs) - Phase 0 — spikes complete → evidence in
/docs/spikes/(upstream URLs verified, Codex schema derived, rate limits mapped, iCloud strategy documented) - Phase 1 — schemas + this skill → you are here; running this skill IS Phase 1's deliverable
- Phase 2 — npm package →
packages/mcp-server/implementation driven by04-mcp-tool-design.md+11-manifest-translator-algorithm.md - Phase 3 — Cloudflare backend → three Workers driven by
05-cloudflare-workers-playbook.md+06-d1-schema-design.md+08-github-indexer-design.md
Hard rules (inherited from ../../CLAUDE.md)
- Anti-Fabrication — if a URL, field, or behavior isn't verified against installed plugins or a live upstream, it does NOT ship.
- Anti-Mock-Data — no hardcoded skills anywhere except
assets/fixtures/andpackages/*/tests/fixtures/. - Verification — "build passed" ≠ acceptance;
curl+ fresh Claude Code AND Codex session required. - Translator loudness — no silent field drops; every lossy translation logs + shims.
- context7 fidelity — plugin wrapper stays trivial; all logic in the npm package.
- Identity — unofficial, independent, community project. Never imply endorsement from either company.
Run before any commit
bash skills/universal-skills-marketplace/scripts/validate.sh
Must exit 0. Checks: frontmatter valid, SKILL.md ≤100 lines, all 12 references present, all templates parse, no broken intra-skill links.
<!-- tomevault:4.0:skill_md:2026-05-23 -->Source: ahump20/ClaudOpenAI — distributed by TomeVault.
- 流狐分类
- 设计与多媒体
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @tomevault-io · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- macOS · Linux · Windows
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Build, maintain, or extend an unofficial bridge that lets any Claude Code or OpenAI Codex session search one registry for skills originating in either ecosystem, get them back with quality scores + install commands for both CLIs, and load them on demand.
I want to… · Primary reference · Supporting asset / script Understand the whole system · references/00-architecture-overview.md · assets/diagrams/system-topology.png Learn the SKILL.md open standard · references/01-agentskills-io-spec-walkthrough.md ·…
Planning / just arrived → read 00-architecture-overview.md, then 10-context7-architectural-analysis.md, then references/11-manifest-translator-algorithm.md (the three anchoring docs) Phase 0 — spikes complete → evidence in /docs/spikes/ (upstream URLs…
Anti-Fabrication — if a URL, field, or behavior isn't verified against installed plugins or a live upstream, it does NOT ship. Anti-Mock-Data — no hardcoded skills anywhere except assets/fixtures/ and packages//tests/fixtures/.
Must exit 0. Checks: frontmatter valid, SKILL.md ≤100 lines, all 12 references present, all templates parse, no broken intra-skill links. Source: ahump20/ClaudOpenAI — distributed by TomeVault. <!-- tomevault:4.0:skillmd:2026-05-23 -->
# Universal Skills Marketplace
Context7 for skills, not docs. One MCP server. Two ecosystems. Unofficial.
## Mission
Build, maintain, or extend an unofficial bridge that lets **any Claude Code or OpenAI Codex session** search one registry for skills originating in either ecosystem, get them back with quality scores + install commands for both CLIs, and load them on demand.
Not affiliated with Anthropic or OpenAI. Identity details in [`references/00-architecture-overview.md`](references/00-architecture-overview.md#identity-positioning).
## Routing table — pick the right reference
| I want to… | Primary reference | Supporting asset / script |
|------------|-------------------|---------------------------|
| Understand the whole system | `references/00-architecture-overview.md` | `assets/diagrams/system-topology.png` |
| Learn the SKILL.md open standard | `references/01-agentskills-io-spec-walkthrough.md` | `assets/templates/standalone-SKILL.md.template` |
| Author a Claude plugin | `references/02-claude-plugin-format.md` | `assets/templates/claude-plugin.json.template`, `assets/real-examples/context7-plugin.json` |
| Author a Codex plugin | `references/03-codex-plugin-format.md` | `assets/templates/codex-plugin.json.template`, `assets/real-examples/openai-canva-plugin.json` |
| Design MCP tools | `references/04-mcp-tool-design.md` | `assets/templates/mcp-server-index.ts.template` |
| Deploy Cloudflare Workers | `references/05-cloudflare-workers-playbook.md` | `assets/templates/wrangler.toml.*.template` |
| Design the D1 catalog | `references/06-d1-schema-design.md` | `assets/templates/d1-schema.sql.template` |
| Plan R2 content storage | `references/07-r2-storage-patterns.md` | — |
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Mission → Routing table — pick the right reference → Phase dispatcher → Hard rules (inherited from ../../CLAUDE.md) → Run before any commit
要点 -> any Claude Code or OpenAI Codex session · Planning / just arrived · Phase 0 — spikes complete · Phase 1 — schemas + this skill · Phase 2 — npm package · Phase 3 — Cloudflare backend · Anti-Fabrication · Anti-Mock-Data
文件/命令 -> references/00-architecture-overview.md · assets/diagrams/system-topology.png · references/01-agentskills-io-spec-walkthrough.md · assets/templates/standalone-SKILL.md.template · references/02-claude-plugin-format.md · assets/templates/claude-plugin.json.template · assets/real-examples/context7-plugin.json · references/03-codex-plugin-format.md
内容 SHA-256 -> 1a522400806f
方法与流程
适用与边界
原文中的明确线索
references/00-architecture-overview.md、assets/diagrams/system-topology.png、references/01-agentskills-io-spec-walkthrough.md、assets/templates/standalone-SKILL.md.template、references/02-claude-plugin-format.md、assets/templates/claude-plugin.json.template、assets/real-examples/context7-plugin.json、references/03-codex-plugin-format.md