Initial commit: OpenClaw Skill Collection
6 custom skills (assign-task, dispatch-webhook, daily-briefing, task-capture, qmd-brain, tts-voice) with technical documentation. Compatible with Claude Code, OpenClaw, Codex CLI, and OpenCode.
This commit is contained in:
17
openclaw-knowhow-skill/configs/openclaw-docs.json
Executable file
17
openclaw-knowhow-skill/configs/openclaw-docs.json
Executable file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "openclaw-docs",
|
||||
"description": "OpenClaw AI agent \u5e73\u53f0\u5b8c\u6574\u6587\u6a94 - \u5b89\u88dd\u8a2d\u5b9a\u3001Gateway \u7ba1\u7406\u3001\u700f\u89bd\u5668\u63a7\u5236\u3001\u901a\u8a0a\u983b\u9053\u6574\u5408\uff08WhatsApp/Telegram/Discord\uff09\u3001Skills \u958b\u767c\u8207 CLI \u53c3\u8003",
|
||||
"base_url": "https://docs.openclaw.ai/",
|
||||
"selectors": {
|
||||
"main_content": "article",
|
||||
"title": "h1",
|
||||
"code_blocks": "pre code"
|
||||
},
|
||||
"url_patterns": {
|
||||
"include": [],
|
||||
"exclude": []
|
||||
},
|
||||
"categories": {},
|
||||
"rate_limit": 0.5,
|
||||
"max_pages": null
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"models": {
|
||||
"mode": "merge",
|
||||
"providers": {
|
||||
"cliproxyapi-2": {
|
||||
"baseUrl": "http://127.0.0.1:8317/v1",
|
||||
"apiKey": "${CLIPROXY_API_KEY}",
|
||||
"api": "openai-responses",
|
||||
"models": [
|
||||
{ "id": "claude-opus-4-6", "name": "Opus 4.6 (antigravity)", "reasoning": true },
|
||||
{ "id": "claude-opus-4-6-thinking", "name": "Opus 4.6 Thinking (antigravity)", "reasoning": true },
|
||||
{ "id": "claude-sonnet-4-5", "name": "Sonnet 4.5 (antigravity)", "reasoning": true },
|
||||
{ "id": "claude-sonnet-4-5-thinking", "name": "Sonnet 4.5 Thinking (antigravity)", "reasoning": true },
|
||||
{ "id": "gpt-5.3-codex", "name": "GPT-5.3 Codex" },
|
||||
{ "id": "gpt-5.1-codex", "name": "GPT-5.1 Codex" },
|
||||
{ "id": "gpt-5.1-codex-mini", "name": "GPT-5.1 Codex Mini" },
|
||||
{ "id": "gpt-5.2", "name": "GPT-5.2" },
|
||||
{ "id": "gemini-3-pro-high", "name": "Gemini 3 Pro High" },
|
||||
{ "id": "gemini-3-flash", "name": "Gemini 3 Flash" }
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"agents": {
|
||||
"defaults": {
|
||||
"model": { "primary": "cliproxyapi-2/claude-opus-4-6" },
|
||||
"models": {
|
||||
"cliproxyapi-2/claude-opus-4-6": { "alias": "Opus" },
|
||||
"cliproxyapi-2/claude-opus-4-6-thinking": { "alias": "OpusT" },
|
||||
"cliproxyapi-2/claude-sonnet-4-5": { "alias": "Sonnet" },
|
||||
"cliproxyapi-2/claude-sonnet-4-5-thinking": { "alias": "SonnetT" },
|
||||
"cliproxyapi-2/gpt-5.3-codex": { "alias": "Codex" },
|
||||
"cliproxyapi-2/gpt-5.1-codex": { "alias": "Codex51" },
|
||||
"cliproxyapi-2/gpt-5.1-codex-mini": { "alias": "CodexMini" },
|
||||
"cliproxyapi-2/gemini-3-flash": { "alias": "GFlash" },
|
||||
"anthropic/claude-opus-4-6": { "alias": "OpusDirect" }
|
||||
}
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"id": "architect",
|
||||
"name": "系統架構師",
|
||||
"model": {
|
||||
"primary": "cliproxyapi-2/claude-opus-4-6-thinking",
|
||||
"fallbacks": [
|
||||
"cliproxyapi-2/claude-sonnet-4-5-thinking",
|
||||
"cliproxyapi-2/claude-opus-4-5-thinking",
|
||||
"anthropic/claude-opus-4-6"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "coder-fe",
|
||||
"name": "前端工程師",
|
||||
"model": {
|
||||
"primary": "cliproxyapi-2/gpt-5.3-codex",
|
||||
"fallbacks": ["cliproxyapi-2/gpt-5.1-codex", "cliproxyapi-2/claude-sonnet-4-5"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "coder-be",
|
||||
"name": "後端工程師",
|
||||
"model": {
|
||||
"primary": "cliproxyapi-2/gpt-5.3-codex",
|
||||
"fallbacks": ["cliproxyapi-2/gpt-5.1-codex", "cliproxyapi-2/claude-opus-4-6"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "file-ops",
|
||||
"name": "檔案作業",
|
||||
"model": {
|
||||
"primary": "cliproxyapi-2/gpt-5.1-codex-mini",
|
||||
"fallbacks": ["cliproxyapi-2/gpt-5.1-codex", "cliproxyapi-2/gemini-3-flash"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "web",
|
||||
"name": "網頁操作",
|
||||
"model": {
|
||||
"primary": "cliproxyapi-2/claude-sonnet-4-5-thinking",
|
||||
"fallbacks": ["cliproxyapi-2/claude-opus-4-6", "anthropic/claude-opus-4-6"]
|
||||
},
|
||||
"tools": { "profile": "strict", "allow": ["browser", "web_search", "web_fetch", "image"] }
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user