首页龙虾技能列表 › DMM Ranking Lite — 技能工具

DMM Ranking Lite — 技能工具

v0.1.0

Fetch DMM/FANZA public rankings (daily/weekly/monthly) without API keys and output top 10 in numbered text format with Japanese title, Chinese translation, a...

0· 278·0 当前·0 累计
下载技能包
License
MIT-0
最后更新
2026/3/2
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
Instructions, requirements, and behavior are coherent with a scraping-only skill that fetches DMM/FANZA public rankings and produce a Top‑N text list; it does not request extra credentials, installs, or unrelated access.
评估建议
This skill appears to do only on-page scraping of public DMM/FANZA ranking pages and outputs TopN entries; it does not request credentials or install code. Before installing, consider: (1) legal and Terms-of-Service implications of scraping DMM/FANZA in your jurisdiction; (2) whether your agent is permitted to open adult-content pages and perform clicks (age confirmation); (3) respectful scraping practices — add rate limiting and avoid excessive requests; (4) translation quality — the skill asks...
详细分析 ▾
用途与能力
The name/description (fetch public DMM/FANZA rankings) match the SKILL.md: it opens public ranking pages, handles age confirmation, runs an in-page extraction script, and outputs TopN. No unrelated environment variables, binaries, or installs are requested.
指令范围
SKILL.md gives concrete, bounded instructions: open specific ranking URL, click age confirmation if present, evaluate a provided JS snippet to extract fields, slice to TopN, and close the tab. It does not instruct reading local files, accessing other services, or exfiltrating data to external endpoints.
安装机制
No install spec or code files are present; this is instruction-only, so nothing is downloaded or written to disk by the skill itself.
凭证需求
No environment variables, credentials, or config paths are required. The skill works against public pages and explicitly states it needs no API keys.
持久化与权限
The skill is not always-enabled and requests no persistent system privileges. It uses normal browser actions during invocation and does not modify other skills or system configuration.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv0.1.02026/3/2

Initial release

● 无害

安装命令 点击复制

官方npx clawhub@latest install dmm-ranking-lite
镜像加速npx clawhub@latest install dmm-ranking-lite --registry https://cn.clawhub-mirror.com

技能文档

抓取 DMM/FANZA 公共排行榜并输出 Top10,默认中文说明 + 日文原片名。

When To Use

  • 用户要 DMM/FANZA 日榜周榜月榜
  • 用户明确要 Top10(或可改为 TopN)
  • 用户要求无 API Key 的公开页面抓取

Inputs

  • term: daily | weekly | monthly
  • count: 默认 10
  • output_lang: zh-CN(保留日文原片名)

Output Format

必须使用编号块,不要表格:

1.
  • 片名(日文):...
  • 中文:...
  • 封面:...

2.

  • 片名(日文):...
  • 中文:...
  • 封面:...

Workflow

  • 打开榜单页面:
- https://video.dmm.co.jp/av/ranking/?term=
  • 如果出现年龄确认,点击 はい
  • 使用 browser(action="act", request.kind="evaluate") 执行提取脚本
  • 按 rank 升序取前 count
  • 输出为编号列表,字段固定为:
- 片名(日文) - 中文 - 封面
  • 结束后关闭标签页:browser(action="close")

Extraction Snippet

() => {
  const items = Array.from(document.querySelectorAll('main ul > li'));
  const rows = [];

for (const li of items) { const rankMatch = (li.textContent || '').match(/(\d+)位/); if (!rankMatch) continue;

const rank = Number(rankMatch[1]); const link = li.querySelector('h2 a[href="/av/content/?id="]') || li.querySelector('a[href="/av/content/?id="]'); if (!link) continue;

const href = link.getAttribute('href') || ''; const idMatch = href.match(/[?&]id=([^&]+)/); const title = (link.textContent || '').replace(/\s+/g, ' ').trim();

const cover = Array.from(li.querySelectorAll('img')) .map((img) => img.getAttribute('src') || img.getAttribute('data-src') || img.currentSrc || '') .find((src) => /pics_dig|digital\/video|awsimgsrc\.dmm\.co\.jp/.test(src));

rows.push({ rank, id: idMatch ? idMatch[1] : null, title, content_url: new URL(href, location.origin).href, cover_url: cover ? new URL(cover, location.origin).href : null, }); }

rows.sort((a, b) => a.rank - b.rank); return rows; }

Translation Rules

  • 片名(日文) 必须保留原文,不可改写
  • 中文 采用简洁自然中文,避免机翻腔
  • 标题过长时可适度压缩,不改变核心含义
  • 明显敏感措辞可中性化,但不要错译

Error Handling

  • 页面结构变更:先 snapshot 检查节点,再调整 selector
  • 未拿到 cover_url:输出 封面:无
  • 抓取不足 10 条:按实际条数输出,并说明“本次仅抓取到 N 条”
  • 无法通过年龄确认:重试一次后返回失败原因

Notes

  • 仅抓取公开页面,不需要 DMM API 凭据
  • 默认 Top10,如需 TopN 请在结果截取阶段改为 rows.slice(0, N)
  • 若页面改版频繁,优先保持输出格式稳定,必要时更新提取脚本
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务