# Videogames

> A skill to lookup video game information, prices, compatibility, and duration.

- Skill: `modbender/videogames` (Agent Skill, multi-file: 13 files)
- Install (CLI): `npx skillmds add modbender/videogames`
- Raw SKILL.md: https://api.skillmd.com/api/skills/modbender/videogames/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- License: MIT
- Author: modbender (https://skillmd.com/u/modbender)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/modbender/videogames

---


# Video Game Skill 🎮

This skill allows OpenClaw to search for games, view Steam details, check ProtonDB compatibility, estimate playtime with HowLongToBeat, and find the best prices using CheapShark.

## Tools

### `scripts/game_tool.py`

This Python script interacts with multiple game APIs (Steam, CheapShark, ProtonDB).

**Usage:**

1.  **Search for deals (CheapShark):**
    ```bash
    python3 scripts/game_tool.py deals "Game Name"
    ```

2.  **Check Compatibility (ProtonDB):**
    ```bash
    python3 scripts/game_tool.py compatibility <APPID>
    ```

3.  **Get Game Duration (HLTB):**
    ```bash
    python3 scripts/game_tool.py duration "Game Name"
    ```

4.  **View details & Specs (Steam):**
    ```bash
    python3 scripts/game_tool.py details <APPID>
    ```

## Notes
- The script requires Python 3.
- No external library installation required.

