PC Game Deals

v1.0.0

Track PC game discounts across Steam, Epic Games, GOG, Humble Store and 30+ stores via CheapShark API. Use when user asks: 'any deals on [game]', 'game disco...

0· 158·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for pazzilivo/pc-game-deals.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "PC Game Deals" (pazzilivo/pc-game-deals) from ClawHub.
Skill page: https://clawhub.ai/pazzilivo/pc-game-deals
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: curl, jq
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install pc-game-deals

ClawHub CLI

Package manager switcher

npx clawhub@latest install pc-game-deals
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (track PC game discounts via CheapShark) matches the instructions and required binaries. Asking for curl and jq is reasonable for the provided curl+jq examples; no unrelated credentials, binaries, or paths are requested.
Instruction Scope
SKILL.md only shows curl calls to CheapShark public endpoints and a link to the CheapShark website for alerts. There are no instructions to read local files, inspect environment variables, or send data to unexpected endpoints.
Install Mechanism
No install spec or third-party downloads — this is instruction-only. Requiring curl and jq is low-risk and appropriate for the documented usage.
Credentials
No environment variables, secrets, or config paths are requested. The skill does not ask for API keys or personal credentials.
Persistence & Privilege
always:false and no install/persistent components. The skill can be invoked by the agent (normal behavior) but does not request permanent presence or modify other skills/configuration.
Assessment
This skill is instruction-only and simply issues public HTTP calls to CheapShark using curl/jq. Before installing, ensure you are comfortable with the agent making outbound HTTP requests (the agent will contact CheapShark when invoked). No credentials are requested, and the skill does not access local files. If you don't want the agent to call external APIs automatically, keep autonomous invocation disabled or review agent invocation settings. Also note that price-alerts require you to submit an email on CheapShark's website (outside this skill) and that CheapShark may log queries — review their privacy policy if that matters to you.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🎮 Clawdis
Binscurl, jq
latestvk97bqhm0j1hy15z5nn7sbg2j718395v6
158downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Game Deals

Track game discounts across PC game stores.

Store IDs

IDStore
1Steam
7GOG
11Humble Store
25Epic Games Store
31Blizzard Shop

Full list: curl -s "https://www.cheapshark.com/api/1.0/stores" | jq '.[] | "\(.storeID): \(.storeName)"'


Commands

Search Game

curl -s "https://www.cheapshark.com/api/1.0/games?title=GAME_NAME&limit=5" | jq -r '.[] | "🎯 \(.external) - 最低价: $\(.cheapest)"'

Hot Deals

# Steam deals under $15
curl -s "https://www.cheapshark.com/api/1.0/deals?storeID=1&upperPrice=15&pageSize=10" | jq -r '.[] | "🔥 \(.title) - $\(.salePrice) (原价 $\(.normalPrice), -\(.savings | tonumber | floor)%%)"'

Filter Options

  • storeID=1 — Steam only
  • upperPrice=10 — Max price $10
  • sortBy=Savings&desc=1 — Sort by discount
  • onSale=1 — Only items on sale

Price History

# Get gameID from search first
curl -s "https://www.cheapshark.com/api/1.0/games?id=GAME_ID" | jq '{cheapest: .cheapestPriceEver.price, current: .deals | map({store: .storeID, price: .price})}'

Price Alerts

Web-based only: https://www.cheapshark.com → Search game → "Set Alert" → Enter email + target price

Comments

Loading comments...