Yuc's Anime List

v0.0.4

Scrape quarterly anime lineups from https://yuc.wiki/ and output structured results for a specified or latest quarter.

1· 264·1 current·1 all-time
byXLor@yjl9903
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the included script and manual guide. No unrelated credentials, binaries, or config paths are requested. The code and docs are proportionate for a site-specific HTML scraper.
Instruction Scope
SKILL.md and reference/manual_scrape.md restrict activity to public yuc.wiki pages (homepage + quarter page). Neither document nor the script instruct reading local secrets, system files, or contacting other endpoints. The manual guide and script focus on the lineup section only.
Install Mechanism
No install spec is provided (instruction-only with an included Python script). No downloads or package installs are specified, so nothing will be written to disk beyond normal script output when run by the agent.
Credentials
The skill requires no environment variables or credentials. The Python script uses only the standard library and network access to yuc.wiki; no secrets or unrelated service access is requested.
Persistence & Privilege
always:false and no special persistence or modification of other skills/configs. The skill can be invoked by the agent (normal), but it does not request elevated platform privileges.
Assessment
This skill appears coherent and low-risk: it only fetches public pages from yuc.wiki and parses them with a bundled Python script. Before installing, consider these practical cautions: review the included scripts yourself (they are small and human-readable) to confirm they meet your expectations; run the skill in a sandbox or isolated environment if you will allow autonomous invocation; note the code is licensed AGPL (check obligations if you plan to modify or redistribute); and be aware that site layout changes may cause parsing failures (the skill already includes fallback/manual instructions). There are no requested credentials or external endpoints beyond yuc.wiki.

Like a lobster shell, security has layers — review code before you run it.

latestvk97a2gh3w3088g2azpn86h032n82f686
264downloads
1stars
4versions
Updated 1mo ago
v0.0.4
MIT-0

Yuc's Anime List Scraper

Overview

yuc.wiki is a seasonal anime information site that publishes quarter-based lineup pages (January, April, July, October). Each quarter page contains grouped airing entries (Mon-Sun and web-release sections), with title cards, time/status notes, episode hints, and platform links.

This skill resolves the requested quarter (or discovers the latest one), scrapes the lineup section into structured JSON, and validates output quality with deduplication and count checks. It is designed for reliable quarterly lineup extraction, not full editorial article parsing.

Input

This workflow supports two input modes:

  1. Specific quarter: YYYYMM, where MM must be 01/04/07/10.
  2. Latest quarter: if no quarter is provided, auto-discover from the homepage.

References

This skill keeps two references:

  1. Reference script: scripts/scrape_lineup.py
    • Purpose: primary and default extraction path for most requests.
    • Use when: normal runs where deterministic JSON output is expected quickly.
  2. Manual scrape guide: reference/manual_scrape.md
    • Purpose: fallback process for manual extraction and troubleshooting.
    • Use when: the user explicitly asks for manual scraping, or the script fails / produces suspicious output.

Default policy: use the reference script first. Switch to the manual scrape guide only on explicit request or script issues.

Post-Processing Output Requirement

After the scraping process is completed (regardless of using the reference script or the manual workflow), do not stop at raw JSON output.

  • You must organize and present a human-readable seasonal airing table.
  • The table should be grouped by group (for example: Mon-Sun and 网络放送 & 其他), and include at least:
    • title
    • status/time
    • episode note
  • Keep the readable table concise, and include source quarter information (quarter_code and quarter_title).

Runtime & Safety Notes

  • No external binaries are required for the default flow; script and manual quarter discovery use Python standard library only.
  • No environment variables or credentials are required by this skill.
  • Network scope is limited to public pages on https://yuc.wiki/ (homepage + target quarter page).

Comments

Loading comments...