Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

notion-moviesNotion movies 搜索

Agent Skill

用于处理 Notion 页面、数据库、工作区内容和结构化记录。它适合让 Agent 查询知识库、整理页面内容、创建记录或把外部信息同步到 Notion。使用时需要确认集成是否已被授权到目标页面或数据库,并区分读取、追加和覆盖更新;涉及批量写入或修改数据库属性时,应先核对字段名称、属性类型和目标页面。

总安装

245

周安装

10

GitHub Stars

公开资料未说明

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:notion-movies(Notion movies 搜索)
来源仓库:https://github.com/josearroyave/agent-skills
仓库路径:skills/notion-movies
安装命令:
npx skills add https://github.com/josearroyave/agent-skills --skill notion-movies
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/josearroyave/agent-skills --skill notion-movies

简介

用于处理 Notion 页面、数据库、工作区内容和结构化记录。

  • 适合让 Agent 查询知识库、整理页面内容、创建记录或把外部信息同步到 Notion。
  • 使用时需要确认集成是否已被授权到目标页面或数据库,并区分读取、追加和覆盖更新。
  • 安装命令:npx skills add https://github.com/josearroyave/agent-skills --skill notion-movies。
  • 涉及批量写入或修改数据库属性时,应先核对字段名称、属性类型和目标页面。

SKILL.md

🎬 Notion Movies Skill

This skill transforms a Notion movie database into an intelligent, searchable, and self-enriching system.

It combines:

  • Notion (data storage)
  • TMDB (movie metadata)
  • Ollama (embeddings)
  • Qdrant (semantic search)

🧠 Why this skill exists

This is not just about saving and searching movies.

It turns Notion into a semantic knowledge system for movies, allowing agents to:

  • understand meaning (not just keywords)
  • enrich data automatically
  • avoid duplicates
  • recommend content intelligently

🔥 What you can actually do with it

🎬 1. Smart movie ingestion

Instead of manually filling fields:

"add Interstellar"

The agent will:

  • create the page
  • fetch poster
  • fetch plot
  • fetch director
  • fetch genres
  • fetch actors, runtime, year
  • format everything properly

🧬 2. Automatic duplicate detection

Prevents:

  • Interstellar
  • Interstellar (2014)
  • Interestellar ❌

Agent behavior:

"This movie already exists. Enriching instead of duplicating."

Detection uses:

  • fuzzy matching (typos)
  • normalized titles (removes year)
  • semantic similarity (vector-based)

🔎 3. Human-like search (semantic + explainable)

Instead of exact filters, you can ask:

"movies about time travel"
"romantic movies in Europe"
"movies like Nolan"
"movies that make you think"

The system understands intent, not just words.


🧠 Explainable results

Each result includes:

  • similarity score
  • reasoning

Example:

{
  "title": "Interstellar",
  "score": 0.92,
  "explanation": "Similar because: genre similarity, plot similarity"
}

This makes results transparent and debuggable.


🤖 4. Personal recommendation engine

Example:

"recommend something like Fight Club"

→ returns semantically similar movies


🧠 5. Turn Notion into a knowledge system

From:

Static database

To:

Living, searchable, intelligent system

⚡ 6. Agent workflows (OpenClaw)

Example flow:

User → "I want something like Interstellar"

→ searchMovies
→ rank results
→ explain results
→ suggest options
→ user selects one
→ addMovie
→ enrichMovie
→ index vector

⚙️ Environment Variables

Required:

  • NOTION_KEY
  • TMDB_API_KEY

Optional:


🧩 Actions


➕ addMovie

Creates a movie page (basic structure)

{
  "title": "Interstellar",
  "databaseQuery": "Movies"
}

Behavior:

  • checks duplicates before creating
  • prevents near-identical entries

🎬 enrichMovie

Enriches a movie with:

  • Poster (property + cover)
  • Plot (Notion blocks)
  • Director
  • Genres
  • Actors (top 5)
  • Year
  • Runtime
  • Emoji 🎬
  • Embedding (vector index)
{
  "title": "Interstellar",
  "databaseQuery": "Movies"
}

🔎 searchMovies

Semantic search with explainability

{
  "query": "movies about space exploration"
}

Returns:

  • top matches
  • similarity score
  • explanation

🧬 detectDuplicate

Detects duplicates using:

  • embeddings similarity
  • fuzzy matching
  • normalized titles
{
  "title": "Interstellar",
  "databaseQuery": "Movies"
}

🔁 syncDatabase

Sync Notion → Qdrant (vector DB)

{
  "databaseQuery": "Movies"
}

🧠 Embedding Strategy

Embeddings are built from enriched semantic content:

Title
Genres
Director
Plot
Themes (inferred)

✨ Example embedding input

Title: Interstellar
Genres: Science Fiction, Drama
Director: Christopher Nolan
Plot: A team travels through a wormhole in space...

Themes: space, time, futuristic

⚡ Optimization

  • important fields are repeated (weighting)
  • themes inferred automatically from plot
  • improves semantic recall and ranking

🧠 Data Enrichment Logic

🎥 Director

  • Source: TMDB /credits
  • Stored in: Director/es

🏷️ Genres

  • Source: TMDB /movie/{id}
  • Stored in: Género

🧠 Plot

  • Source: TMDB overview
  • Stored as Notion blocks:

- Callout - Quote


🖼️ Poster

  • Source: TMDB
  • Stored as:

- Portada - Notion cover


🎭 Actors

  • Source: TMDB /credits
  • Top 5 stored in Actores

📅 Year

  • Source: release date
  • Stored in Año

⏱️ Runtime

  • Source: TMDB details
  • Stored in Duración

🔐 Edge Case Handling

❌ Movie not found

{
  "error": "Movie not found in TMDB"
}

⚠️ Ambiguous results

{
  "error": "Multiple matches found",
  "options": [
    { "title": "Dune", "year": "2021" },
    { "title": "Dune", "year": "1984" }
  ]
}

🧠 Embedding fallback

If embedding fails:

  • returns zero vector
  • prevents system crashes
  • keeps pipeline running

🧬 Duplicate handling

System prevents:

  • typos
  • alternate titles
  • same movie with year variations

⚠️ Notion Schema Requirements

PropertyType
Nombretitle
Director/esrich_text
Géneromulti_select
Portadafiles
Ratingselect
Estadostatus

🧩 Extended Schema (Recommended)

PropertyTypeDescription
AñonumberRelease year
Actoresrich_textMain cast
DuraciónnumberRuntime

🤖 Agent Guidelines

Agents should:

  • ALWAYS use databaseQuery
  • ALWAYS check duplicates before adding
  • prefer semantic search over filters
  • explain recommendations when possible
  • enrich instead of duplicating
  • only fill missing data
  • handle ambiguity before proceeding
  • gracefully handle API failures

⚡ Performance Notes

  • embeddings generated via Ollama (nomic-embed-text:v1.5)
  • vectors stored in Qdrant
  • each movie indexed as semantic document
  • payload includes metadata for explainability

🚀 Advanced Capabilities

  • Semantic search (embedding-based)
  • Explainable recommendations
  • Hybrid duplicate detection (semantic + fuzzy)
  • Automatic enrichment pipeline
  • Robust error handling
  • Agent-ready design (OpenClaw compatible)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.56%
按下载量换算30

Claude

32.14%
按下载量换算25

Cursor

18.71%
按下载量换算15

Gemini CLI

8.39%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills