roblox-game-data-scraper

roblox-game-data-scraper is a skill for Claude Code, Codex from kennyzir/7deer_skills. It costs 48 tokens per session (836 once invoked), scanned A, original, MIT.

A data-collection tool for Roblox games, the online game platform. It gathers game information from Trello boards, Discord channels, Reddit communities, and available in-game APIs, then structures the results for TypeScript code.

In plain words
What is it for?
Use it to gather Roblox game codes, item details, character abilities, drop rates, trading values, update notes, player counts, server status, leaderboards, bug reports, and community tips.
Why use it?
It reduces the manual work of collecting scattered game codes, items, characters, trading values, updates, and community discoveries from several sources.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to gather Roblox game codes, item details, character abilities, drop rates, trading values, update notes, player counts, server status, leaderboards, bug reports, and community tips.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kennyzir/7deer_skills/roblox-game-data-scraper
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add kennyzir/7deer_skills --skill roblox-game-data-scraper
Clone the repo
git clone --depth 1 https://github.com/kennyzir/7deer_skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for roblox-game-data-scraper

README.md
[![agentmods](https://agentmods.dev/badge/skills/kennyzir/7deer_skills/roblox-game-data-scraper/github.svg)](https://agentmods.dev/skills/kennyzir/7deer_skills/roblox-game-data-scraper)
Your own site
<a href="https://agentmods.dev/skills/kennyzir/7deer_skills/roblox-game-data-scraper"><img src="https://agentmods.dev/badge/skills/kennyzir/7deer_skills/roblox-game-data-scraper/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for roblox-game-data-scraper

Your own site · 80×15
<a href="https://agentmods.dev/skills/kennyzir/7deer_skills/roblox-game-data-scraper"><img src="https://agentmods.dev/badge/skills/kennyzir/7deer_skills/roblox-game-data-scraper.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 836 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00048 $0.00836
Opus 5 $0.00024 $0.00418
Sonnet 5 $0.00010 $0.00167
Haiku 4.5 $0.00005 $0.00084

Measured 2d ago against content hash 1296256dbd2c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

roblox-game-data-scraper scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (resources/trello_scraper.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

roblox-game-data-scraper/SKILL.md · 88 lines

What it actually says

Roblox Trello Game Data Scraper

这个 Skill 只提供公开 Trello 看板采集能力。使用 resources/trello_scraper.py 调用 Trello 公共 API,读取列表和卡片并提取物品与兑换码。

已实现范围

  • 通过看板 ID 获取公开 Trello 看板的列表与卡片。
  • 从名称包含 itemweaponaccessoryequipment 的列表提取物品。
  • 从名称包含 code 的列表提取兑换码,并根据列表名称判断 Active/Expired。
  • 从卡片描述和标签提取稀有度、掉落率、部分属性、获取方式与奖励。
  • 将提取结果序列化为 JSON。

解析采用启发式规则。字段没有在卡片中出现时会返回 None、空字典或 Unknown,不要把缺失值补写成事实。

未实现边界

Discord、Reddit、Roblox 游戏内 API、持续监控、类型文件生成和自动部署目前均未实现。它们只属于 roadmap;不要声称已采集这些来源,也不要为它们配置凭据或定时任务。

前置条件

  • Python 3.8+
  • requests
  • 一个无需登录即可访问的公开 Trello 看板 ID

安装依赖:

python3 -m pip install requests

使用流程

  1. 从公开看板 URL https://trello.com/b/<board-id>/... 取得 <board-id>
  2. 在 Python 中实例化 TrelloScraper 并调用 get_board_data(board_id)
  3. 分别调用 extract_items(board_data)extract_codes(board_data)
  4. 保留原始来源 URL 和抓取时间,并人工复核启发式解析结果。
import json
from resources.trello_scraper import TrelloScraper

scraper = TrelloScraper()
board_data = scraper.get_board_data("your-public-board-id")
output = {
    "items": [vars(item) for item in scraper.extract_items(board_data)],
    "codes": scraper.extract_codes(board_data),
}
print(json.dumps(output, ensure_ascii=False, indent=2))

直接执行脚本会运行文件底部的示例看板,并在当前目录写入 trello_data.json。通用工作流应导入 TrelloScraper,显式提供自己的看板 ID 和输出位置。

输出字段

物品记录包含:

  • name
  • category
  • rarity
  • drop_rate
  • stats
  • obtain_method
  • description

兑换码记录包含:

  • code
  • reward
  • status
  • notes

错误与数据边界

  • 私有、删除或不存在的看板会由 requests 的 HTTP 错误终止。
  • Trello 卡片格式变化可能降低提取完整度;应保留原始卡片内容以便复核。
  • 公开访问不需要 API Key。若未来使用私有看板,只能从调用方传入凭据,不能写入 Skill 文件或仓库。

Roadmap

Discord 和 Reddit 采集只有在实现真实客户端、凭据边界、限流处理和离线测试后才能加入“已支持”范围。在此之前,相关数据必须由用户另行提供并注明来源。

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago Changed · -425 lines · -1 tokens per session 1296256dbd2c
  2. 11d ago First seen · 513 lines · 49 tokens per session scan A 5881227a035f

Subscribe to this mod's changes

roblox-game-data-scraper is a skill published in the GitHub repository kennyzir/7deer_skills (312 stars, last pushed 3d ago), licensed MIT. It adds 48 tokens to every session and 836 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

design-lenses

Structured game-design critique: review a game through Schell's design lenses, Wright's systems-and-emergence lenses, and the MDA framework, producing severity-ranked findings with concrete fixes. Use when the user asks 'is my game fun?', 'review my game design', 'why is it boring?', 'critique this game', 'what's…

kyh/vibedgames · 118 tokens

teach-me

Teach the user end-to-end browser game development over multiple sessions — design, engine, art, audio, juice, multiplayer, shipping — by building real games together. Use when the user wants to LEARN to make games themselves: 'teach me game development', 'I want to learn to make games', 'teach me Phaser', 'how do…

kyh/vibedgames · 98 tokens

roblox-audio

Roblox audio — the modern modular audio graph (AudioPlayer, AudioEmitter, AudioListener, Wire, AudioTextToSpeech) and the legacy Sound/SoundGroup system. Covers 2D vs 3D audio, spatial attenuation, effects (Equalizer, Compressor, Reverb, Echo, Distortion), TTS/STT, acoustic simulation, asset permissions and the 2022…

nonlooped/roblox-suite · 111 tokens

roblox-animation

Modern Roblox animation and tweening — Animator/AnimationTrack over deprecated Humanoid:LoadAnimation, IKControl for procedural posing, marker-driven events, and TweenService for UI and 3D properties. Covers priorities, caching, the Animation Editor workflow, UI scale/AnchorPoint best practices, typewriter effects…

nonlooped/roblox-suite · 86 tokens

roblox-datastores

Safety-oriented Roblox DataStore guidance for reducing data loss, throttling, races, and quota exhaustion. Covers DataStore vs OrderedDataStore, UpdateAsync for atomic writes, versioning and metadata for recovery, budgets and rate limits, player profile and session-locking patterns, leaderboards, RTBF, and integration…

nonlooped/roblox-suite · 91 tokens

roblox-open-cloud

Roblox Open Cloud REST API for accessing data stores, assets, universes, places, users, groups, subscriptions, and Luau execution from outside the engine or via HttpService. Covers authentication (API keys, OAuth 2.0, avoiding legacy cookie auth), scopes and least-privilege, IP allowlists, key rotation and the 60-day…

nonlooped/roblox-suite · 128 tokens