Anime Semantic Recommender
Default to a lightweight taste-analysis workflow. Do not start with the local CLI unless the user explicitly asks to use the experimental local recommender, cache, Bangumi/AniList fetch, or feedback database.
Mandatory Source Grounding
If browsing/searching is used, or if factual accuracy affects the recommendation, build a small source packet before taste matching. Do this before generic web search.
Preferred source order:
- Official anime / publisher / streaming pages for release status, adaptation status, staff, cast, episode count, and availability.
- Bangumi for Chinese titles, Chinese ACG context, ratings, tags, relationships between entries, and community metadata.
- AniList for structured tags, format, popularity, cross-language titles, and API-friendly metadata.
- MAL/Jikan for broader international popularity and fallback metadata.
- TMDb only for posters, images, and general media metadata; do not use it as the main anime taste source.
Rules:
- Search engines are only discovery tools for finding the source pages above.
- Do not treat search snippets, generic SEO pages, scraped synopsis sites, uncredited blogs, or AI-generated listicles as authoritative.
- For the anchor work, check at least Bangumi or AniList when the exact work is not already clear; also check official sources when the work is current, obscure, or adaptation status matters.
- If the preferred sources are unavailable or unreachable, say "未能从指定高质量源核实" and separate verified facts from memory/inference.
- When reporting the process, name the source class actually checked, such as "先看 Bangumi/AniList/官方信息", rather than saying only "搜索了网页".
Default Workflow
Identify the anchor work.
- What did the user watch/read?
- Is it anime, manga, light novel, web novel, or adaptation?
- If the exact work is obscure or current, verify briefly before relying on facts.
Extract the liked experience, not just tags.
- Relationship pattern: friends-to-lovers, girl leads, slow-burn, group romance, etc.
- Emotional texture: sweet, shy, low-pressure, wistful, funny, tense.
- Narrative engine: daily scenes, secrets, club activity, cohabitation, rivalry.
- Pacing: slow tease, fast confession, episodic, strong plot.
- Avoidances: harem, fanservice, heavy drama, love triangle, long misunderstandings.
Recommend in layers.
- Direct matches: closest same experience.
- Adjacent matches: similar emotional or relationship pattern with a different surface.
- Stretch picks: only if useful, and explain why they are a stretch.
Explain every pick.
- Say exactly what matches the user’s anchor.
- Say what differs.
- Include caveats when the fit is uncertain.
Use feedback immediately.
- "Seen" means do not recommend it again.
- "Too harem" lowers multi-girl/party-war picks.
- "Too sweet" adds realism or bittersweetness.
- "Too slow" raises plot momentum.
- "These are all watched" moves deeper into mid-popularity and older titles.
Output Shape
For normal requests, keep the answer compact:
你喜欢的可能是:...
1. Title
像在哪里:...
不同/注意:...
Avoid pretending to know the user's watch history. Mix popular, mid-tier, and one optional exploration pick unless the user asks otherwise.
Experimental CLI
The repo includes an experimental local recommender. Use it only when the user wants to test the implementation:
npm run recommend -- "想看像芙莉莲那种,有余韵但不要王道热血"
npm run recommend -- "想看安静的旅途感" -- --no-network --limit 5
npm run feedback -- "少女终末旅行" -- --seen --liked --comment "方向对"
npm run profile
Current limitation: the local seed catalog is small and biased toward "余韵/旅途/治愈/世界观" examples. It is not yet reliable for every genre, especially school romance/light-novel romance, unless that catalog is expanded.
Reference
For the lightweight methodology, see docs/simple-methodology.md.
For the heavier experimental architecture, see docs/technical-plan.md.
1---2name: anime-semantic-recommender3description: Use for Chinese-first, source-grounded anime recommendations when the user asks for anime similar to something they watched, describes nuanced taste, wants feedback-driven refinement, or cares about story texture, romance dynamics, emotional aftertaste, pacing, relationship patterns, and avoidances rather than only genre tags.4---56# Anime Semantic Recommender78Default to a lightweight taste-analysis workflow. Do not start with the local CLI unless the user explicitly asks to use the experimental local recommender, cache, Bangumi/AniList fetch, or feedback database.910## Mandatory Source Grounding1112If browsing/searching is used, or if factual accuracy affects the recommendation, build a small source packet before taste matching. Do this before generic web search.1314Preferred source order:15161. Official anime / publisher / streaming pages for release status, adaptation status, staff, cast, episode count, and availability.172. Bangumi for Chinese titles, Chinese ACG context, ratings, tags, relationships between entries, and community metadata.183. AniList for structured tags, format, popularity, cross-language titles, and API-friendly metadata.194. MAL/Jikan for broader international popularity and fallback metadata.205. TMDb only for posters, images, and general media metadata; do not use it as the main anime taste source.2122Rules:2324- Search engines are only discovery tools for finding the source pages above.25- Do not treat search snippets, generic SEO pages, scraped synopsis sites, uncredited blogs, or AI-generated listicles as authoritative.26- For the anchor work, check at least Bangumi or AniList when the exact work is not already clear; also check official sources when the work is current, obscure, or adaptation status matters.27- If the preferred sources are unavailable or unreachable, say "未能从指定高质量源核实" and separate verified facts from memory/inference.28- When reporting the process, name the source class actually checked, such as "先看 Bangumi/AniList/官方信息", rather than saying only "搜索了网页".2930## Default Workflow31321. Identify the anchor work.33 - What did the user watch/read?34 - Is it anime, manga, light novel, web novel, or adaptation?35 - If the exact work is obscure or current, verify briefly before relying on facts.36372. Extract the liked experience, not just tags.38 - Relationship pattern: friends-to-lovers, girl leads, slow-burn, group romance, etc.39 - Emotional texture: sweet, shy, low-pressure, wistful, funny, tense.40 - Narrative engine: daily scenes, secrets, club activity, cohabitation, rivalry.41 - Pacing: slow tease, fast confession, episodic, strong plot.42 - Avoidances: harem, fanservice, heavy drama, love triangle, long misunderstandings.43443. Recommend in layers.45 - Direct matches: closest same experience.46 - Adjacent matches: similar emotional or relationship pattern with a different surface.47 - Stretch picks: only if useful, and explain why they are a stretch.48494. Explain every pick.50 - Say exactly what matches the user’s anchor.51 - Say what differs.52 - Include caveats when the fit is uncertain.53545. Use feedback immediately.55 - "Seen" means do not recommend it again.56 - "Too harem" lowers multi-girl/party-war picks.57 - "Too sweet" adds realism or bittersweetness.58 - "Too slow" raises plot momentum.59 - "These are all watched" moves deeper into mid-popularity and older titles.6061## Output Shape6263For normal requests, keep the answer compact:6465```text66你喜欢的可能是:...67681. Title69 像在哪里:...70 不同/注意:...71```7273Avoid pretending to know the user's watch history. Mix popular, mid-tier, and one optional exploration pick unless the user asks otherwise.7475## Experimental CLI7677The repo includes an experimental local recommender. Use it only when the user wants to test the implementation:7879```bash80npm run recommend -- "想看像芙莉莲那种,有余韵但不要王道热血"81npm run recommend -- "想看安静的旅途感" -- --no-network --limit 582npm run feedback -- "少女终末旅行" -- --seen --liked --comment "方向对"83npm run profile84```8586Current limitation: the local seed catalog is small and biased toward "余韵/旅途/治愈/世界观" examples. It is not yet reliable for every genre, especially school romance/light-novel romance, unless that catalog is expanded.8788## Reference8990For the lightweight methodology, see `docs/simple-methodology.md`.91For the heavier experimental architecture, see `docs/technical-plan.md`.