# Send Sentiet ORB to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "daily-oracle",
    "name": "Sentiet ORB",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Invelene/daily-oracle",
    "canonicalUrl": "https://clawhub.ai/Invelene/daily-oracle",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/daily-oracle",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=daily-oracle",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/daily-oracle"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/daily-oracle",
    "downloadUrl": "https://openagent3.xyz/downloads/daily-oracle",
    "agentUrl": "https://openagent3.xyz/skills/daily-oracle/agent",
    "manifestUrl": "https://openagent3.xyz/skills/daily-oracle/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/daily-oracle/agent.md"
  }
}
```
## Documentation

### 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.

### 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

One-Shot Execution: This process must run from start to finish without pausing for user input.
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.
Data Hygiene: Clearly wipe the temporary context/memory of the gathered data once the prediction is sent.
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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Invelene
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/daily-oracle)
- [Send to Agent page](https://openagent3.xyz/skills/daily-oracle/agent)
- [JSON manifest](https://openagent3.xyz/skills/daily-oracle/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/daily-oracle/agent.md)
- [Download page](https://openagent3.xyz/downloads/daily-oracle)