Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

spotlight-search聚光灯搜索

Agent Skill

spotlight-search 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,253

周安装

179

GitHub Stars

公开资料未说明

下载量

1,489
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:spotlight-search(聚光灯搜索)
来源仓库:https://github.com/mozi1924/spotlight-search
安装命令:
openclaw skills install spotlight-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install spotlight-search

简介

使用 mdfind、mdls 等 Spotlight CLI 工具增强 macOS 文件搜索能力。

  • 当标准索引失效时自动启用备用脚本确保搜索结果完整性。
  • 支持按文件名、类型、修改时间等多维度筛选查询条件。
  • 受限于 macOS 系统环境,在非 Apple 平台不可用。
  • spotlight-search 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
spotlight-search
description
Search files, apps, and metadata on macOS using Spotlight CLI tools (mdfind, mdls, mdutil) with a fallback script for cases where indexing is incomplete. Use when the task is to find documents, PDFs, apps, file paths, or metadata on a Mac, especially for prompts like "spotlight search", "find this file on mac", "search my computer", "find PDFs", "locate an app", or "check file metadata".
metadata

Spotlight Search

Overview

Use mdfind first for indexed search, mdls for metadata inspection, and mdutil only when diagnosing indexing issues. If Spotlight misses a known file, use the bundled fallback script instead of hand-rolling a find command every time.

Quick Start

Preferred flow:

  1. Use mdfind for normal search.
  2. Use mdls when the task is about metadata, not discovery.
  3. Use ./scripts/spotlight_search.sh when Spotlight indexing is incomplete or results are unexpectedly empty.
  4. Treat the fallback script as a filename/path matcher, not a general shell helper.
  5. Use mdutil only to inspect indexing, and only suggest re-indexing when the user explicitly wants that system-level change.
# Find files containing "invoice" in name or content
mdfind "invoice"

# Find PDFs modified today
mdfind 'kind:pdf AND kMDItemContentModificationDate >= $time.today'

# Find applications whose name contains "chrome"
mdfind 'kMDItemContentType == com.apple.application-bundle && kMDItemFSName == "*chrome*"cd'

# Search only within ~/Documents
mdfind -onlyin ~/Documents "kind:pdf"

# View metadata for a file
mdls /path/to/file

For a hybrid search that tries Spotlight first and falls back to find, use the bundled script:

./scripts/spotlight_search.sh "query"
./scripts/spotlight_search.sh -t pdf "report"
./scripts/spotlight_search.sh -d ~/Documents "meeting"

Core Capabilities

1. File Search

Spotlight indexes file contents and metadata, making it ideal for locating documents when you remember words inside them.

Common patterns:

  • Simple keyword: mdfind "quarterly report"
  • By file type: mdfind "kind:pdf invoice"
  • By extension: mdfind 'kMDItemFSName == "*.md"cd'
  • By date: mdfind 'kMDItemContentModificationDate >= $time.yesterday'
  • By size: mdfind 'kMDItemFSSize > 1000000' (files >1 MB)

When to use: You recall words from the file's content, need to filter by type/date, or want to search across all indexed volumes quickly.

2. Application Search

Spotlight knows about installed applications (.app bundles) and can find them by name or bundle identifier.

Examples:

# All applications
mdfind 'kMDItemContentType == com.apple.application-bundle'

# Applications containing "visual" in name
mdfind 'kMDItemContentType == com.apple.application-bundle && kMDItemFSName == "*visual*"cd'

When to use: You need to locate an installed app, verify its presence, or get its bundle path.

3. Metadata Inspection

Use mdls to view the rich metadata Spotlight stores for any file.

# All metadata
mdls /path/to/file

# Specific attribute
mdls -name kMDItemKind /path/to/file

Common attributes: kMDItemKind, kMDItemContentType, kMDItemAuthors, kMDItemContentCreationDate, kMDItemPixelHeight, kMDItemDurationSeconds.

When to use: You need to check file properties (creation date, dimensions, author) without opening the file.

4. Hybrid Search (Fallback)

Spotlight indexing may be incomplete (excluded directories, recent files not yet indexed). The bundled script scripts/spotlight_search.sh provides a hybrid approach:

  1. Attempts Spotlight search via mdfind
  2. If no results, falls back to find with name‑based matching
  3. Uses shell argument arrays instead of eval, so the query is passed as data rather than executable shell text
  4. Supports filtering by kind (pdf, image, application, etc.)

Usage:

./scripts/spotlight_search.sh "query"
./scripts/spotlight_search.sh -t pdf "report"
./scripts/spotlight_search.sh -d ~/Documents -l 10 "draft"

When to use: You want maximum recall, or Spotlight is returning empty results for known files.

Reference Materials

For detailed query syntax, operator reference, and advanced examples, see:

  • mdfind Query Reference – Comprehensive guide to mdfind syntax, attribute filters, date comparisons, and practical examples.

Load this reference when you need to construct complex queries or understand Spotlight's capabilities.

Workflow Guidance

Choosing the Right Tool

ScenarioRecommended ToolExample
"Find files containing 'budget'"mdfind "budget"Content‑aware search
"Find all PDFs modified this week"mdfind 'kind:pdf AND kMDItemContentModificationDate >= $time.this_week'Metadata‑filtered search
"Find the Chrome app"mdfind 'kMDItemContentType == com.apple.application-bundle && kMDItemFSName == "*chrome*"cd'Application search
"Search only in Downloads folder"mdfind -onlyin ~/Downloads "kind:image"Scoped search
"Check when a file was created"mdls -name kMDItemContentCreationDate /path/to/fileMetadata inspection
"Spotlight returns nothing but I know the file exists"./scripts/spotlight_search.sh "filename"Hybrid fallback

Troubleshooting

No results for known files?

  1. Check indexing status: mdutil -s /
  2. Ensure the directory is indexed (Spotlight excludes some system and Library folders)
  3. Re-index only with explicit user approval because it is a privileged, system-wide action: sudo mdutil -E /

Query syntax errors?

  • Enclose queries containing spaces or special characters in single quotes.
  • Use cd after == for case‑ and diacritic‑insensitive matching: kMDItemFSName == "*.pdf"cd
  • Combine filters with AND/OR and parentheses.

Slow performance?

  • Limit results with -limit N
  • Restrict search scope with -onlyin

Notes

  • Spotlight indexing is not real‑time; newly created files may take minutes to appear.
  • Some directories (e.g., ~/Library, system folders) may be excluded from indexing.
  • mdfind searches all indexed volumes by default; use -onlyin to constrain.
  • The hybrid script requires find (always present) and optionally fd (faster).

See Also

  • man mdfind
  • man mdls
  • man mdutil
  • Apple's Uniform Type Identifier reference: https://developer.apple.com/documentation/uniformtypeidentifiers

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.07%
按下载量换算1,222

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install spotlight-search 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills