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

surf-spot-finder冲浪点查找器

Agent Skill

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

总安装

1,176

周安装

50

GitHub Stars

公开资料未说明

下载量

412
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install surf-spot-finder

简介

使用 Surfline 数据和定义的评分标准,提供按波高、风向和风速排名的区域内排名前 3 的冲浪点。

SKILL.md

Surf Region Ranking Skill

Use this skill when the user asks for the best surf spots in a region based on wave height, wind direction, and wind speed.

Goal

For a user-specified region:

  1. Run the Go collector script to gather surf, wind, and tide data per spot.
  2. Score every spot in the region inside the agent (not in Go).
  3. Return the top 3 spots by total score with explanations.

Category scores are:

  • Wave height /10
  • Wind direction /10
  • Wind speed /10

Total score is /30.

Important architecture rule

The Go script is data collection only. It must not be treated as a scorer or ranker.

  • Script responsibility: fetch and output spot data
  • Agent responsibility: score spots and choose top 3

Required script command

Preferred (preset regions):

  • go run surfline_region_report.go -region <region> -hours <hours> -output json

Custom spot IDs:

  • go run surfline_region_report.go -spots "<spotId1,spotId2,...>" -hours <hours> -output json

Default hours to 24 unless the user asks otherwise.

Regions supported by preset

  • north-orange-county
  • south-orange-county
  • san-diego
  • santa-cruz

If the user gives an unsupported region, ask for Surfline spot IDs for that region.

Parse JSON output from Go script

Read spots[] from script output. Each spot includes:

  • spotId
  • avgSurfMinFt
  • avgSurfMaxFt
  • avgPrimarySwellFt
  • avgWindMph
  • avgWindDirectionDeg
  • avgTideFt
  • validHours

Use avgSurfMaxFt as the main wave-height comparison value.

Scoring rubric (agent-side, 0-10 each)

Compute scores for all valid spots in the selected region.

1) Wave height score (0-10, relative within region)

Let waveMax = avgSurfMaxFt.

  • waveScore = 10 * (waveMax - minWaveMax) / (maxWaveMax - minWaveMax)
  • If all spots have identical waveMax, assign waveScore = 5 for all
  • Clamp to [0, 10]

Interpretation: bigger rideable waves in the same region score higher.

2) Wind speed score (0-10, lower is better)

Let windSpeed = avgWindMph.

  • <= 4 mph: 10
  • > 4 and <= 8: 8
  • > 8 and <= 12: 6
  • > 12 and <= 16: 4
  • > 16 and <= 20: 2
  • > 20: 0

3) Wind direction score (0-10)

Default directional rubric unless user provides local break orientation:

  • 315-360 or 0-45: offshore/cross-offshore -> 9
  • 46-90 or 271-314: side-shore -> 6
  • 91-270: onshore/cross-onshore -> 2

If user provides local direction guidance for a break, that guidance overrides defaults.

Total score

  • totalScore = waveScore + windSpeedScore + windDirectionScore
  • Max total = 30
  • Round all category and total scores to 1 decimal place

Required response format

Return only the top 3 spots sorted by totalScore descending.

For each ranked spot include:

  • Spot ID (or spot name if available)
  • Wave score /10 and avgSurfMaxFt
  • Wind direction score /10 and avgWindDirectionDeg plus label
  • Wind speed score /10 and avgWindMph
  • Total score /30
  • 1-3 sentence explanation of why the spot earned the rank

After the list, include one short sentence naming the #1 recommendation.

Behavior rules

  • Always score all valid spots before picking top 3.
  • If fewer than 3 valid spots exist, return all and explain why.
  • If script fetch fails for a spot, exclude it and mention exclusion.
  • Do not invent missing values; only use data returned by the script.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

92.43%
按下载量换算381

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills