ptcg-meta-bench
星标0
分支0
更新时间2026年7月2日 22:43
Use this repo to evaluate Pokemon TCG AI Battle agents locally through the ptcg CLI or MCP server.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Use this repo to evaluate Pokemon TCG AI Battle agents locally through the ptcg CLI or MCP server.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
| name | ptcg-meta-bench |
| description | Use this repo to evaluate Pokemon TCG AI Battle agents locally through the ptcg CLI or MCP server. |
Use CLI plus --json for terminal agents. Use MCP only when the host client has
MCP support.
ptcg doctor --json
ptcg decks --json
ptcg decks --json returns:
{
"status": "ok",
"deck_count": 10,
"weight_sum": 81.8,
"decks": [
{
"id": "01_archaludon_duraludon",
"name": "Archaludon ex / Duraludon",
"archetype": "archaludon",
"weight": 15.5,
"path": "decks/meta/01_archaludon_duraludon.csv"
}
]
}
ptcg demo --json and ptcg bench --json return:
{
"status": "ok",
"version": "1.1.0",
"agent": "examples/agents/simple_baseline",
"games_per_deck": 2,
"deck_count": 10,
"weight_sum": 81.8,
"meta_weighted_win_rate": 1.0,
"plain_english_summary": "Your agent beats the meta 100% weighted.",
"run_dir": "/absolute/path/to/runs/<timestamp>-ptcg_demo",
"rows": [
{
"id": "01_archaludon_duraludon",
"weight": 15.5,
"games": 2,
"completed": 2,
"wins": 2,
"losses": 0,
"draws": 0,
"errors": 0,
"engine_errors": 0,
"max_decisions": 0,
"win_rate": 1.0
}
]
}
ptcg mcp
Tool names:
list_decksrun_benchmarkplay_gameget_last_resultsClaude Desktop config:
{
"mcpServers": {
"ptcg-meta-bench": {
"command": "ptcg",
"args": ["mcp"]
}
}
}