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

ocas-voyage奥卡斯航程

Agent Skill

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

总安装

8,193

周安装

338

GitHub Stars

公开资料未说明

下载量

2,677
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ocas-voyage

简介

旅行计划、行程构建和预订管理工具。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

  • 适用于制定出行方案、查找住宿餐饮和行程优化。
  • 安装后输入目的地和时间即可获取建议行程。
  • 依赖第三方服务可用性,价格与库存可能变动。
  • 预订前请再次确认条款与取消政策。ocas-voyage 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
ocas-voyage
source
https://github.com/indigokarasu/voyage
install
openclaw skill install https://github.com/indigokarasu/voyage
description
Use when planning a trip, building or optimizing an itinerary, finding lodging, restaurants, or activities, or managing reservation checklists. Trigger phrases: 'plan a trip', 'build itinerary', 'where to stay', 'restaurant recommendations for my trip', 'travel to', 'optimize my itinerary', 'update voyage'. Do not use for generic travel inspiration, visa advice, or airfare-only optimization.
metadata
{"openclaw":{"emoji":"🧭"}}

Voyage

Voyage builds complete, constraint-aware travel itineraries — taking a destination, dates, budget, dietary preferences, and pace, then assembling lodging, dining, and activity recommendations into a logistics-optimized plan that is ready for reservation without auto-booking anything. It never presents uncertain operating hours or availability as confirmed fact, and surfaces cost implications throughout so the plan remains honest about what it actually knows.

When to use

  • Plan a multi-day trip with itinerary
  • Build or optimize a travel itinerary
  • Recommend lodging, restaurants, or activities for a trip
  • Manage reservation planning and checklists
  • Optimize an existing itinerary for feasibility

When not to use

  • Generic travel inspiration with no planning intent
  • Airfare-only or points-only optimization
  • Visa, customs, or medical-travel compliance as primary task
  • Presenting uncertain availability as confirmed facts

Responsibility boundary

Voyage owns travel planning, itinerary construction, and reservation management.

Voyage does not own: web research (Sift), preference persistence (Taste), knowledge graph (Elephas), communications (Dispatch).

Commands

  • voyage.plan.trip — create a full trip plan from destination, dates, and constraints
  • voyage.recommend.lodging — lodging recommendations based on trip context
  • voyage.recommend.food — restaurant recommendations based on route and preferences
  • voyage.recommend.activities — activity recommendations based on interests and logistics
  • voyage.optimize.itinerary — optimize an existing itinerary for feasibility and logistics
  • voyage.status — current plan state, pending reservations, open decisions
  • voyage.journal — write journal for the current run; called at end of every run
  • voyage.update — pull latest from GitHub source; preserves journals and data

Run completion

After every Voyage command:

  1. Persist plan state, recommendations, and reservation details to local files
  2. Log material decisions to decisions.jsonl
  3. Write journal via voyage.journal

Invariants

  • Never present uncertain operating hours or availability as confirmed
  • Respect dietary constraints in all food recommendations
  • Budget awareness throughout — surface cost implications
  • Reservation-ready means actionable, not auto-booked (unless explicitly enabled)

Storage layout

~/openclaw/data/ocas-voyage/
  config.json
  state.json
  events.jsonl
  decisions.jsonl
  plans/

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

Default config.json:

{
  "skill_id": "ocas-voyage",
  "skill_version": "2.3.0",
  "config_version": "1",
  "created_at": "",
  "updated_at": "",
  "defaults": {
    "diet": "vegetarian",
    "pace": "moderate",
    "auto_book": false
  },
  "retention": {
    "days": 0,
    "max_records": 10000
  }
}

OKRs

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

skill_okrs:
  - name: itinerary_feasibility
    metric: fraction of itinerary days passing logistics feasibility checks
    direction: maximize
    target: 0.95
    evaluation_window: 30_runs
  - name: constraint_compliance
    metric: fraction of recommendations satisfying all stated constraints
    direction: maximize
    target: 1.0
    evaluation_window: 30_runs
  - name: availability_honesty
    metric: fraction of uncertain availability items flagged appropriately
    direction: maximize
    target: 1.0
    evaluation_window: 30_runs

Optional skill cooperation

  • Sift — web research for venue information and availability
  • Taste — may read taste model for preference-aware recommendations
  • Weave — may read social graph for trip companion context

Journal outputs

Action Journal — all planning, recommendation, and reservation runs.

Initialization

On first invocation of any Voyage command, run voyage.init:

  1. Create ~/openclaw/data/ocas-voyage/ and subdirectories (plans/)
  2. Write default config.json and state.json if absent
  3. Create empty JSONL files: events.jsonl, decisions.jsonl
  4. Create ~/openclaw/journals/ocas-voyage/
  5. Register cron job voyage:update if not already present (check openclaw cron list first)
  6. Log initialization as a DecisionRecord in decisions.jsonl

Background tasks

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

Self-update

voyage.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 Voyage from version {old} to {new}

Visibility

public

Support file map

FileWhen to read
references/voyage_schemas.mdBefore creating plans, itineraries, or reservations
references/itinerary_constraints.mdBefore constraint application or optimization
references/recommendation_style.mdBefore generating recommendations
references/journal.mdBefore voyage.journal; at end of every run

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.26%
按下载量换算1,908

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills