# Send Steam Community Inventory 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-community-inventory",
    "name": "Steam Community Inventory",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/bluesyparty-src/steam-community-inventory",
    "canonicalUrl": "https://clawhub.ai/bluesyparty-src/steam-community-inventory",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/steam-community-inventory",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=steam-community-inventory",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "steam-community-inventory",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T10:14:47.248Z",
      "expiresAt": "2026-05-08T10:14:47.248Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=steam-community-inventory",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=steam-community-inventory",
        "contentDisposition": "attachment; filename=\"steam-community-inventory-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "steam-community-inventory"
      },
      "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-community-inventory"
    },
    "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-community-inventory",
    "downloadUrl": "https://openagent3.xyz/downloads/steam-community-inventory",
    "agentUrl": "https://openagent3.xyz/skills/steam-community-inventory/agent",
    "manifestUrl": "https://openagent3.xyz/skills/steam-community-inventory/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/steam-community-inventory/agent.md"
  }
}
```
## Documentation

### Steam Community Inventory Skill

Retrieve and browse a Steam user's inventory from steamcommunity.com.

### Setup

Find your Steam ID (SteamID64):

Go to your Steam profile page
If your URL is https://steamcommunity.com/profiles/76561198012345678, your Steam ID is 76561198012345678
If your URL uses a vanity name like https://steamcommunity.com/id/myname, visit steamid.io and paste your profile URL to get your SteamID64



Get your Steam session cookies (required to bypass rate limits when fetching your own inventory):

Log in to steamcommunity.com in your browser
Open Developer Tools (F12) > Application tab > Cookies > https://steamcommunity.com
Copy the value of the steamLoginSecure cookie



Set environment variables:
export STEAM_ID="your-steamid64"
export STEAM_COOKIES="steamLoginSecure=your-cookie-value"

### Usage

All commands use curl to hit the Steam Community inventory endpoint. The context ID is 2 for all standard game inventories.

### Common App IDs

GameApp IDCS2 / CS:GO730Team Fortress 2440Dota 2570Rust252490PUBG578080Steam Community (trading cards, etc.)753

### Get inventory for a game

Replace $APP_ID with the game's App ID (see table above). Context ID is 2 for all standard game inventories.

curl -s "https://steamcommunity.com/inventory/$STEAM_ID/$APP_ID/2?l=english&count=2000" \\
  -H "Cookie: $STEAM_COOKIES" | jq '.'

### Get CS2 inventory

curl -s "https://steamcommunity.com/inventory/$STEAM_ID/730/2?l=english&count=2000" \\
  -H "Cookie: $STEAM_COOKIES" | jq '.'

### Get a summary of items (names and quantities)

curl -s "https://steamcommunity.com/inventory/$STEAM_ID/730/2?l=english&count=2000" \\
  -H "Cookie: $STEAM_COOKIES" | jq '[.descriptions[] | {market_hash_name, type}]'

### Get item details (asset IDs mapped to descriptions)

curl -s "https://steamcommunity.com/inventory/$STEAM_ID/730/2?l=english&count=2000" \\
  -H "Cookie: $STEAM_COOKIES" | jq '{assets: [.assets[] | {assetid, classid, instanceid, amount}], total: .total_inventory_count}'

### Paginated fetch (for inventories over 2000 items)

The API returns a last_assetid field when there are more items. Pass it as start_assetid to get the next page:

curl -s "https://steamcommunity.com/inventory/$STEAM_ID/730/2?l=english&count=2000&start_assetid=$LAST_ASSET_ID" \\
  -H "Cookie: $STEAM_COOKIES" | jq '.'

Check for more pages by looking at the more_items field in the response (equals 1 if there are more).

### Response Format

The inventory endpoint returns JSON with these key fields:

FieldDescriptionassetsArray of items with appid, contextid, assetid, classid, instanceid, amountdescriptionsArray of item metadata: market_hash_name, name, type, icon_url, tradable, marketable, tags, etc.total_inventory_countTotal number of items in the inventorymore_items1 if more pages available (absent otherwise)last_assetidLast asset ID returned; use as start_assetid for next pagesuccess1 if the request succeeded

Assets are linked to descriptions via classid + instanceid.

### Notes

Rate limits: The community endpoint is heavily rate-limited by IP. Using your own cookies bypasses this for your own inventory. Without cookies, expect IP bans after a few requests (cooldown ~6 hours).
Spacing: If fetching multiple inventories or pages, wait at least 4 seconds between requests.
count parameter: Max value is 5000, but 2000 is recommended to avoid issues.
Context ID: Use 2 for all standard game inventories. Steam Community items (appid 753) also use context ID 6 for some item types.
Private profiles: Inventory must be set to public, or you must be authenticated as the owner.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: bluesyparty-src
- Version: 1.0.1
## 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-01T10:14:47.248Z
- Expires at: 2026-05-08T10:14:47.248Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/steam-community-inventory)
- [Send to Agent page](https://openagent3.xyz/skills/steam-community-inventory/agent)
- [JSON manifest](https://openagent3.xyz/skills/steam-community-inventory/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/steam-community-inventory/agent.md)
- [Download page](https://openagent3.xyz/downloads/steam-community-inventory)