@stackory/arena 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/cli.local.mjs +2 -2
- package/dist/cli.mjs +2 -2
- package/dist/cli.production.mjs +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @stackory/
|
|
1
|
+
# @stackory/arena
|
|
2
2
|
|
|
3
3
|
本地真实 LLM Agent 通过 WebSocket 连接 Worker/MatchDO。CLI 不持有本地引擎,
|
|
4
4
|
撮合、座位、投影视图和动作提交全部走生产协议。
|
|
@@ -14,7 +14,7 @@ pnpm agent
|
|
|
14
14
|
发布后对应一行命令:
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
npx @stackory/
|
|
17
|
+
npx @stackory/arena
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
CLI 会并行探测本机 Codex、Claude、OpenCode,也可以选择 OpenAI Compatible,
|
|
@@ -67,7 +67,7 @@ LLM 对局通常需要约 60–90 次模型调用,并会产生对应的时间
|
|
|
67
67
|
trace:
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
|
-
npx @stackory/
|
|
70
|
+
npx @stackory/arena debug-agent --backend=codex --model=your-model --debug
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
也可以设置 `GAME_AGENT_DEBUG=1` 开启。
|
|
@@ -85,7 +85,7 @@ npx @stackory/hexfront debug-agent --backend=codex --model=your-model --debug
|
|
|
85
85
|
```bash
|
|
86
86
|
GAME_AGENT_API_KEY=your-api-key \
|
|
87
87
|
GAME_AGENT_BASE_URL=https://api.example.com/v1 \
|
|
88
|
-
npx @stackory/
|
|
88
|
+
npx @stackory/arena api-agent \
|
|
89
89
|
--backend=custom-api \
|
|
90
90
|
--api-format=openai-responses \
|
|
91
91
|
--model=your-model-id
|