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
Use when needing to process 10k+ small tasks in parallel using distributed computing cluster. For batch image processing, API calls, data transformation, or numerical computations. --- name: agent-idm-gridcore description: Use when needing to process 10k+ small tasks in parallel using distributed computing cluster. For batch image processing, API calls, data transformation, or numerical computations. --- IDM-GridCore 分布式计算 调用分布式计算集群加速"小计算、大批量"任务。 **源码与接口文档**: https://github.com/Wolido/idm-gridcore 何时使用 **适合:** - 1万+ 次重复计算,单次 < 1秒 - 数据可分片独立处理 - 批量图片处理、API 调用、数据清洗、数值计算 **不适合:** - 单次计算数小时的大型科学计算 - Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
agent-idm-gridcore 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
Use when needing to process 10k+ small tasks in parallel using distributed computing cluster. For batch image processing, API calls, data transformation, or numerical computations. --- name: agent-idm-gridcore description: Use when needing to process 10k+ small tasks in parallel using distributed computing cluster. For batch image processing, API calls, data transformation, or numerical computations. --- IDM-GridCore 分布式计算 调用分布式计算集群加速"小计算、大批量"任务。 **源码与接口文档**: https://github.com/Wolido/idm-gridcore 何时使用 **适合:** - 1万+ 次重复计算,单次 < 1秒 - 数据可分片独立处理 - 批量图片处理、API 调用、数据清洗、数值计算 **不适合:** - 单次计算数小时的大型科学计算 -
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Wolido
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. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/Wolido/agent-idm-gridcore.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
Wolido
Protocol compatibility
OpenClaw
Adoption signal
1 GitHub stars
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
yaml
模式选择: 从零启动: 没有集群,临时本地部署 连接已有: 使用公司/团队共享集群
bash
docker ps # 确认 Docker 可用 lsof -i :8080 # 检查端口占用 lsof -i :6379
bash
curl -s "$RELEASE_URL" | grep "browser_download_url"
bash
curl -L -o computehub "<download_url_computehub>"
bash
curl -L -o gridnode "<download_url_gridnode>"
bash
# 查看 release 文件 RELEASE_URL="https://api.github.com/repos/Wolido/idm-gridcore/releases/latest" curl -s "$RELEASE_URL" | grep "browser_download_url" # 根据实际文件名下载(示例) mkdir -p ~/.local/share/idm-gridcore/bin curl -L -o computehub "<download_url_computehub>" curl -L -o gridnode "<download_url_gridnode>" chmod +x computehub gridnode
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Use when needing to process 10k+ small tasks in parallel using distributed computing cluster. For batch image processing, API calls, data transformation, or numerical computations. --- name: agent-idm-gridcore description: Use when needing to process 10k+ small tasks in parallel using distributed computing cluster. For batch image processing, API calls, data transformation, or numerical computations. --- IDM-GridCore 分布式计算 调用分布式计算集群加速"小计算、大批量"任务。 **源码与接口文档**: https://github.com/Wolido/idm-gridcore 何时使用 **适合:** - 1万+ 次重复计算,单次 < 1秒 - 数据可分片独立处理 - 批量图片处理、API 调用、数据清洗、数值计算 **不适合:** - 单次计算数小时的大型科学计算 -
调用分布式计算集群加速"小计算、大批量"任务。
源码与接口文档: https://github.com/Wolido/idm-gridcore
适合:
不适合:
模式选择:
从零启动: 没有集群,临时本地部署
连接已有: 使用公司/团队共享集群
docker ps # 确认 Docker 可用
lsof -i :8080 # 检查端口占用
lsof -i :6379
# 查看 release 文件
RELEASE_URL="https://api.github.com/repos/Wolido/idm-gridcore/releases/latest"
curl -s "$RELEASE_URL" | grep "browser_download_url"
# 根据实际文件名下载(示例)
mkdir -p ~/.local/share/idm-gridcore/bin
curl -L -o computehub "<download_url_computehub>"
curl -L -o gridnode "<download_url_gridnode>"
chmod +x computehub gridnode
# 检测平台
if [[ "$OSTYPE" == "darwin"* ]]; then
CONFIG_DIR="$HOME/Library/Application Support/idm-gridcore"
else
CONFIG_DIR="$HOME/.config/idm-gridcore"
fi
mkdir -p "$CONFIG_DIR"
# 生成 token
TOKEN="skill-$(openssl rand -hex 16)"
# ComputeHub 配置
cat > "$CONFIG_DIR/computehub.toml" << EOF
bind = "0.0.0.0:8080"
token = "$TOKEN"
EOF
# GridNode 配置
cat > "$CONFIG_DIR/gridnode.toml" << EOF
server_url = "http://localhost:8080"
token = "$TOKEN"
EOF
# 启动 Redis
docker run -d --name redis -p 6379:6379 redis:7-alpine \
redis-server --requirepass changeme
# 启动 ComputeHub
nohup computehub -c "$CONFIG_DIR/computehub.toml" > /tmp/computehub.log 2>&1 &
curl http://localhost:8080/health # 验证
# 启动 GridNode
nohup gridnode -c "$CONFIG_DIR/gridnode.toml" > /tmp/gridnode.log 2>&1 &
curl -H "Authorization: Bearer $TOKEN" http://localhost:8080/api/nodes
# 保存配置
mkdir -p ~/.config/agents/skills/agent-idm-gridcore
cat > skill.toml << EOF
[cluster.production]
computehub_url = "http://host:8080"
redis_url = "redis://:pass@host:6379"
EOF
cat > credentials.toml << EOF
[cluster.production]
token = "your-token"
EOF
chmod 600 credentials.toml
#!/bin/bash
# ========== 配置 ==========
CONFIG_DIR="$HOME/.config/agents/skills/agent-idm-gridcore"
if [ -f "$CONFIG_DIR/state/local_cluster.json" ]; then
COMPUTEHUB_URL=$(jq -r '.computehub.url' "$CONFIG_DIR/state/local_cluster.json")
TOKEN=$(jq -r '.token' "$CONFIG_DIR/state/local_cluster.json")
REDIS_URL=$(jq -r '.redis.url' "$CONFIG_DIR/state/local_cluster.json")
elif [ -f "$CONFIG_DIR/skill.toml" ]; then
source "$CONFIG_DIR/skill.toml"
COMPUTEHUB_URL=$CLUSTER_PRODUCTION_COMPUTEHUB_URL
TOKEN=$(grep token "$CONFIG_DIR/credentials.toml" | cut -d'"' -f2)
REDIS_URL=$CLUSTER_PRODUCTION_REDIS_URL
else
echo "错误:未找到集群配置"
exit 1
fi
# ========== 1. 创建计算容器 ==========
WORKDIR=$(mktemp -d)
cd "$WORKDIR"
# 消费者代码
cat > consumer.py << 'EOF'
import redis, os, math
r_in = redis.from_url(os.getenv("INPUT_REDIS_URL"))
r_out = redis.from_url(os.getenv("OUTPUT_REDIS_URL"))
input_q = os.getenv("INPUT_QUEUE")
output_q = os.getenv("OUTPUT_QUEUE")
while True:
result = r_in.brpop(input_q, timeout=5)
if result is None:
if r_in.llen(input_q) == 0:
break
continue
_, data = result
n = float(data.decode() if isinstance(data, bytes) else data)
r_out.lpush(output_q, f"{n}:{math.sqrt(n)}")
EOF
# Dockerfile
cat > Dockerfile << 'EOF'
FROM python:3.11-slim
RUN pip install redis
COPY consumer.py /app/
CMD ["python", "/app/consumer.py"]
EOF
docker build -t idm-task:sqrt .
# ========== 2. 注册任务 ==========
curl -X POST "${COMPUTEHUB_URL}/api/tasks" \
-H "Authorization: Bearer ${TOKEN}" \
-H "Content-Type: application/json" \
-d "{
\"name\": \"sqrt-calc\",
\"image\": \"idm-task:sqrt\",
\"input_redis\": \"${REDIS_URL}\",
\"output_redis\": \"${REDIS_URL}\",
\"input_queue\": \"sqrt:input\",
\"output_queue\": \"sqrt:output\"
}"
# ========== 3. 推送数据 ==========
python3 << EOF
import redis
r = redis.from_url("$REDIS_URL")
r.delete("sqrt:input", "sqrt:output")
for i in range(1, 10001):
r.lpush("sqrt:input", str(i))
print(f"已推送 {r.llen('sqrt:input')} 个任务")
EOF
# ========== 4. 监控进度 ==========
python3 << EOF
import redis, time, sys
r = redis.from_url("$REDIS_URL")
total = r.llen("sqrt:input") + r.llen("sqrt:output")
while True:
pending = r.llen("sqrt:input")
done = r.llen("sqrt:output")
if total > 0:
print(f"\r进度: {done}/{total} ({done/total*100:.1f}%)", end='', flush=True)
if pending == 0:
print("\n完成!")
break
time.sleep(1)
EOF
# 查看结果
redis-cli -u "$REDIS_URL" lrange sqrt:output 0 9
rm -rf "$WORKDIR"
查看状态:
在线节点: curl -H "Authorization: Bearer ${TOKEN}" ${URL}/api/nodes
任务列表: curl -H "Authorization: Bearer ${TOKEN}" ${URL}/api/tasks
队列长度: redis-cli -u ${REDIS} llen queue:input
数据操作:
推送单个: redis-cli -u ${REDIS} lpush queue:data "task"
批量推送: echo -e "LPUSH q:d 1\nLPUSH q:d 2" | redis-cli --pipe
查看结果: redis-cli -u ${REDIS} lrange queue:output 0 9
任务管理:
完成切换: curl -X POST ${URL}/api/tasks/finish -H "Authorization: Bearer ${TOKEN}"
停止节点: curl -X POST ${URL}/api/nodes/${NODE_ID}/stop -H "Authorization: Bearer ${TOKEN}"
健康检查:
ComputeHub: curl ${URL}/health
Redis: redis-cli -u ${REDIS} ping
规则1: Redis 密码全局一致
export REDIS_PASSWORD="$(openssl rand -hex 16)"
# 启动 Redis、推送数据、注册任务必须使用同一密码
规则2: 信任完整 Redis URL
# 正确
myapp --redis-url "$INPUT_REDIS_URL"
# 错误(丢失参数)
REDIS_HOST=$(echo $INPUT_REDIS_URL | sed 's/.*@//;s/:.*//')
规则3: Dockerfile 使用 ENTRYPOINT
# 正确
ENTRYPOINT ["/app/entrypoint.sh"]
# 错误
CMD ["python", "app.py"]
规则4: 跨平台必须多阶段构建
FROM rustlang/rust:nightly AS builder
COPY . .
RUN cargo build --release
FROM debian:bookworm-slim
COPY --from=builder /app/target/release/myapp /usr/local/bin/myapp
容器启动时自动注入:
TASK_NAME - 任务名称INPUT_REDIS_URL / OUTPUT_REDIS_URL - Redis 连接INPUT_QUEUE / OUTPUT_QUEUE - 队列名NODE_ID / INSTANCE_ID - 节点信息故障排查表:
- 症状: Exec format error
原因: macOS 二进制复制到 Linux 容器
解决: 使用多阶段构建
- 症状: NOAUTH 错误
原因: Redis 密码不匹配
解决: 检查所有环节密码一致
- 症状: 容器反复退出
原因: 连接 Redis 失败
解决: 检查 URL 和密码
- 症状: 节点不在线
原因: GridNode 未启动或 token 错误
解决: 检查日志和配置
详细排查: 参见 references/troubleshooting.md
references/rules.mdreferences/docker-build.mdreferences/troubleshooting.mdMachine 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/wolido-agent-idm-gridcore/snapshot"
curl -s "https://xpersona.co/api/v1/agents/wolido-agent-idm-gridcore/contract"
curl -s "https://xpersona.co/api/v1/agents/wolido-agent-idm-gridcore/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/wolido-agent-idm-gridcore/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/wolido-agent-idm-gridcore/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/wolido-agent-idm-gridcore/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/wolido-agent-idm-gridcore/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/wolido-agent-idm-gridcore/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/wolido-agent-idm-gridcore/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-17T00:59:44.678Z"
}
},
"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": "Wolido",
"href": "https://github.com/Wolido/agent-idm-gridcore",
"sourceUrl": "https://github.com/Wolido/agent-idm-gridcore",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:14:07.126Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/wolido-agent-idm-gridcore/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/wolido-agent-idm-gridcore/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T01:14:07.126Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/Wolido/agent-idm-gridcore",
"sourceUrl": "https://github.com/Wolido/agent-idm-gridcore",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:14:07.126Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/wolido-agent-idm-gridcore/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/wolido-agent-idm-gridcore/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 agent-idm-gridcore and adjacent AI workflows.