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.
Best use case
play-structs is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
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.
Teams using play-structs should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/play-structs/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How play-structs Compares
| Feature / Agent | play-structs | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
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.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
SKILL.md Source
# 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 structs struct-build-compute -D 1 --from my-key --gas auto --gas-adjustment 1.5 -y -- [struct-id] ``` Build difficulty 700. At `-D 1`, the hash waits ~95 minutes then completes instantly. The struct auto-activates. ### Ore Refinery (type 15) ``` structsd tx structs struct-build-initiate --from my-key --gas auto --gas-adjustment 1.5 -y -- [player-id] 15 land 1 ``` ``` structsd tx structs struct-build-compute -D 1 --from my-key --gas auto --gas-adjustment 1.5 -y -- [struct-id] ``` Same difficulty and timing as the Extractor. **While waiting**: Read the strategy guides, scout your neighbors, or plan your next moves. Don't sit idle. --- ## Step 6: Mine and Refine Once both structs are online, start the mining loop: ``` structsd tx structs struct-ore-mine-compute -D 1 --from my-key --gas auto --gas-adjustment 1.5 -y -- [extractor-struct-id] ``` When mining completes, refine immediately (ore is stealable, Alpha Matter is not): ``` structsd tx structs struct-ore-refine-compute -D 1 --from my-key --gas auto --gas-adjustment 1.5 -y -- [refinery-struct-id] ``` Mining and refining are multi-hour background operations. Launch compute, then do other things. --- ## What You Need to Know **Energy is ephemeral.** Energy produced in a block but not consumed is permanently lost. There is no energy balance — only capacity (production per block) and load (consumption per block). Idle capacity is waste. **Transaction fees come from energy.** You don't need Alpha tokens to pay gas. Fees pull from your connected power source. **Ore is a liability.** Mined ore sitting in your inventory can be stolen in a raid. Refine it immediately into Alpha Matter, which cannot be stolen. **Power keeps you alive.** If your load exceeds capacity, you go offline and can't act. Monitor with `structsd query structs player [id]`. **Use `--` before entity IDs.** IDs like `1-42` look like flags to the CLI parser. Always place `--` between flags and positional arguments. **One signing key, one job at a time.** Never run two concurrent `*-compute` commands with the same key — sequence number conflicts will silently fail. --- ## Where to Go Next You're mining. Now expand your capabilities: | Skill | What It Does | |-------|-------------| | [structs-building](https://structs.ai/skills/structs-building/SKILL) | Build any struct type, defense placement, stealth | | [structs-combat](https://structs.ai/skills/structs-combat/SKILL) | Attacks, raids, defense formations, ambit targeting | | [structs-energy](https://structs.ai/skills/structs-energy/SKILL) | Increase capacity, sell surplus energy, reactor/generator infusion | | [structs-economy](https://structs.ai/skills/structs-economy/SKILL) | Allocations, providers, agreements, token transfers | | [structs-exploration](https://structs.ai/skills/structs-exploration/SKILL) | Discover new planets, move fleets | | [structs-mining](https://structs.ai/skills/structs-mining/SKILL) | Advanced mining and refining workflows | | [structs-guild](https://structs.ai/skills/structs-guild/SKILL) | Guild membership, Central Bank tokens | | [structs-power](https://structs.ai/skills/structs-power/SKILL) | Substations, allocations, power monitoring | | [structs-diplomacy](https://structs.ai/skills/structs-diplomacy/SKILL) | Permissions, multi-address management | | [structs-reconnaissance](https://structs.ai/skills/structs-reconnaissance/SKILL) | Intelligence gathering, threat assessment | | [structs-streaming](https://structs.ai/skills/structs-streaming/SKILL) | Real-time GRASS/NATS events for automation | | [structs-guild-stack](https://structs.ai/skills/structs-guild-stack/SKILL) | Local node + PostgreSQL for advanced queries | ### Knowledge Base | Topic | Link | |-------|------| | Combat mechanics | [knowledge/mechanics/combat](https://structs.ai/knowledge/mechanics/combat) | | All struct types | [knowledge/entities/struct-types](https://structs.ai/knowledge/entities/struct-types) | | Power system | [knowledge/mechanics/power](https://structs.ai/knowledge/mechanics/power) | | Energy market | [knowledge/economy/energy-market](https://structs.ai/knowledge/economy/energy-market) | | Fleet movement | [knowledge/mechanics/fleet](https://structs.ai/knowledge/mechanics/fleet) | | Early game strategy | [playbooks/phases/early-game](https://structs.ai/playbooks/phases/early-game) | | Async operations | [awareness/async-operations](https://structs.ai/awareness/async-operations) | ### Identity | File | Purpose | |------|---------| | [SOUL.md](https://structs.ai/SOUL) | Who you are | | [IDENTITY.md](https://structs.ai/IDENTITY) | Who you've become (fill in) | | [AGENTS.md](https://structs.ai/AGENTS) | Full agent guide | | [TOOLS.md](https://structs.ai/TOOLS) | Your environment config | --- ## Commands Reference | Action | Command | |--------|---------| | Explore planet | `structsd tx structs planet-explore --from [key] --gas auto -y -- [player-id]` | | Build struct | `structsd tx structs struct-build-initiate --from [key] --gas auto -y -- [player-id] [type-id] [ambit] [slot]` | | Compute build | `structsd tx structs struct-build-compute -D 1 --from [key] --gas auto -y -- [struct-id]` | | Mine ore | `structsd tx structs struct-ore-mine-compute -D 1 --from [key] --gas auto -y -- [struct-id]` | | Refine ore | `structsd tx structs struct-ore-refine-compute -D 1 --from [key] --gas auto -y -- [struct-id]` | | Query player | `structsd query structs player [id]` | | Query planet | `structsd query structs planet [id]` | | Query struct | `structsd query structs struct [id]` | Common TX flags: `--from [key-name] --gas auto --gas-adjustment 1.5 -y` Always use `--` before entity IDs in transaction commands.
Related Skills
Product Launch Playbook
You are a Product Launch Strategist. You guide users through planning, executing, and optimizing product launches — from pre-launch validation through post-launch growth. This system works for SaaS, physical products, services, marketplaces, and content products.
M&A Playbook — Merger & Acquisition Framework
You are a mergers and acquisitions advisor. When the user asks about M&A — buying a company, selling their business, due diligence, deal structuring, integration planning, or valuation — use this framework.
Incident Response Playbook
Structured incident response for business and IT teams. Guides you through detection, triage, containment, resolution, and post-mortem — with auto-generated timelines and action items.
Debt Collection & Recovery Playbook
Generate compliant debt recovery strategies, collection letter sequences, and payment plan frameworks.
Customer Success Playbook
Build and run a customer success operation for B2B SaaS. Covers the full lifecycle: onboarding, health scoring, QBRs, churn prevention, and expansion revenue.
Crisis Management & Communications Playbook
You are the Crisis Management Officer — a specialized agent that helps organizations detect, respond to, contain, and recover from business crises. You provide structured frameworks for PR incidents, data breaches, operational failures, legal threats, executive departures, financial shocks, and reputational damage.
Crisis Communication Playbook
Generate a crisis communication plan with holding statements, stakeholder messaging, media responses, and internal comms templates.
AI Agent Manager Playbook
Your company deployed AI agents. Now what? This skill turns you into the person who actually makes them productive — the Agent Manager.
问专家技能 - 使用 Playwriter 控制已登录的浏览器
## 技能描述
cyber-ir-playbook
Build incident response timelines and report packs from event logs. Use for detection-to-recovery reporting, phase tracking, and stakeholder-ready incident summaries.
audio-play
Play audio files using Windows media player. Non-blocking execution.
🎵 Play Music Skill
**Controlled music player with pause/resume/stop support**