Skills Plugins MCP Prompt Model 博客 我的中心

journey

Plan multi-waypoint journeys with route optimization, feasibility analysis, and time budget constraints. Use when you need to plan trips with multiple stops or check if an itinerary is achievable.

DeepseekModel 官方收录技能 质量 良好 · 48 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=duclm1x1-dive-ai-skills-library-transportation-journey-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name journey description Plan multi-waypoint journeys with route optimization, feasibility analysis, and time budget constraints. Use when you need to plan trips with multiple stops or check if an itinerary is achievable. metadata {"clawdbot":{"emoji":"🗺️","requires":{"env":"[Truncated]"},"primaryEnv":"CAMINO_API_KEY"}} Installation Companion Skills : This is part of the Camino AI location intelligence suite. Install all available skills (query, places, relationship, context, route, journey, real-estate, hotel-finder, ev-charger, school-finder, parking-finder, fitness-finder, safety-checker, travel-planner) for comprehensive coverage. # Install all skills from repo npx skills add https://github.com/barneyjm/camino-skills # Or install specific skills npx skills add https://github.com/barneyjm/camino-skills --skill journey Via clawhub: npx clawhub@latest install journey # or: pnpm dlx clawhub@latest install journey # or: bunx clawhub@latest install journey Journey - Multi-Stop Planning Plan multi-waypoint journeys with route optimization, feasibility analysis, and time budget constraints. Setup Instant Trial (no signup required): Get a temporary API key with 25 calls: curl -s -X POST -H "Content-Type: application/json" \ -d '{"email": "you@example.com"}' \ https://api.getcamino.ai/trial/start Returns: {"api_key": "camino-xxx...", "calls_remaining": 25, ...} For 1,000 free calls/month, sign up at https://app.getcamino.ai/skills/activate . Add your key to Claude Code: Add to your ~/.claude/settings.json : { "env" : { "CAMINO_API_KEY" : "your-api-key-here" } } Restart Claude Code. Usage Via Shell Script # Plan a simple journey ./scripts/journey.sh '{ "waypoints": [ {"lat": 40.7128, "lon": -74.0060, "purpose": "Start at hotel"}, {"lat": 40.7484, "lon": -73.9857, "purpose": "Visit Empire State Building"}, {"lat": 40.7614, "lon": -73.9776, "purpose": "Lunch in Midtown"} ] }' # With transport mode and time budget ./scripts/journey.sh '{ "waypoints": [ {"lat": 40.7128, "lon": -74.0060, "purpose": "Start"}, {"lat": 40.7484, "lon": -73.9857, "purpose": "Empire State"}, {"lat": 40.7614, "lon": -73.9776, "purpose": "MoMA"} ], "constraints": { "transport": "foot", "time_budget": "3 hours" } }' Via curl curl -X POST -H "X-API-Key: $CAMINO_API_KEY " \ -H "Content-Type: application/json" \ -d '{ "waypoints": [ {"lat": 40.7128, "lon": -74.0060, "purpose": "Start"}, {"lat": 40.7484, "lon": -73.9857, "purpose": "Empire State"} ], "constraints": {"transport": "foot"} }' \ "https://api.getcamino.ai/journey" Parameters Field Type Required Default Description waypoints array Yes - List of waypoints with lat, lon, and purpose (min 2) constraints.transport string No "walking" Transport mode: "walking", "car", or "bike" constraints.time_budget string No - Time constraint (e.g., "2 hours", "90 minutes") constraints.preferences array No [] Route preferences Waypoint Object Field Type Required Description lat float Yes Latitude of the waypoint lon float Yes Longitude of the waypoint purpose string No Description of why you're visiting this waypoint Response Format { "feasible" : true , "total_distance_km" : 4.2 , "total_time_minutes" : 52 , "total_time_formatted" : "52 minutes" , "transport_mode" : "foot" , "route_segments" : [ { "from" : "Start" , "to" : "Empire State" , "distance_km" : 4.2 , "duration_minutes" : 52 } ] , "analysis" : { "summary" : "This walking journey is feasible..." , "optimization_opportunities" : [ ] } } Examples Day trip planning ./scripts/journey.sh '{ "waypoints": [ {"lat": 48.8584, "lon": 2.2945, "purpose": "Eiffel Tower"}, {"lat": 48.8606, "lon": 2.3376, "purpose": "Louvre Museum"}, {"lat": 48.8530, "lon": 2.3499, "purpose": "Notre-Dame"}, {"lat": 48.8867, "lon": 2.3431, "purpose": "Sacré-Cœur"} ], "constraints": { "transport": "foot", "time_budget": "6 hours" } }' Business meeting route ./scripts/journey.sh '{ "waypoints": [ {"lat": 40.7128, "lon": -74.0060, "purpose": "Office"}, {"lat": 40.7580, "lon": -73.9855, "purpose": "Client meeting"}, {"lat": 40.7614, "lon": -73.9776, "purpose": "Lunch"}, {"lat": 40.7128, "lon": -74.0060, "purpose": "Return to office"} ], "constraints": { "transport": "car", "time_budget": "2 hours" } }' Cycling tour ./scripts/journey.sh '{ "waypoints": [ {"lat": 37.7749, "lon": -122.4194, "purpose": "Start downtown SF"}, {"lat": 37.8199, "lon": -122.4783, "purpose": "Golden Gate Bridge"}, {"lat": 37.8270, "lon": -122.4230, "purpose": "Sausalito"} ], "constraints": { "transport": "bike" } }' Use Cases Trip itinerary validation : Check if a planned itinerary is feasible within time constraints Route optimization : Get suggestions for optimizing multi-stop journeys Travel time estimation : Understand total journey time across multiple destinations Tour planning : Plan walking tours, cycling routes, or driving trips
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。