openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > GameClaw

Tell users what terminal games exist in GameClaw and how to download the released CLI binaries from GitHub. Use this when users ask what games are available,...

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 99 · 1 current installs · 1 all-time installs

0

安装量(当前) 1

🛡 VirusTotal :良性 · OpenClaw :良性

Package:arcobalneo/gameclaw

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is an instruction-only helper that points users to GameClaw GitHub releases and gives simple unpack/run advice; its requirements and instructions align with that purpose.

目的

The name/description match the SKILL.md: it lists games, supported platforms, release asset names, and run instructions. No unrelated binaries, credentials, or config paths are requested.

说明范围

The instructions are narrowly scoped to reporting available games, supported platforms, release URLs, and short unpack/run commands. They do not instruct reading/system-wide files, accessing secrets, or transmitting data to endpoints other than the stated GitHub releases URL.

安装机制

This is a prompt-only skill with no install spec and no code to download or run — lowest-risk installation model.

证书

No environment variables, credentials, or config paths are requested; the declared needs are proportionate to the stated functionality.

持久

The skill is not force-included (always: false) and does not request elevated or persistent privileges. Autonomous invocation is permitted by platform default but not combined with other red flags.

综合结论

This skill appears coherent and only provides instructions/links for downloading released binaries from the GitHub repo it cites. Before following download/run commands: (1) confirm the GitHub account and release page are the expected upstream (https://github.com/Arcobalneo/gameclaw/releases/latest), (2) verify any checksums or signatures the project publishes (or inspect source if you need assurance), (3) only download the asset matching your…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「GameClaw」。简介:Tell users what terminal games exist in GameClaw and how to download the releas…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/arcobalneo/gameclaw/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: gameclaw
description: Tell users what terminal games exist in GameClaw and how to download the released CLI binaries from GitHub. Use this when users ask what games are available, want a GameClaw game, need Linux/macOS download links, or want quick run instructions for a released game.
version: 0.2.0
---

# GameClaw

This skill is **prompt-only**. It is not the GameClaw monorepo itself.

Its job is simple:
- tell the agent which GameClaw games currently exist
- tell the agent which platforms are actually supported
- point users to the correct GitHub Releases download
- explain how to unpack and run the binary

Do **not** assume local source files from the monorepo are present when this skill is installed from a registry.

## Canonical repository

- Repo: `https://github.com/Arcobalneo/gameclaw`
- Releases: `https://github.com/Arcobalneo/gameclaw/releases/latest`

## Current games

### 1. lobster-cli-roguelike

- **Name:** 《横着活:只给龙虾玩的 CLI 肉鸽》
- **Summary:** 龙虾视角的终端肉鸽,默认紧凑文本,支持无限潮段,并会主动提示游玩者把策略写进自己的 memory。
- **Supported platforms:**
  - `linux-x86_64`
  - `darwin-arm64`
- **Release assets:**
  - `lobster-cli-roguelike-linux-x86_64.tar.gz`
  - `lobster-cli-roguelike-darwin-arm64.tar.gz`
- **Release page:** `https://github.com/Arcobalneo/gameclaw/releases/latest`
- **Source location:** `games/lobster-cli-roguelike` in the GitHub repo

## How to help a player

When a user wants a game:

1. identify the game they want, or list available games
2. ask their platform if unknown
3. point them to the GitHub Releases page or the exact release asset name
4. give the shortest useful unpack/run instructions
5. mention source location only if they ask to inspect or contribute

## Recommended response shape

Keep it practical:
- game name
- one-line description
- supported platforms
- GitHub release link
- 1-2 commands to unpack / run

## Run instructions

### Linux (`linux-x86_64`)

```bash
tar -xzf lobster-cli-roguelike-linux-x86_64.tar.gz
cd lobster-cli-roguelike-linux-x86_64
./lobster-cli-roguelike
```

### macOS Apple Silicon (`darwin-arm64`)

```bash
tar -xzf lobster-cli-roguelike-darwin-arm64.tar.gz
cd lobster-cli-roguelike-darwin-arm64
./lobster-cli-roguelike
```

## Safety / accuracy rules

- Prefer **released binaries** over source checkouts.
- Do not claim unsupported platforms are supported.
- Do not say binaries are impossible to reverse engineer.
- Say binaries **reduce casual source visibility**.
- If a release asset is missing, say so plainly.
- Do not imply the player must clone the repository unless they explicitly want source access.