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.
npx skills add kennyzir/7deer_skills --skill html5-game-radargit clone --depth 1 https://github.com/kennyzir/7deer_skillsWrote 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.
[](https://agentmods.dev/skills/kennyzir/7deer_skills/html5-game-radar)<a href="https://agentmods.dev/skills/kennyzir/7deer_skills/html5-game-radar"><img src="https://agentmods.dev/badge/skills/kennyzir/7deer_skills/html5-game-radar/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.
<a href="https://agentmods.dev/skills/kennyzir/7deer_skills/html5-game-radar"><img src="https://agentmods.dev/badge/skills/kennyzir/7deer_skills/html5-game-radar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium MCP Rug Pull · line 82 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 87 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00181 | $0.02432 |
| Opus 5 | $0.00090 | $0.01216 |
| Sonnet 5 | $0.00036 | $0.00486 |
| Haiku 4.5 | $0.00018 | $0.00243 |
Grade A, and why
html5-game-radar 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 3d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 242 lines — stays where its author put it; the contents beside it link to each section on GitHub.
HTML5 Game Radar — 游戏发现雷达
核心目标
发现又新又热的 HTML5 游戏,在 SEO 空白期抢先建站截流。
游戏爆发(玩家在找)
↓
Google 搜索量 ↑ 但内容页 ↓(SEO 空白)
↓
你抢先建站 → 截流搜索流量
工作流程
Step 1: itch.io 监测(最新 HTML5 游戏,?sort=date)
Step 2: Reddit r/webgames 新帖扫描
Step 3: Google 搜索量 + 竞争度验证
Step 4: X/Twitter 扩散信号(用游戏名搜索)
Step 5: 汇总评分 + 排序
Step 6: 推送 Feishu
Step 1: itch.io HTML5 新游戏抓取
目标 URL: https://itch.io/games/tag-html5?sort=date
⚠️ 重要: itch.io 的 votes 和 date 是懒加载 JS,无法从 DOM 提取。评分改用「标题关键词 + 类型」作为主要打分依据。
Browser 操作流程:
browser(action="navigate")→https://itch.io/games/tag-html5?sort=date- 滚动 3 次,每次
window.scrollBy(0, 800) browser evaluate提取游戏列表
提取字段:
document.querySelectorAll('.game_cell').forEach(cell => {
const title = cell.querySelector('.title')?.innerText || '';
const dev = cell.querySelector('.game_author a')?.innerText || '';
const genre = cell.querySelector('.game_genre')?.innerText || '';
const url = cell.querySelector('.title')?.href || '';
results.push({ title, dev, genre, url });
});
信号判断:
- 标题含「new」「free」「multiplayer」「io」「survival」= 热门类型信号
- 游戏类型为 Action/Adventure/Survival/Puzzle = 高价值类型
- ⚠️ 过滤 Jam 游戏:标题含「jam」「Ludum」「 GMTK」「Game Jam」= 低价值
Step 2: Reddit r/webgames 扫描
scripts/reddit_monitor.py 需要通过 --reddit-script 或专用环境变量 HTML5_REDDIT_SCRIPT 指向已有的 reddit.ts。未配置时停止,不会调用 npx;默认输出 JSON 到 stdout,只有显式 --output 才创建新文件且不会覆盖已有路径。
python3 scripts/reddit_monitor.py --reddit-script /path/to/reddit.ts
python3 scripts/reddit_monitor.py --reddit-script /path/to/reddit.ts --output reddit_output.json
使用 reddit-research skill 的 CLI:
npx tsx reddit.ts new webgames --limit 30
过滤 HTML5/浏览器游戏相关帖子:
npx tsx reddit.ts search "html5 OR browser game OR itch.io" --sub webgames --sort new --limit 20
信号判断:
- 单帖 upvotes > 50 = 强信号
- 单帖评论 > 20 = 讨论活跃
- 含游戏链接(非自荐)= 玩家主动分享
Step 3: Google 搜索量 + 竞争度验证
对 Top 5 游戏名执行:
用 browser 打开 Google 搜索:
https://www.google.com/search?q=[游戏名]+game+online+free
What ships with it
8 files 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.
- references/platform_signals.md 3.3 KB
- references/seo_arbitrage_logic.md 2.4 KB
- scripts/google_trends_check.py 4.3 KB runs code
- scripts/html5_monitor.sh 2.2 KB runs code
- scripts/itch_scraper.py 4.0 KB runs code
- scripts/reddit_monitor.py 7.1 KB runs code
- scripts/signal_scorer.py 9.8 KB runs code
- tests/test_reddit_monitor.py 4.6 KB runs code
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.
- 3d ago Changed · +7 lines b4721893f0ce
- 12d ago First seen · 235 lines · 181 tokens per session scan A 3ca2323943a0
html5-game-radar is a skill published in the GitHub repository kennyzir/7deer_skills (312 stars, last pushed 3d ago), licensed MIT. It adds 181 tokens to every session and 2,432 once invoked, about $0.0009 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.
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…
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…
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…
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…
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…
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…