Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
通过 SSH 远程在 Windows WSL 上安装和配置 openclaw-cn 项目 --- name: openclaw-install description: 通过 SSH 远程在 Windows WSL 上安装和配置 openclaw-cn 项目 invocation: user --- OpenClaw-CN 安装技能 通过 SSH 远程访问 Windows 下的 WSL,安装 openclaw-cn 项目。 使用方式 示例: 安装流程 阶段1:环境准备 1. **检查系统信息** 2. **检查 Node.js 版本**(要求 >= 22) 3. **升级 Node.js**(如版本不足) 阶段2:安装 openclaw-cn 阶段3:配置 1. **运行 doctor 修复配置** 2. **设置 gateway mode** 3. **设置 auth token** 4. **修复权限** 阶段4:启动 Gateway 阶段5:配置 Nginx 反向代理(可选) 浏览器无法直接添加 Authori Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Freshness
Last checked 2/24/2026
Best For
openclaw-install is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
通过 SSH 远程在 Windows WSL 上安装和配置 openclaw-cn 项目 --- name: openclaw-install description: 通过 SSH 远程在 Windows WSL 上安装和配置 openclaw-cn 项目 invocation: user --- OpenClaw-CN 安装技能 通过 SSH 远程访问 Windows 下的 WSL,安装 openclaw-cn 项目。 使用方式 示例: 安装流程 阶段1:环境准备 1. **检查系统信息** 2. **检查 Node.js 版本**(要求 >= 22) 3. **升级 Node.js**(如版本不足) 阶段2:安装 openclaw-cn 阶段3:配置 1. **运行 doctor 修复配置** 2. **设置 gateway mode** 3. **设置 auth token** 4. **修复权限** 阶段4:启动 Gateway 阶段5:配置 Nginx 反向代理(可选) 浏览器无法直接添加 Authori
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 24, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 24, 2026
Vendor
Abca12a
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/abca12a/openclaw-install-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Abca12a
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
text
/openclaw-install <ssh地址>
text
/openclaw-install root@pengyou.tail39ed0c.ts.net
bash
ssh <地址> "uname -a && cat /etc/os-release"
bash
ssh <地址> "node --version"
bash
ssh <地址> "curl -fsSL https://deb.nodesource.com/setup_22.x | bash -" ssh <地址> "apt install nodejs -y"
bash
ssh <地址> "npm install -g openclaw-cn@latest"
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
通过 SSH 远程在 Windows WSL 上安装和配置 openclaw-cn 项目 --- name: openclaw-install description: 通过 SSH 远程在 Windows WSL 上安装和配置 openclaw-cn 项目 invocation: user --- OpenClaw-CN 安装技能 通过 SSH 远程访问 Windows 下的 WSL,安装 openclaw-cn 项目。 使用方式 示例: 安装流程 阶段1:环境准备 1. **检查系统信息** 2. **检查 Node.js 版本**(要求 >= 22) 3. **升级 Node.js**(如版本不足) 阶段2:安装 openclaw-cn 阶段3:配置 1. **运行 doctor 修复配置** 2. **设置 gateway mode** 3. **设置 auth token** 4. **修复权限** 阶段4:启动 Gateway 阶段5:配置 Nginx 反向代理(可选) 浏览器无法直接添加 Authori
通过 SSH 远程访问 Windows 下的 WSL,安装 openclaw-cn 项目。
/openclaw-install <ssh地址>
示例:
/openclaw-install root@pengyou.tail39ed0c.ts.net
检查系统信息
ssh <地址> "uname -a && cat /etc/os-release"
检查 Node.js 版本(要求 >= 22)
ssh <地址> "node --version"
升级 Node.js(如版本不足)
ssh <地址> "curl -fsSL https://deb.nodesource.com/setup_22.x | bash -"
ssh <地址> "apt install nodejs -y"
ssh <地址> "npm install -g openclaw-cn@latest"
运行 doctor 修复配置
ssh <地址> "openclaw-cn doctor --fix"
设置 gateway mode
ssh <地址> "openclaw-cn config set gateway.mode local"
设置 auth token
ssh <地址> "openclaw-cn config set gateway.auth.token <token>"
修复权限
ssh <地址> "chmod 700 ~/.openclaw && chmod 600 ~/.openclaw/openclaw.json"
ssh <地址> "nohup openclaw-cn gateway --port 18789 --bind lan > /tmp/openclaw-gateway.log 2>&1 &"
浏览器无法直接添加 Authorization header,需要 nginx 代理:
# 安装 nginx
ssh <地址> "apt install nginx -y"
# 创建配置
ssh <地址> "cat > /etc/nginx/sites-available/openclaw << 'EOF'
server {
listen 8080;
server_name localhost;
location / {
proxy_pass http://127.0.0.1:18791;
proxy_set_header Authorization \"Bearer <token>\";
proxy_set_header Host \$host;
}
}
EOF"
# 启用并重载
ssh <地址> "ln -sf /etc/nginx/sites-available/openclaw /etc/nginx/sites-enabled/"
ssh <地址> "nginx -t && systemctl reload nginx"
agent.model 配置无效agents.defaults.model.primaryopenclaw-cn doctor --fix 自动迁移gateway.mode is unset; gateway start will be blockedopenclaw-cn config set gateway.mode localGateway auth is set to token, but no token is configuredopenclaw-cn config set gateway.auth.token <随机token>Authorization: Bearer <token> headeropenclaw-cn onboard 卡住doctor --fix| 服务 | 地址 | 说明 |
|------|------|------|
| Dashboard | http://127.0.0.1:18789/?token=<token> | 主控制台 |
| Gateway WS | ws://0.0.0.0:18789 | WebSocket 连接 |
| Browser Control | http://127.0.0.1:18791 | 需要 Bearer token |
| Browser Control (代理) | http://127.0.0.1:8080 | 通过 nginx 免认证 |
openclaw-cn updateHTTP 401 authentication_error: Invalid bearer tokenanthropic 供应商无法识别自定义 baseUrl1. 设置 API Key 环境变量
openclaw-cn config set env.CUSTOM_ANTHROPIC_KEY "sk-ant-xxx..."
2. 配置自定义供应商
openclaw-cn config set models.providers.custom-anthropic '{"baseUrl":"https://your-api-proxy.com/v1","apiKey":"${CUSTOM_ANTHROPIC_KEY}","api":"anthropic-messages","models":[{"id":"claude-opus-4-6","name":"Claude Opus 4.6"}]}'
3. 设置默认模型
openclaw-cn config set agents.defaults.model.primary "custom-anthropic/claude-opus-4-6"
4. 重启网关
systemctl --user restart openclaw-gateway.service
5. 验证配置
openclaw-cn models status
| 字段 | 说明 |
|------|------|
| baseUrl | 第三方 API 地址 |
| apiKey | 使用 ${ENV_VAR} 引用环境变量 |
| api | 协议类型:anthropic-messages 或 openai-completions |
| models[].id | 模型 ID(不含供应商前缀) |
openclaw-cn channels add telegram --token '<BOT_TOKEN>'
当用户首次使用 bot 时会收到配对请求:
配对码:XXXXXXXX
请让机器人所有者执行:
openclaw-cn pairing approve telegram XXXXXXXX
批准配对:
openclaw-cn pairing approve telegram <配对码>
openclaw-cn channels status
正常输出:
- Telegram default: enabled, configured, 运行中, mode:polling, token:config
cat > ~/.config/systemd/user/openclaw-gateway.service << 'SERVICE'
[Unit]
Description=OpenClaw Gateway
After=network.target
[Service]
Type=simple
Environment=ANTHROPIC_API_KEY=sk-xxx
Environment=ANTHROPIC_BASE_URL=https://your-proxy.com/v1
ExecStart=/usr/bin/env openclaw-cn gateway --port 18789
Restart=on-failure
RestartSec=5
[Install]
WantedBy=default.target
SERVICE
systemctl --user daemon-reload
systemctl --user enable openclaw-gateway.service
systemctl --user start openclaw-gateway.service
# 查看状态
systemctl --user status openclaw-gateway.service
# 重启
systemctl --user restart openclaw-gateway.service
# 查看日志
journalctl --user -u openclaw-gateway.service -f
auth-profiles.json 但 models status 显示 Missing authmodels.providers 配置自定义供应商(见问题7)Port 18789 is already in use# 停止现有服务
openclaw-cn gateway stop
# 或强制终止
pkill -f openclaw
Config validation failed: Unrecognized key{
"env": {
"CUSTOM_ANTHROPIC_KEY": "sk-ant-xxx..."
},
"agents": {
"defaults": {
"model": {
"primary": "custom-anthropic/claude-opus-4-6"
}
}
},
"models": {
"providers": {
"custom-anthropic": {
"baseUrl": "https://your-proxy.com/v1",
"apiKey": "${CUSTOM_ANTHROPIC_KEY}",
"api": "anthropic-messages",
"models": [
{"id": "claude-opus-4-6", "name": "Claude Opus 4.6"}
]
}
}
},
"channels": {
"telegram": {
"enabled": true,
"botToken": "123456:ABC..."
}
}
}
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T01:53:21.003Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Abca12a",
"href": "https://github.com/abca12a/openclaw-install-skill",
"sourceUrl": "https://github.com/abca12a/openclaw-install-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/abca12a-openclaw-install-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to openclaw-install and adjacent AI workflows.