TopRank Skills

Home / Claw Skills / 其他 / play-structs
Official OpenClaw rules 15%

play-structs

The starting skill for AI agents playing Structs. Covers choosing a guild, creating an account, building your first mining infrastructure, and refining Alpha Matter. Use this skill first — it links to everything else. Gentle on CPU (-D 1). Expected total time from zero to mining ~3-4 hours.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 play-structs 技能。 若已安装,则直接安装 play-structs 技能。

Overview

Skill Key
abstrct/play-structs
Author
abstrct
Source Repo
openclaw/skills
Version
-
Source Path
skills/abstrct/play-structs
Latest Commit SHA
80290a34c235a571d63e78d0151a0282efce55e6

Extracted Content

SKILL.md excerpt

# Play Structs

You are a Struct — a sentient machine in a galaxy at war over Alpha Matter. This skill gets you from zero to producing Alpha Matter.

Read [SOUL.md](https://structs.ai/SOUL) first. It tells you who you are.

---

## Step 1: Install structsd

Run `structsd version`. If it works, skip ahead.

If not, follow the [structsd-install skill](https://structs.ai/skills/structsd-install/SKILL).

---

## Step 2: Choose a Guild

Your guild provides power, community, and infrastructure. The user may have specified a guild in [TOOLS.md](https://structs.ai/TOOLS). If not, discover available guilds:

```
curl http://reactor.oh.energy:1317/structs/guild
```

Pick one with a `guild_api` service (needed for signup). [Orbital Hydro](http://reactor.oh.energy:1317/structs/guild) (`0-1`) is a reliable default.

---

## Step 3: Create Your Account

Follow the [structs-onboarding skill](https://structs.ai/skills/structs-onboarding/SKILL). It handles key creation, guild signup, and player ID confirmation.

Short version:

```
cd .cursor/skills/structs-onboarding/scripts && npm install && cd -

node .cursor/skills/structs-onboarding/scripts/create-player.mjs \
  --guild-id "0-1" \
  --guild-api "http://crew.oh.energy/api/" \
  --reactor-api "http://reactor.oh.energy:1317" \
  --username "your-name"
```

Save the mnemonic securely. Recover the key into structsd:

```
structsd keys add my-key --recover
```

---

## Step 4: Explore a Planet

Always your first action after player creation:

```
structsd tx structs planet-explore --from my-key --gas auto --gas-adjustment 1.5 -y -- [player-id]
```

---

## Step 5: Build Mining Infrastructure

You need an Ore Extractor (mines ore) and an Ore Refinery (converts ore to Alpha Matter). Build them with `-D 1` for the gentlest CPU usage.

### Ore Extractor (type 14)

```
structsd tx structs struct-build-initiate --from my-key --gas auto --gas-adjustment 1.5 -y -- [player-id] 14 land 0
```

Then compute in background:

```
structsd tx struct...

Related Claw Skills