# Send Steam Games CLI to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "steam",
    "name": "Steam Games CLI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mjrussell/steam",
    "canonicalUrl": "https://clawhub.ai/mjrussell/steam",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/steam",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=steam",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "steam",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T10:58:36.005Z",
      "expiresAt": "2026-05-16T10:58:36.005Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=steam",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=steam",
        "contentDisposition": "attachment; filename=\"steam-0.4.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "steam"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/steam"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/steam",
    "downloadUrl": "https://openagent3.xyz/downloads/steam",
    "agentUrl": "https://openagent3.xyz/skills/steam/agent",
    "manifestUrl": "https://openagent3.xyz/skills/steam/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/steam/agent.md"
  }
}
```
## Documentation

### Steam Games CLI

CLI for browsing and discovering games in your Steam library. Filter by playtime, reviews, Deck compatibility, genres, and tags.

### Installation

npm install -g steam-games-cli

### Setup

Get a Steam Web API key from https://steamcommunity.com/dev/apikey
Configure the CLI:

steam config set-key YOUR_API_KEY
steam config set-user YOUR_STEAM_ID

### Profile

steam whoami               # Profile info and library stats
steam whoami --json

### Library

steam library              # List all games
steam library --limit 10   # Limit results
steam library --json       # JSON output for scripting

### Tags & Genres (Instant)

steam tags                 # List all 440+ Steam tags
steam tags --json
steam genres               # List all genres
steam genres --json

### Playtime

steam library --unplayed                    # Never played
steam library --min-hours 10                # At least 10 hours
steam library --max-hours 5                 # Less than 5 hours
steam library --deck                        # Played on Steam Deck

### Reviews (1-9 scale)

steam library --reviews very-positive       # Exact category
steam library --min-reviews 7               # Score 7+ (Positive and above)
steam library --show-reviews                # Show review column

Categories: overwhelmingly-positive (9), very-positive (8), positive (7), mostly-positive (6), mixed (5), mostly-negative (4), negative (3), very-negative (2), overwhelmingly-negative (1)

### Steam Deck Compatibility

steam library --deck-compat verified        # Verified only
steam library --deck-compat playable        # Playable only
steam library --deck-compat ok              # Verified OR Playable
steam library --show-compat                 # Show Deck column

### Tags & Genres

steam library --tag "Roguelike"             # Filter by tag
steam library --genre "Strategy"            # Filter by genre
steam library --show-tags                   # Show tags column

### Sorting

steam library --sort name                   # Alphabetical (default)
steam library --sort playtime               # Most played first
steam library --sort deck                   # Most Deck playtime first
steam library --sort reviews                # Best reviewed first
steam library --sort compat                 # Best Deck compat first

### AI Agent Workflow

The CLI is optimized for AI agents with stream fusion and early termination.

### Step 1: Discover available tags/genres (instant)

steam tags --json
steam genres --json

### Step 2: Filter library with combined criteria

# Unplayed Deck Verified roguelikes with good reviews
steam library --unplayed --deck-compat verified --tag "Roguelike" --min-reviews 7 --limit 10 --json

# Well-reviewed strategy games under 5 hours
steam library --max-hours 5 --genre "Strategy" --min-reviews 8 --limit 5 --json

# Trading games playable on Deck
steam library --tag "Trading" --deck-compat ok --limit 10 --json

### Performance Notes

Local filters (playtime, unplayed) apply first - instant
Remote filters (reviews, deck compat, tags) fetch in parallel per game
Early termination: stops when limit is reached
Use local filters first to minimize API calls

### Usage Examples

User: "What should I play on my Steam Deck?"

steam library --deck-compat verified --min-reviews 7 --sort playtime --limit 10

User: "What roguelikes do I have?"

steam library --tag "Roguelike" --show-tags --limit 20

User: "What unplayed games are highly rated?"

steam library --unplayed --min-reviews 8 --sort reviews --limit 10 --show-reviews

User: "How many games do I have?"

steam whoami

User: "What strategy games work on Deck?"

steam library --genre "Strategy" --deck-compat ok --show-compat --limit 15

User: "What tags are available?"

steam tags --json

### Output Formats

Default: Colored table
--plain: Plain text list
--json: JSON for scripting/AI agents
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mjrussell
- Version: 0.4.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-09T10:58:36.005Z
- Expires at: 2026-05-16T10:58:36.005Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/steam)
- [Send to Agent page](https://openagent3.xyz/skills/steam/agent)
- [JSON manifest](https://openagent3.xyz/skills/steam/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/steam/agent.md)
- [Download page](https://openagent3.xyz/downloads/steam)