Token导航 LogoToken导航TokenDH.com
效率external-serviceclawhub未标认证来源可访问clear审计提醒

douban-self-taste-skill豆瓣自我品味技巧

Agent Skill

douban-self-taste-skill 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,617

周安装

352

GitHub Stars

公开资料未说明

下载量

2,788
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:douban-self-taste-skill(豆瓣自我品味技巧)
来源仓库:https://github.com/xeric7/douban-self-taste-skill
安装命令:
openclaw skills install douban-self-taste-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install douban-self-taste-skill

简介

用于收集与分析用户个人豆瓣历史品味数据。

  • 支持归一化处理与个性化推荐推理生成。
  • 适用于兴趣挖掘与文化偏好建模场景。douban-self-taste-skill 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 安装前需授权访问豆瓣账户相关接口权限。
  • 建议定期刷新数据以保证推荐准确性。

SKILL.md

name
douban-self-taste-skill
description
Collect, refresh, normalize, and analyze the user's own Douban history for taste analysis and recommendation reasoning. Use when the task involves the user's own Douban shelves, ratings, tags, comments, reviews, or recent activity, especially when you need to decide whether local cache is fresh enough, re-crawl logged-in data with cookies, store refreshed results locally, and then analyze them by category.

Douban Self Taste Skill

Collect the user's own Douban history, keep a local cache fresh, and analyze it carefully.

Scope

Use this skill only for the user's own Douban data, including:

  • the user's own movie / book / music / game shelves
  • the user's own ratings, tags, short comments, reviews, and dates
  • local exports, saved HTML pages, or cached JSON derived from the user's own account
  • fresh re-crawls of the user's own logged-in pages when cache is missing or stale

Do not use this skill for public-user scraping, whole-site crawling, hidden/private data claims, or MCP-server design.

Storage layout

Use these paths unless the user explicitly asks for a different layout:

  • cookies: .local/douban-self-taste/cookies/douban_cookies.json
  • crawl cache: .local/douban-self-taste/cache/collections/
  • analysis outputs: .local/douban-self-taste/analysis/

Treat the cache as reusable local working data. Do not scatter generated files across the repo.

Read references/storage-layout.md for exact file naming conventions.

Required workflow

Follow this order.

1. Decide whether crawling is needed

Check whether local crawl cache already exists for the requested category.

  • If no cache exists, crawling is needed.
  • If cache exists but its fetched_at timestamp is older than 7 days, crawling is needed.
  • Otherwise, reuse the local cache.

Prefer the smallest sufficient refresh.

  • If the user asks about books, prioritize book cache.
  • If the user asks about movies, prioritize movie cache.
  • You may use small amounts of other categories as weak supplementary context, but keep the requested category primary.

2. If crawling is needed, verify cookie availability

Check whether the cookie file exists and is plausibly usable.

Treat cookies as unavailable when:

  • the cookie file is missing
  • the cookie file is empty or malformed
  • the crawl clearly redirects to login or otherwise fails due to authentication

If cookies are unavailable or expired, ask the user for fresh cookies before crawling.

Do not pretend a crawl succeeded when authentication failed.

3. Crawl and persist locally

When cookies are available, crawl the user's own Douban shelves and store the refreshed result in local JSON cache files.

Use scripts/crawl_douban_self_history.py for logged-in crawling. Use scripts/extract_douban_self_history.py when the user already has saved HTML files.

After crawling:

  • save normalized JSON to the cache directory
  • include fetched_at
  • keep category and status explicit
  • preserve raw comments and rating information

4. Analyze after data is ready

Only start analysis after confirming that either:

  • fresh cache exists, or
  • a successful new crawl has been saved locally

Use scripts/build_taste_profile.py to build an analysis-ready summary when helpful. Write the summary into .local/douban-self-taste/analysis/ when the user wants a reusable analysis artifact.

Analysis priorities

Always pay extra attention to:

  • items with comments
  • high-rated items
  • low-rated items
  • recent items
  • category boundaries

For scripts/build_taste_profile.py, use these summary rules:

  • Do not include the full items array in the profile output; keep full records in the crawl cache.
  • Keep the rest of the summary reasonably rich; avoid large deletions unless the user asks.
  • Define recent_items as the newest dated items sorted by date descending, capped at 20 items.
  • Define high_rated_items as all items tied at the user's highest observed rating within the focused dataset; if there are more than 20, keep only the most recent 20 by date.
  • Define low_rated_items as all items tied at the user's lowest observed rating within the focused dataset; if there are more than 20, keep only the most recent 20 by date.
  • Treat game tag analysis separately from creator analysis; games may have useful genre/platform-like tags but often do not have reliable creators.
  • Filter noisy book creators when obvious publisher / bookstore / distribution-style strings appear.
  • Prefer category-specific cleaning over one generic parser when extracting tags or creators.

When the user asks about one category, analyze that category first.

Examples:

  • Book questions → use books as primary evidence; only lightly reference movies/music/games if they add meaningful support.
  • Movie questions → use movies as primary evidence.

Separate:

  • stable preferences
  • weak signals
  • aversions / anti-preferences
  • recent shifts

Do not overfit from tiny samples.

Output expectations

Start with factual scope:

  1. what data was used
  2. whether it came from cache or a fresh crawl
  3. cache age
  4. category coverage
  5. obvious data gaps

Then provide analysis. Keep generated profile files compact enough for downstream LLM analysis; prefer concise summaries over repeating the entire dataset.

Bundled resources

  • Read references/storage-layout.md for local file locations.
  • Read references/data-sources.md for cache/cookie refresh logic.
  • Read references/output-schema.md for normalized JSON structure.
  • Read references/analysis-rubric.md before writing conclusions.
  • Use scripts/crawl_douban_self_history.py to refresh local cache from logged-in pages.
  • Use scripts/extract_douban_self_history.py to convert saved HTML files into normalized JSON.
  • Use scripts/build_taste_profile.py to generate category-aware summaries.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.22%
按下载量换算2,348

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills