← Browse

@dvcrn/anime-calendar

B

国内动漫每周更新日历。用于查询动漫更新时间、本周新番列表、追番日历。当用户询问动漫更新时间表、本周更新、追番日历、新番列表时触发此技能。

skillclaude

Install

agr install @dvcrn/anime-calendar --target claude

Writes 1 file into .claude/skills/, pinned to git-053bd98f.

  • .claude/skills/anime-calendar/SKILL.md

Document


name: anime-calendar description: "国内动漫每周更新日历。用于查询动漫更新时间、本周新番列表、追番日历。当用户询问动漫更新时间表、本周更新、追番日历、新番列表时触发此技能。"

动漫每周更新日历

数据来源

使用 extract_content_from_websitesbatch_web_search 工具从以下网站获取动漫更新信息:

  • 哔哩哔哩 (bilibili.com) - 中国最大的动漫观看平台
  • Bangumi (bgm.tv) - 动漫评分和追番网站
  • 动漫之家 (dmzj.com) - 动漫资讯网站

功能范围

  1. 本周更新列表:获取本周更新的动漫
  2. 每日更新:按日期查询当天更新的动漫
  3. 追番提醒:特定动漫的更新时间
  4. 新番资讯:最新动漫资讯和播出时间

使用方式

查询本周更新

使用 batch_web_search 搜索动漫更新时间表:

# 搜索本周动漫更新
batch_web_search([{
    "query": "本周动漫更新时间表 2026"
}])

查询特定日期更新

# 搜索周一/周二/周三等更新的动漫
batch_web_search([{
    "query": "周一更新动漫 2026 冬季"
}])

抓取网站获取详细列表

使用 extract_content_from_websites 提取具体更新信息:

# 从B站获取追番日历
extract_content_from_websites([{
    "url": "https://www.bilibili.com",
    "prompt": "提取动漫更新时间表或新番列表信息"
}])

动漫更新规律(参考)

日本动漫通常按星期更新:

星期更新数量常见类型
周一较少日常系、治愈系
周二中等热血系、冒险系
周三较少偶像系、运动系
周四中等科幻系、战斗系
周五较多校园系、恋爱系
周六最多各类热门番剧
周日较多各类热门番剧

四季新番时间

  • 冬季番 (1月):1月-3月
  • 春季番 (4月):4月-6月
  • 夏季番 (7月):7月-9月
  • 秋季番 (10月):10月-12月

输出格式

整理后按以下格式输出:

📅 本周动漫更新(2026年3月)

🗓️ 周一(3月9日)
- 《动漫名称1》- 第X集
- 《动漫名称2》 - 第X集

🗓️ 周二(3月10日)
- 《动漫名称3》- 第X集
...

注意事项

  • 数据来源于公开网站,可能不包含所有动漫
  • 实际播出时间可能因平台而异
  • 建议结合 B 站等平台确认具体更新时间
  • 版权番剧可能需要在特定平台观看

Repository README

Describes dvcrn/openclaw-skills-marketplace as a whole, which may contain artifacts other than this one. Where this artifact had no useful description of its own, its summary was taken from here.

OpenClaw Skills Marketplace For Claude

This repository is an automatic conversion of openclaw/skills into the Claude Skills marketplace format so the skills can be installed and used directly in Claude.

It takes the OpenClaw skill corpus and rewrites it into a Claude-compatible marketplace with:

  • a root marketplace manifest at .claude-plugin/marketplace.json
  • one Claude plugin per OpenClaw skill under plugins/
  • a generation report at reports/generate-marketplace.json

Use In Claude

Add this marketplace in Claude with:

/plugin marketplace add dvcrn/openclaw-skills-marketplace

Then install any generated plugin from the marketplace:

/plugin install <plugin-name>@openclaw-skills

Example:

/plugin install 0x-professor--agentic-mcp-server-builder@openclaw-skills

What This Repo Does

The generator reads canonical OpenClaw source skills from:

openclaw-skills/skills/<owner>/<slug>/

Each source skill is expected to contain:

  • _meta.json
  • SKILL.md or lowercase skill.md

The conversion process:

  • maps each OpenClaw skill to one Claude plugin
  • normalizes lowercase skill.md to SKILL.md
  • extracts Claude plugin root assets like agents/, hooks/, .mcp.json, .lsp.json, and settings.json
  • preserves nested skills/ trees when a source package already behaves like a multi-skill plugin
  • skips malformed inputs and records them in reports/generate-marketplace.json

Regenerate The Entire Marketplace

To rebuild the full marketplace from the openclaw-skills submodule:

mise run generate

That regenerates:

  • .claude-plugin/marketplace.json
  • plugins/<plugin-id>/...
  • reports/generate-marketplace.json

The generator replaces previous generated output under .claude-plugin/, plugins/, and reports/ on each run.

If you want the explicit underlying task name, this still works too:

mise run generate_marketplace

For small development runs:

python3 scripts/generate_marketplace.py --source openclaw-skills/skills --output . --limit 10

Validate And Test

Run the generator tests:

mise run test

Validate the generated marketplace:

claude plugin validate .

Notes

  • Plugin ids are generated as <owner>--<slug> after sanitization.
  • Nested source skills/ directories are preserved as plugin content rather than treated as separate top-level source skills.
  • The upstream OpenClaw source is included as the openclaw-skills submodule.

Trustgrade B

  • passBody integrity

    Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.

  • passType matchnot applicable to this artifact type

    Whether the artifact is really the kind of thing its metadata claims it is.

  • passFreshness

    How long since the source repository was last pushed to.

  • passPrompt injection

    Scans the artifact's own text for instructions aimed at your agent rather than at you.

  • warnLicenseno SPDX license detected

    Whether the source repository declares an SPDX license permissive enough to redistribute.

How the grade is calculated

Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:

  • Aevery check passed
  • Bone warning
  • Ctwo warnings
  • Dprompt injection or body integrity failed, or three warnings
  • Fone of those failed, and something else is wrong

These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged — not that the artifact is safe.

Versions

  • git-053bd98f1fed2026-07-31