Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

daily-oracledaily Oracle 搜索

Agent Skill

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

总安装

22,149

周安装

896

GitHub Stars

公开资料未说明

下载量

6,953
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install daily-oracle

简介

基于本地数据和社交信号生成日常生活预测。

  • 适用于个性化趋势判断、行为建议类应用场景。
  • 整合时间、位置、历史行为等多维度信息进行分析。
  • 注意隐私保护,避免收集非必要个人信息。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • daily-oracle 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
daily-oracle
version
1.1.0
description
A background agent that generates a daily life prediction by analyzing local data and social signals.
author
https://github.com/Invelene
repository
https://github.com/Invelene/Futurizzm/daily-oracle
requirements
permissions
safety_policy
local-only

Daily Oracle (Automated)

This skill is designed to run as a background process (Cron Job). It wakes up, analyzes the user's digital footprint, generates a prediction, pushes the notification, and then terminates.

⚠️ PRIVACY NOTICE: This skill processes highly sensitive personal data. All analysis must be performed within the local LLM context. No data is to be sent to third-party logging services.

Execution Routine

1. Initialization & Anti-Ban Jitter

  • Context: Since this task is triggered by a precise Cron timer (e.g., exactly 08:00:00), immediate execution creates a detectable bot pattern.
  • Action: Generate a random integer between 120 and 900 (seconds).
  • Wait: Sleep for that duration before making any network requests.
  sleep $(( RANDOM % 780 + 120 ))

2. Silent Data Gathering

A. Calendar Context

  • Action: Read the local calendar for today's agenda (00:00 to 23:59).
  • Tool Usage: Use calendar-access or CLI equivalents (e.g., icalBuddy on macOS).

- _Prompt_: "Summarize my calendar events for today from 00:00 to 23:59. Focus on constraints (meetings) and opportunities (free blocks)."

B. Social Context (Headless)

  • Action: Open a headless browser session using _existing_ cookies.
  • Target: Scan "Close Friends" or specific mutuals who appear in the user's recent calendar/messages.
  • Safety: Limit scrolling to max 5 posts/stories. Abort immediately if login is requested to prevent session flagging.
  • Data Extraction: Screenshot or scrape text from the first viewport of specific curated URLs (e.g., instagram.com/direct/inbox/).

C. Communications (iMessage/Local DB)

  • Action: Read the last 50 messages from the local chat.db.
  • Query:
  SELECT
      text,
      datetime(date/1000000000 + 978307200, 'unixepoch', 'localtime') as date_sent
  FROM message
  WHERE date_sent > datetime('now', '-24 hours')
  ORDER BY date DESC
  LIMIT 50;
  • Filtering: Look for intent keywords: "tomorrow", "gym", "coffee", "meet", "lunch", "tonight".

D. System Signals

  • Action: Check ~/Downloads for recent files.
  find ~/Downloads -type f -mtime -1 -print
  • Inference: Determine active deliverables or recent interests based on file types (e.g., PDFs vs. Images).

3. The Oracle's Inference

  • Synthesize: Combine the hard data (Calendar: "Gym at 5pm") with soft data (Social: "Amy posted about coffee").
  • Predict: Formulate a single, high-confidence sentence in the future tense.
  • Tone: Insightful but grounded. Example: _"You will meet Amy at the gym today, and she will likely suggest getting coffee after workout because she posted about craving caffeine"_

4. Push Notification (Critical)

  • Context: The user is likely not looking at the terminal or chat window.
  • Action: Use the system's primary notification tool.

- _macOS_: osascript -e 'display notification "Your prediction..." with title "Daily Oracle"' - _Linux_: notify-send "Daily Oracle" "Your prediction..."

  • Format:

> 🔮 Daily Oracle: [Your Prediction Here]

Constraints & Safety

  1. One-Shot Execution: This process must run from start to finish without pausing for user input.
  2. Failure Mode: If data is insufficient to make a specific prediction, fall back to a generic personalized wellness tip based on the weather. Do NOT fail silently.
  3. Data Hygiene: Clearly wipe the temporary context/memory of the gathered data once the prediction is sent.
  4. Silence on Sources: The output message must strictly contain the _prediction_ and subtle reason for prediction. Do not list the data sources in the notification.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.93%
按下载量换算5,836

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills