Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

ocas-taste奥卡斯味道

Agent Skill

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

总安装

2,910

周安装

125

GitHub Stars

公开资料未说明

下载量

1,020
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ocas-taste

简介

通过扫描电子邮件/日历、丰富场所以及用先前行为解释建议,根据真实消费数据生成个性化推荐。

SKILL.md

name
ocas-taste
source
https://github.com/indigokarasu/taste
install
openclaw skill install https://github.com/indigokarasu/taste
description
Use when generating personalized recommendations grounded in real consumption signals (purchases, visits, plays, watches), scanning email and calendar for consumption data, enriching venue entities with taste-relevant attributes, exploring cross-domain discovery based on actual behavior, checking taste model status, or producing periodic taste pattern reports. Trigger phrases: 'recommend', 'what would I like', 'based on what I've liked', 'suggest something similar', 'my taste', 'what should I try', 'scan my email', 'what have I been eating', 'restaurant recommendations', 'update taste'. Do not use for generic search, editorial top-10 lists, or ad-copy generation.
metadata
{"openclaw":{"emoji":"🎯"}}

Taste

Taste builds a personalized taste model from real consumption signals — purchases, restaurant visits, food delivery orders, hotel stays, music plays, and movie watches. It scans the user's email and calendar to automatically extract these signals, enriches venue entities with taste-relevant attributes (cuisine, price point, neighborhood, vibe) via Google Maps and web search, and uses temporal decay so recent behavior outweighs stale history. Every recommendation names the specific prior consumption that justifies it, respects dietary restrictions, and only suggests places the user hasn't been.

When to use

  • Scanning email and calendar for consumption signals (restaurant bookings, delivery orders, hotel stays, purchases)
  • Personalized recommendations grounded in real prior behavior
  • Cross-domain discovery based on actual taste signals
  • "What else would I like" reasoning with named evidence
  • Enriching venue/item entities with taste-relevant attributes
  • Taste model status check
  • Weekly or periodic taste pattern summary

Do not use

  • Generic web research — use Sift
  • Editorial/top-10 style recommendations without personalization
  • Ad-copy or sales-oriented product suggestions
  • Inference of sensitive identity traits from behavior

Responsibility boundary

Taste owns behavior-driven preference modeling, consumption signal extraction from email/calendar, entity enrichment for taste profiling, and evidence-backed recommendations.

Taste does not own: web research (Sift), social graph (Weave), knowledge graph (Elephas), pattern analysis (Corvus), browsing interpretation (Thread).

Commands

  • taste.scan — scan the user's email and calendar for consumption signals; extract, deduplicate, and promote to signals; queue new items for enrichment
  • taste.scan.report — summarize last scan: extractions processed, signals created, cancellations, dedup matches pending review
  • taste.ingest.signal — manually record a consumption signal (purchase, visit, play, watch, stay)
  • taste.enrich.item — enrich an item with taste-relevant attributes via Google Maps lookup and web search
  • taste.query.recommend — generate recommendations grounded in consumption history, enriched attributes, and frequency patterns; respects dietary restrictions; only suggests new places
  • taste.query.serendipity — find novel but defensible cross-domain connections
  • taste.model.status — return model state: signal count, domains active, enrichment coverage, staleness
  • taste.report.weekly — generate a weekly taste pattern summary
  • taste.journal — write journal for the current run; called at end of every run
  • taste.update — pull latest from GitHub source; preserves journals and data

Operating invariants

  • Evidence-first: recommendations must reference specific consumed items
  • Discovery-only: never recommend places the user has already been (exception: seasonal menu changes)
  • Dietary safety: never recommend venues that conflict with stated dietary restrictions or preferences
  • Signal decay: older signals degrade unless reinforced
  • Frequency matters: repeat visits/orders are a strong signal and must be tracked and weighted
  • No speculative identity inference from taste signals
  • Explainability: every recommendation explains the link to prior consumption
  • First-party signals outrank enriched metadata
  • Disabled domains do not appear in recommendations
  • Confidence reflects actual evidence strength, not rhetorical certainty
  • Always use the user's email account, never the agent's account

Workflows

Email/calendar scan workflow (taste.scan)

  1. Access the user's email and search for transactional messages from known services (see references/email_extraction.md for sender allowlist)
  2. Access the user's Google Calendar for restaurant reservations and hotel bookings
  3. For each matching message/event, extract structured data into an ExtractionRecord
  4. Classify email_type: confirmation, reminder, update, cancellation, receipt
  5. Compute dedup_key and run dedup pass (see references/email_extraction.md)
  6. Exclude cancelled events from promotion
  7. Promote valid, non-duplicate extractions to ConsumptionSignals
  8. Create or update ItemRecords (increment signal_count, append to visit_dates)
  9. Queue unenriched items for enrichment
  10. Persist all records
  11. Write journal

Enrichment workflow (taste.enrich.item)

  1. For items with enriched: false, look up the venue/item on Google Maps
  2. Extract taste-relevant attributes: cuisine, price level, neighborhood, vibe, rating (see references/enrichment.md)
  3. If Google Maps data is insufficient, use web search to fill gaps
  4. Update ItemRecord metadata with enriched attributes
  5. Set enriched: true and enriched_at
  6. Evaluate and create LinkRecords between items sharing attributes
  7. Persist updates

Signal ingestion workflow (taste.ingest.signal)

  1. Receive or normalize input signal
  2. Validate domain and signal structure
  3. Persist signal
  4. Create or update ItemRecord
  5. Queue for enrichment if new item
  6. Write journal

Recommendation workflow (taste.query.recommend)

  1. Load all active signals, apply temporal decay (see references/signal_policy.md)
  2. Compute effective item strength with frequency and recency bonuses (see references/strength_model.md)
  3. Rank items by effective strength within each domain
  4. Identify taste patterns from enriched attributes (cuisine clusters, price preferences, neighborhood tendencies)
  5. Generate recommendations for *new* venues that match identified patterns
  6. Verify each recommendation against dietary restrictions (config.jsonuser_preferences)
  7. Verify each recommendation is not a place the user has visited (check signals/items)
  8. Include evidence-linked explanation citing specific consumed items and frequency
  9. Write journal

Signal weighting and decay

Signal strength and recency both matter. See references/strength_model.md for full model. Key points:

  • Config: decay.halflife_days (default 180)
  • Stale signals weaken unless reinforced by repeat consumption
  • Frequency bonus: +0.05 per repeat visit, capped at +0.15
  • Recency bonus: +0.05 if last signal within 30 days

Storage layout

~/openclaw/data/ocas-taste/
  config.json
  signals.jsonl
  items.jsonl
  links.jsonl
  decisions.jsonl
  extractions.jsonl
  reports/

~/openclaw/journals/ocas-taste/
  YYYY-MM-DD/
    {run_id}.json

Default config.json:

{
  "skill_id": "ocas-taste",
  "skill_version": "3.0.0",
  "config_version": "2",
  "created_at": "",
  "updated_at": "",
  "domains": {
    "enabled": ["music", "restaurant", "book", "movie", "product", "travel", "event"]
  },
  "decay": {
    "halflife_days": 180
  },
  "retention": {
    "days": 0,
    "max_records": 10000
  },
  "email_scan": {
    "enabled": true,
    "last_scan_timestamp": null,
    "extraction_confidence_threshold": 0.6,
    "auto_promote_threshold": 0.8
  },
  "email_sources": {
    "doordash": { "sender_patterns": ["no-reply@doordash.com", "orders@doordash.com"], "domain": "restaurant", "source_type": "purchase" },
    "instacart": { "sender_patterns": ["no-reply@instacart.com"], "domain": "product", "source_type": "purchase" },
    "good_eggs": { "sender_patterns": ["*@goodeggs.com"], "domain": "product", "source_type": "purchase" },
    "tock": { "sender_patterns": ["*@exploretock.com"], "domain": "restaurant", "source_type": "visit" },
    "opentable": { "sender_patterns": ["*@opentable.com"], "domain": "restaurant", "source_type": "visit" },
    "yelp": { "sender_patterns": ["no-reply@yelp.com"], "domain": "restaurant", "source_type": "visit" },
    "amazon": { "sender_patterns": ["auto-confirm@amazon.com", "ship-confirm@amazon.com"], "domain": "product", "source_type": "purchase" },
    "hotels": { "sender_patterns": ["*@booking.com", "*@hotels.com", "*@marriott.com", "*@hilton.com", "*@hyatt.com", "*@ihg.com", "*@airbnb.com"], "domain": "travel", "source_type": "stay" }
  },
  "strength": {
    "base_purchase": 0.80,
    "base_visit": 0.70,
    "base_stay": 0.75,
    "base_play": 0.60,
    "base_watch": 0.60,
    "base_manual": 0.60,
    "frequency_bonus_per_visit": 0.05,
    "frequency_bonus_cap": 0.15,
    "recency_bonus_days": 30,
    "recency_bonus_value": 0.05
  },
  "user_preferences": {
    "dietary_restrictions": [],
    "dietary_preferences": [],
    "cuisine_dislikes": [],
    "notes": ""
  }
}

