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
Luban游戏配置表编辑器。当用户上传Excel文件并请求"修改配置表"、"编辑Luban表格"、"更新游戏配置"、"查看配置数据"时触发。支持符合Luban格式(含##var和##type行)的Excel表格的查询、更新、插入和删除操作。 --- name: luban-config-editor description: Luban游戏配置表编辑器。当用户上传Excel文件并请求"修改配置表"、"编辑Luban表格"、"更新游戏配置"、"查看配置数据"时触发。支持符合Luban格式(含##var和##type行)的Excel表格的查询、更新、插入和删除操作。 --- Luban 配置表编辑器 (v2.1) 采用 **"Query (精读) + Patch (微修)"** 模式处理 Luban 格式 Excel 配置表。 ⚠️ 强制约束 **严禁直接使用 pandas/openpyxl 操作 Excel 文件。** 必须通过脚本完成所有操作: - scripts/query.py — 查询(摘要/条件/分页/列裁剪) - scripts/patch.py — 修改(update/insert/delete + Diff预览) 核心原则 1. **最小化读取**:严 Capability contract not published. No trust telemetry is available yet. 4 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
luban-config-editor 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
Luban游戏配置表编辑器。当用户上传Excel文件并请求"修改配置表"、"编辑Luban表格"、"更新游戏配置"、"查看配置数据"时触发。支持符合Luban格式(含##var和##type行)的Excel表格的查询、更新、插入和删除操作。 --- name: luban-config-editor description: Luban游戏配置表编辑器。当用户上传Excel文件并请求"修改配置表"、"编辑Luban表格"、"更新游戏配置"、"查看配置数据"时触发。支持符合Luban格式(含##var和##type行)的Excel表格的查询、更新、插入和删除操作。 --- Luban 配置表编辑器 (v2.1) 采用 **"Query (精读) + Patch (微修)"** 模式处理 Luban 格式 Excel 配置表。 ⚠️ 强制约束 **严禁直接使用 pandas/openpyxl 操作 Excel 文件。** 必须通过脚本完成所有操作: - scripts/query.py — 查询(摘要/条件/分页/列裁剪) - scripts/patch.py — 修改(update/insert/delete + Diff预览) 核心原则 1. **最小化读取**:严
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 4 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Ashramc
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. 4 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/AshramC/Luban-Config-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
Ashramc
Protocol compatibility
OpenClaw
Adoption signal
4 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
bash
pip install pandas openpyxl --break-system-packages
bash
python scripts/query.py --excel_path "data.xlsx" --summary
json
{
"Items": {
"rows": 2000,
"pk": "id",
"fields": [
{"name": "id", "type": "int"},
{"name": "rewards", "type": "map,int,int"}
]
}
}bash
python scripts/query.py --excel_path "data.xlsx" --sheet Items --where "id=1001"
bash
python scripts/query.py --excel_path "data.xlsx" --sheet Items --columns "id,name" --limit 100 --offset 0
python
import json
patch = {
"Items": {
"update": [
{"id": 102, "active": False},
{"id": 103, "rewards": {1001: 5, 1002: 10}} # Map类型
],
"insert": [
{"id": 201, "name": "新道具", "tags": ["vip", "test"]} # Array类型
],
"delete": [103, 104]
}
}
with open('patch.json', 'w', encoding='utf-8') as f:
json.dump(patch, f, ensure_ascii=False, indent=2)Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Luban游戏配置表编辑器。当用户上传Excel文件并请求"修改配置表"、"编辑Luban表格"、"更新游戏配置"、"查看配置数据"时触发。支持符合Luban格式(含##var和##type行)的Excel表格的查询、更新、插入和删除操作。 --- name: luban-config-editor description: Luban游戏配置表编辑器。当用户上传Excel文件并请求"修改配置表"、"编辑Luban表格"、"更新游戏配置"、"查看配置数据"时触发。支持符合Luban格式(含##var和##type行)的Excel表格的查询、更新、插入和删除操作。 --- Luban 配置表编辑器 (v2.1) 采用 **"Query (精读) + Patch (微修)"** 模式处理 Luban 格式 Excel 配置表。 ⚠️ 强制约束 **严禁直接使用 pandas/openpyxl 操作 Excel 文件。** 必须通过脚本完成所有操作: - scripts/query.py — 查询(摘要/条件/分页/列裁剪) - scripts/patch.py — 修改(update/insert/delete + Diff预览) 核心原则 1. **最小化读取**:严
采用 "Query (精读) + Patch (微修)" 模式处理 Luban 格式 Excel 配置表。
严禁直接使用 pandas/openpyxl 操作 Excel 文件。
必须通过脚本完成所有操作:
scripts/query.py — 查询(摘要/条件/分页/列裁剪)scripts/patch.py — 修改(update/insert/delete + Diff预览)--columns 裁剪列,用 --limit/--offset 分页age > 10)由 LLM 在读取数据后内存处理--dry_run 查看 Diffpip install pandas openpyxl --break-system-packages
| 类型定义 | 说明 | Excel示例 | Python映射 |
|----------|------|-----------|------------|
| int, int32, long | 整数 | 100 | int |
| byte, short | 小整数 | 255 | int |
| datetime | 时间戳 | 1704067200 | int |
| float, double | 浮点数 | 3.14 | float |
| bool | 布尔值 | true / 1 / yes / on | bool |
| string, text | 文本字符串 | hello | str |
Bool兼容性:读取时兼容
true/false,1/0,yes/no,t/f,on/off(不区分大小写)
| 类型定义 | Excel格式 | Python映射 |
|----------|-----------|------------|
| array,int | 1,2,3 | [1, 2, 3] |
| list,string | a,b,c | ["a", "b", "c"] |
| set,int | 1,2,3 | [1, 2, 3] |
| (array#sep=\|),int | 1\|2\|3 | [1, 2, 3] |
| map,int,string | 1:a,2:b | {1: "a", 2: "b"} |
| (map#sep=\|),int,int | 1:10\|2:20 | {1: 10, 2: 20} |
Map KV分隔符:读取时兼容
_、:、=,写入时统一使用:
获取表名、主键、列名列表:
python scripts/query.py --excel_path "data.xlsx" --summary
输出示例:
{
"Items": {
"rows": 2000,
"pk": "id",
"fields": [
{"name": "id", "type": "int"},
{"name": "rewards", "type": "map,int,int"}
]
}
}
场景A:已知主键
python scripts/query.py --excel_path "data.xlsx" --sheet Items --where "id=1001"
场景B:批量扫描(必须裁剪+分页)
python scripts/query.py --excel_path "data.xlsx" --sheet Items --columns "id,name" --limit 100 --offset 0
import json
patch = {
"Items": {
"update": [
{"id": 102, "active": False},
{"id": 103, "rewards": {1001: 5, 1002: 10}} # Map类型
],
"insert": [
{"id": 201, "name": "新道具", "tags": ["vip", "test"]} # Array类型
],
"delete": [103, 104]
}
}
with open('patch.json', 'w', encoding='utf-8') as f:
json.dump(patch, f, ensure_ascii=False, indent=2)
python scripts/patch.py --excel_path "data.xlsx" --patch_path patch.json --dry_run
输出 Diff:
{
"Items": {
"updated": 2,
"diff": [
"UPDATE pk=102: active: True -> False",
"UPDATE pk=103: rewards: 1001:3,1002:5 -> 1001:5,1002:10"
]
}
}
必须检查 Diff:是否修改了错误的行?值的变化是否合理?
python scripts/patch.py --excel_path "data.xlsx" --patch_path patch.json
| 参数 | 说明 | 示例 |
|------|------|------|
| --summary | 获取所有Sheet结构 | --summary |
| --sheet | 指定Sheet名 | --sheet Items |
| --where | 主键条件 | --where "id=1001" |
| --columns | 只返回指定列 | --columns "id,name" |
| --limit | 最大返回行数 | --limit 100 |
| --offset | 跳过前N行 | --offset 100 |
{
"SheetName": {
"update": [{"pk": value, "field1": newValue}],
"insert": [{"pk": value, "field1": value, ...}],
"delete": [pk1, pk2, ...]
}
}
| 操作 | 说明 | |------|------| | update | 必须含主键,只写变更字段,智能跳过无变化字段 | | insert | 必须含主键和必要字段 | | delete | 主键列表,软删除(标记#DELETED#) |
禁止手写JSON字符串,必须用 dict + json.dump
# ❌ 严禁
json_str = '{"name": "他说"你好""}'
# ✅ 正确
data = {"name": '他说"你好"'}
json.dump(data, f, ensure_ascii=False)
| 场景 | ❌ 错误做法 | ✅ 正确做法 |
|------|------------|------------|
| 全表搜索 | 一次性query全表 | 分批 --limit 100 --offset N |
| 修改某列 | 读取整行 select * | 只读主键+目标列 --columns "id,gold" |
| 验证结果 | 修改后query全表 | 查看 --dry_run 的 diff 字段 |
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/ashramc-luban-config-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/ashramc-luban-config-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/ashramc-luban-config-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 6d 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/ashramc-luban-config-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/ashramc-luban-config-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/ashramc-luban-config-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/ashramc-luban-config-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/ashramc-luban-config-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/ashramc-luban-config-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-17T02:15:19.651Z"
}
},
"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": "Ashramc",
"href": "https://github.com/AshramC/Luban-Config-Skill",
"sourceUrl": "https://github.com/AshramC/Luban-Config-Skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T03:13:52.962Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/ashramc-luban-config-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/ashramc-luban-config-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T03:13:52.962Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "4 GitHub stars",
"href": "https://github.com/AshramC/Luban-Config-Skill",
"sourceUrl": "https://github.com/AshramC/Luban-Config-Skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T03:13:52.962Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/ashramc-luban-config-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/ashramc-luban-config-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 luban-config-editor and adjacent AI workflows.