feat: initialize OmniClaw skills registry

This commit is contained in:
boris
2026-04-24 01:12:20 -07:00
commit 789bb38e69
16 changed files with 1713 additions and 0 deletions

117
registry/manifest.json Normal file
View File

@@ -0,0 +1,117 @@
{
"schema_version": "1.0.0",
"generated_at": "2026-04-24T08:11:41.942Z",
"repository": {
"name": "zsb/omniclaw-skills",
"git_url": "https://git.omniclaw.store/zsb/omniclaw-skills.git",
"raw_base_url": "https://git.omniclaw.store/zsb/omniclaw-skills/raw/branch/main",
"branch": "main"
},
"skills": [
{
"name": "sub2api-gpt-image-2",
"version": "0.1.0",
"title": "Sub2API GPT Image 2",
"description": "Generate, edit, stream, and troubleshoot GPT Image 2 calls through sub2api/OpenAI-compatible image APIs.",
"path": "skills/sub2api-gpt-image-2",
"raw_url": "https://git.omniclaw.store/zsb/omniclaw-skills/raw/branch/main/skills/sub2api-gpt-image-2/SKILL.md",
"package": "packages/sub2api-gpt-image-2-0.1.0.tar.gz",
"package_url": "https://git.omniclaw.store/zsb/omniclaw-skills/raw/branch/main/packages/sub2api-gpt-image-2-0.1.0.tar.gz",
"sha256": "d226c0327193646879e5d9de081a9e29400efa15e194f9c5e00620bd21cceb22",
"size_bytes": 5420,
"api_docs": [
{
"id": "sub2api/gpt-image-2.zh",
"title": "GPT Image 2 API 调用文档",
"product": "sub2api",
"language": "zh",
"path": "apis/sub2api/gpt-image-2.zh.md",
"url": "https://git.omniclaw.store/zsb/omniclaw-skills/raw/branch/main/apis/sub2api/gpt-image-2.zh.md",
"tags": [
"sub2api",
"gpt-image-2",
"zh"
],
"source_urls": [
"https://claude.omniclaw.store/v1",
"https://developers.openai.com/api/docs/models/gpt-image-2",
"https://developers.openai.com/api/docs/guides/image-generation",
"https://developers.openai.com/api/reference/resources/images"
]
},
{
"id": "sub2api/gpt-image-2.en",
"title": "GPT Image 2 API Guide",
"product": "sub2api",
"language": "en",
"path": "apis/sub2api/gpt-image-2.en.md",
"url": "https://git.omniclaw.store/zsb/omniclaw-skills/raw/branch/main/apis/sub2api/gpt-image-2.en.md",
"tags": [
"sub2api",
"gpt-image-2",
"en"
],
"source_urls": [
"https://claude.omniclaw.store/v1",
"https://developers.openai.com/api/docs/models/gpt-image-2",
"https://developers.openai.com/api/docs/guides/image-generation",
"https://developers.openai.com/api/reference/resources/images"
]
}
],
"tags": [
"sub2api",
"openai",
"gpt-image-2",
"images",
"responses",
"codex"
],
"agents": [
"codex",
"openai-compatible-agent"
],
"updated_at": "2026-04-24"
}
],
"apis": [
{
"id": "sub2api/gpt-image-2.en",
"title": "GPT Image 2 API Guide",
"product": "sub2api",
"language": "en",
"path": "apis/sub2api/gpt-image-2.en.md",
"url": "https://git.omniclaw.store/zsb/omniclaw-skills/raw/branch/main/apis/sub2api/gpt-image-2.en.md",
"tags": [
"sub2api",
"gpt-image-2",
"en"
],
"source_urls": [
"https://claude.omniclaw.store/v1",
"https://developers.openai.com/api/docs/models/gpt-image-2",
"https://developers.openai.com/api/docs/guides/image-generation",
"https://developers.openai.com/api/reference/resources/images"
]
},
{
"id": "sub2api/gpt-image-2.zh",
"title": "GPT Image 2 API 调用文档",
"product": "sub2api",
"language": "zh",
"path": "apis/sub2api/gpt-image-2.zh.md",
"url": "https://git.omniclaw.store/zsb/omniclaw-skills/raw/branch/main/apis/sub2api/gpt-image-2.zh.md",
"tags": [
"sub2api",
"gpt-image-2",
"zh"
],
"source_urls": [
"https://claude.omniclaw.store/v1",
"https://developers.openai.com/api/docs/models/gpt-image-2",
"https://developers.openai.com/api/docs/guides/image-generation",
"https://developers.openai.com/api/reference/resources/images"
]
}
]
}

View File

@@ -0,0 +1,59 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://release.omniclaw.store/skills/manifest.schema.json",
"title": "OmniClaw Skills Registry Manifest",
"type": "object",
"required": ["schema_version", "generated_at", "repository", "skills", "apis"],
"properties": {
"schema_version": { "type": "string" },
"generated_at": { "type": "string" },
"repository": {
"type": "object",
"required": ["name", "git_url", "raw_base_url", "branch"],
"properties": {
"name": { "type": "string" },
"git_url": { "type": "string" },
"raw_base_url": { "type": "string" },
"branch": { "type": "string" }
}
},
"skills": {
"type": "array",
"items": {
"type": "object",
"required": ["name", "version", "title", "description", "path", "package", "sha256"],
"properties": {
"name": { "type": "string" },
"version": { "type": "string" },
"title": { "type": "string" },
"description": { "type": "string" },
"path": { "type": "string" },
"package": { "type": "string" },
"sha256": { "type": "string" },
"size_bytes": { "type": "number" },
"api_docs": { "type": "array" },
"tags": { "type": "array", "items": { "type": "string" } },
"agents": { "type": "array", "items": { "type": "string" } },
"updated_at": { "type": "string" }
}
}
},
"apis": {
"type": "array",
"items": {
"type": "object",
"required": ["id", "title", "product", "language", "path"],
"properties": {
"id": { "type": "string" },
"title": { "type": "string" },
"product": { "type": "string" },
"language": { "type": "string" },
"path": { "type": "string" },
"tags": { "type": "array", "items": { "type": "string" } },
"source_urls": { "type": "array", "items": { "type": "string" } }
}
}
}
}
}