OKRs

Universal OKRs from spec-ocas-journal.md apply to all runs.

skill_okrs:
  - name: recommendation_evidence_rate
    metric: fraction of recommendations citing at least one consumed item
    direction: maximize
    target: 1.0
    evaluation_window: 30_runs
  - name: serendipity_novelty
    metric: fraction of serendipity results crossing domain boundaries
    direction: maximize
    target: 0.80
    evaluation_window: 30_runs
  - name: signal_freshness
    metric: fraction of active signals within decay half-life
    direction: maximize
    target: 0.60
    evaluation_window: 30_runs
  - name: email_extraction_coverage
    metric: fraction of transactional emails successfully extracted with confidence >= threshold
    direction: maximize
    target: 0.90
    evaluation_window: 30_runs
  - name: dedup_accuracy
    metric: fraction of dedup groupings not subsequently corrected by manual review
    direction: maximize
    target: 0.95
    evaluation_window: 30_runs
  - name: enrichment_coverage
    metric: fraction of items with enriched = true
    direction: maximize
    target: 0.90
    evaluation_window: 30_runs

Skill cooperation

  • User's email and Google Calendar — signal extraction (user's account only, never agent's)
  • Google Maps — entity enrichment (cuisine, price level, neighborhood, vibe, rating)
  • Web search — backup enrichment when Google Maps data is insufficient
  • Sift — additional item enrichment via web research
  • Elephas — read Chronicle (read-only) for entity context
  • Thread — may use Thread signals to detect emerging taste patterns

Journal outputs

Observation Journal — all signal ingestion, scan, enrichment, query, and report runs.

Initialization

On first invocation of any Taste command, run taste.init:

  1. Create ~/openclaw/data/ocas-taste/ and subdirectories (reports/)
  2. Write default config.json with all fields if absent
  3. Create empty JSONL files: signals.jsonl, items.jsonl, links.jsonl, decisions.jsonl, extractions.jsonl
  4. Create ~/openclaw/journals/ocas-taste/
  5. Register cron job taste:update if not already present (check openclaw cron list first)
  6. Log initialization as a DecisionRecord in decisions.jsonl

Background tasks

Job nameMechanismScheduleCommand
taste:updatecron0 0 * * * (midnight daily)taste.update
openclaw cron add --name taste:update --schedule "0 0 * * *" --command "taste.update" --sessionTarget isolated --lightContext true --timezone America/Los_Angeles

Self-update

taste.update pulls the latest package from the source: URL in this file's frontmatter. Runs silently — no output unless the version changed or an error occurred.

  1. Read source: from frontmatter → extract {owner}/{repo} from URL
  2. Read local version from skill.json
  3. Fetch remote version: gh api "repos/{owner}/{repo}/contents/skill.json" --jq '.content' | base64 -d | python3 -c "import sys,json;print(json.load(sys.stdin)['version'])"
  4. If remote version equals local version → stop silently
  5. Download and install:
   TMPDIR=$(mktemp -d)
   gh api "repos/{owner}/{repo}/tarball/main" > "$TMPDIR/archive.tar.gz"
   mkdir "$TMPDIR/extracted"
   tar xzf "$TMPDIR/archive.tar.gz" -C "$TMPDIR/extracted" --strip-components=1
   cp -R "$TMPDIR/extracted/"* ./
   rm -rf "$TMPDIR"
  1. On failure → retry once. If second attempt fails, report the error and stop.
  2. Output exactly: I updated Taste from version {old} to {new}

Visibility

public

Support file map

FileWhen to read
references/schemas.mdBefore creating signals, items, links, extractions, or recommendations
references/signal_policy.mdBefore decay calculations or domain gating
references/strength_model.mdBefore computing signal strength or ranking items
references/email_extraction.mdBefore running taste.scan; sender allowlist and dedup rules
references/enrichment.mdBefore running taste.enrich.item; what to look up and extract per domain
references/recommendation_style.mdBefore generating recommendations or reports
references/journal.mdBefore taste.journal; at end of every run

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.29%
按下载量换算727

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills