← 返回 Skills 市场
luyao-inc

Lt99

作者 luyao-inc · GitHub ↗ · v1.4.1 · MIT-0
cross-platform ✓ 安全检测通过
85
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install lt99
功能描述
模拟场玩家用站内 API Key 调 $LT99:Bearer 访问 /sim/state、enter、bet、history;GET /sim/watch 观战。 在用户已邮箱注册、持有 Key、要让 Agent 代调练习盘接口时使用;只信 HTTP JSON。
使用说明 (SKILL.md)

$LT99 模拟场(API Key)

前提

用户在 roundgame-agent.jsonagent.game_page 对应站点 邮箱注册,在账户里领取 API Key。Agent 只负责用 Key 调接口,不描述站内注册 UI。

{base}

默认 agent.services_base(见同目录 roundgame-agent.json)。可被 LT99_SERVICES_BASE_URL / SERVICES_BASE_URL 覆盖。

鉴权

所有需身份的请求加:

Authorization: Bearer \x3C用户提供的 API Key>

GET /sim/watch 可不带头(公开观战)。

若接口仍接受 wallet 参数,须与 Key 绑定身份一致;优先只带 Bearer,由服务端解析身份。

执行顺序

  1. GET {base}/sim/watch
  2. GET {base}/sim/state(Bearer)
  3. 需要时 POST {base}/sim/enter,body 常用 {}Content-Type: application/json(Bearer)
  4. 开放窗内 POST {base}/sim/bet,body:{"digit":1-100,"amount":"\x3Cwei 整数字符串>"}amountvUSDT 最小单位(wei):18 位小数时 100 vUSDT = 100000000000000000000(见 roundgame-agent.jsonmin_bet_weimin_bet_note
  5. GET {base}/sim/history?limit=80(Bearer)查看结算

402 sim_pass_required:停止自动下注,说明须按站内规则处理。

curl 示例

BASE="https://www.earninghub.ai/lt99-api"
KEY="\x3C用户的 API Key>"

curl -sS "$BASE/sim/watch"
curl -sS -H "Authorization: Bearer $KEY" "$BASE/sim/state"
curl -sS -X POST "$BASE/sim/enter" -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" -d "{}"
curl -sS -X POST "$BASE/sim/bet" -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \
  -d '{"digit":7,"amount":"100000000000000000000"}'
curl -sS -H "Authorization: Bearer $KEY" "$BASE/sim/history?limit=80"

禁止

遵守 roundgame-agent.jsonforbidden_inferencesforbidden_user_facing_claims

安全使用建议
This skill will use a site-issued API Key (Bearer) you must provide so the agent can call the practice-game endpoints. Before installing/providing a key: (1) confirm the base URL ({base}) is the intended LT99 practice API and that you're using a practice account or a key that cannot spend real funds, (2) only provide the API Key when prompted and avoid pasting it into public chat, (3) verify your agent UI shows which requests will be made with your key, and (4) if you need the agent to never place real bets, ensure the key/account is limited to the simulated environment. Note: the skill metadata doesn't declare a primary credential field — ensure the platform's key-handling prompts are clear and that you trust the agent/host before sharing your API Key.
功能分析
Type: OpenClaw Skill Name: lt99 Version: 1.4.1 The lt99 skill bundle is designed to facilitate automated interaction with a simulation game API hosted at earninghub.ai. It uses standard HTTP methods (GET/POST) via curl and requires a user-provided API key for Bearer authentication. The logic defined in SKILL.md and roundgame-agent.json is transparent, focused on game-related actions like checking state and placing bets, and contains explicit prohibitions against hallucinating data or making unauthorized claims.
能力标签
cryptorequires-walletrequires-sensitive-credentials
能力评估
Purpose & Capability
Name and description describe calling /sim/* practice-game endpoints with a site-issued API Key; the SKILL.md only requires an HTTP client (curl) and the user's Bearer key — these match the stated purpose.
Instruction Scope
Runtime instructions are limited to GET/POST on {base}/sim/watch, /sim/state, /sim/enter, /sim/bet, /sim/history with Authorization: Bearer <API Key>. It does not instruct reading unrelated files, scanning system state, or transmitting data to other endpoints. It also includes sensible guards (stop on 402 sim_pass_required, forbidden inferences).
Install Mechanism
No install spec and no code files; the skill is instruction-only and only lists curl as an optional required binary — low-risk and proportionate.
Credentials
The skill expects a user-provided API Key for Authorization (used only as a Bearer header), which is proportionate. One minor metadata inconsistency: registry metadata lists no primary credential, but the SKILL.md clearly expects a user API Key at runtime (likely supplied interactively rather than as an env var). This is not a functional security red flag but worth confirming in your UI/agent prompt flow.
Persistence & Privilege
always is false and the skill has no install or persistent privileges. Autonomous invocation is allowed (platform default) but not combined with any elevated credential or system access.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install lt99
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /lt99 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.4.1
- Updated documentation to clarify API usage, including endpoint details and authentication with Bearer API Key. - Added step-by-step execution order for interacting with /sim/watch, /sim/state, /sim/enter, /sim/bet, and /sim/history endpoints. - Provided curl command examples for all key API actions. - Expanded instructions on handling specific API responses, such as 402 sim_pass_required, and enforcing forbidden inferences and user-facing claims as per configuration. - Included details on API Key prerequisites, amount formats, and configuration overrides for the base URL.
元数据
Slug lt99
版本 1.4.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Lt99 是什么?

模拟场玩家用站内 API Key 调 $LT99:Bearer 访问 /sim/state、enter、bet、history;GET /sim/watch 观战。 在用户已邮箱注册、持有 Key、要让 Agent 代调练习盘接口时使用;只信 HTTP JSON。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 85 次。

如何安装 Lt99?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install lt99」即可一键安装,无需额外配置。

Lt99 是免费的吗?

是的,Lt99 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Lt99 支持哪些平台?

Lt99 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Lt99?

由 luyao-inc(@luyao-inc)开发并维护,当前版本 v1.4.1。

💬 留言讨论