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

hunthunt 搜索

Agent Skill

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

总安装

612

周安装

26

GitHub Stars

公开资料未说明

下载量

214
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install hunt

简介

hunt 用于寻找、跟踪和管理在线黑客马拉松机会的数字赏金猎人技能。

  • 适合在 OpenClaw 中需要发现竞赛资源、筛选项目或管理参赛任务的场景。
  • 可通过触发词如“狩猎”、“查找黑客马拉松”启动搜索功能。
  • 使用前需确认网络访问权限、API 稳定性及数据来源可靠性。
  • 建议在正式使用前测试搜索结果准确性,确保匹配用户需求。

SKILL.md

name
hunt
description
Digital bounty hunter skill for finding, tracking, and managing online hackathon opportunities. Trigger when the user says "hunt", "find hackathons", "show map", "add [numbers] to map", or anything related to searching for online/free hackathons, managing a hackathon bucket list, or living a digital nomad/bounty hunter lifestyle. Use to browse the web for upcoming online hackathons, present them as numbered options, add selections to a map.md tracker, and schedule reminders.
compatibility
Requires web fetching (web_fetch tool) to browse hackathon listings from public event pages. Requires cron scheduling for 1-day-before reminders. Requires file read/write for map.md persistence. Network access to mlh.com, devfolio.co, devpost.com, lablab.ai. Node.js 18+ for bundled CLI tools.
license
MIT
metadata
author
lloyd-c137
version
1.0.1
repository
https://github.com/lloyd-c137/hunt-skill

Hunt — Digital Bounty Hunter 🎯

Your mission: help the user find, track, and participate in online hackathons — no boss, no office, just freedom and code.

Core Workflow

1. Trigger: "hunt" / "find hackathons"

When the user says hunt or asks to find hackathons:

  1. Check USER.md for the user's skills, timezone (UTC+8 for Lloyd), and preferences.
  2. Browse the web for upcoming online hackathons that are:

- 100% online/digital — no in-person requirement - Free to participate — no entry fee - No web3 required — unless user explicitly asks for crypto/blockchain ones - Beginner-friendly preferred — should suit their skill level from USER.md

  1. Query these sources (in order):

- MLH — https://events.mlh.io/ (filter by "Digital") - Devpost — https://devpost.com/hackathons (filter by online) - Devfolio — https://devfolio.co/hackathons (filter by online) - lablab.ai — AI-focused hackathons

  1. **Verify each result — check the event page to confirm it's truly online, free, and open for registration.

2. Present Results as Numbered List

⚠️ Telegram formatting constraint: Telegram does NOT support markdown tables. Use simple bullet lists and bold text only.

Format each result clearly (Telegram-friendly):

1. [Hackathon Name]
   🗓 Dates: May 8-14, 2026
   🏢 Host: [Organization]
   🎯 Theme: [GenAI / FinTech / Open / etc.]
   📍 Location: Online
   💰 Cost: Free
   🌐 Link: [URL]
   📝 Briefing: [1-2 sentence summary]

Never use markdown tables when the answer is going to Telegram. Use bullet-formatted lists instead.

3. User Commands

"add [numbers] to map"

  • Parse the comma-separated list (e.g., "add 1,5,7 to map")
  • For each number, append the corresponding hackathon to map.md
  • Use the standard format (see references/map-format.md)
  • Set a cron job reminder for 1 day before each event starts
  • Confirm what was added

"remove [numbers] from map" / "delete [numbers]"

  • Remove those entries from map.md
  • Cancel any associated cron reminders
  • Renumber the remaining entries sequentially

"show map" / "map"

  • Read and present map.md in full — formatted nicely for Telegram

"clear map" / "reset map"

  • Archive map.md to map-archive-YYYY-MM-DD.md and create a fresh empty one
  • Remove all associated hackathon reminder cron jobs

4. Setting Reminders

When adding entries to map.md, set a cron job for each:

{
  "schedule": { "kind": "at", "at": "<1 day before event start, ISO-8601>" },
  "payload": { "kind": "systemEvent", "text": "⏰ Hackathon Reminder: [Name] starts in 1 day! Check your map.md for details. https://..." },
  "sessionTarget": "main",
  "deleteAfterRun": true
}

Use the hackathon name or a short ID in the job name so you can find/cancel it later.

5. Map.md Format

The map.md file lives at ~/.openclaw/workspace/map.md. See references/map-format.md for the exact format.

When adding entries, always renumber the full list sequentially (1, 2, 3...).

When removing entries, renumber to fill gaps.

Criteria for Selection

Only suggest hackathons that meet ALL of these:

CriteriaMust
OnlineFully digital. No travel or in-person required.
Free$0 to register and participate.
OpenRegistration still open (not ended).
SuitableAligns with the user's skills from USER.md. If unknown, ask.
No web3Skip blockchain/crypto/NFT/DeFi events unless user explicitly asks.

User Profile

Default user is Lloyd (Sir):

  • Timezone: UTC+8
  • Skills: Coding & AI enthusiast (see USER.md for details)
  • Prefers hackathons that don't require web3

Notes

  • Always verify links work before including them.
  • If registration is via a form (not open yet), note that in briefing.
  • Prefer hackathons starting within the next 2 months unless user asks for longer.
  • If no suitable hackathons found, say so honestly — don't pad results with low-quality ones.
  • Cron job names should follow: hunt-reminder-<normalized-name> for easy management.

Telegram Output Rules

When delivering output to Telegram:

  • No markdown tables — Telegram renders them as garbled code blocks
  • No markdown headers (##, ###) — Telegram can't render them inline
  • Use simple bullet lists with - or instead
  • Bold with **bold** works, but keep it simple
  • Numbers with **bold** titles for entries (e.g., **1.** Name)
  • Use emojis as visual separators (🎯, ⏰, 🌐, etc.)
  • Keep links plain or in angle brackets <https://example.com>
  • When presenting map data, format like this:
🗺 Map - 5 active

**1.** GHW: GenAI
   🗓 May 8-14 | 🏢 MLH
   🎯 Generative AI | ⏰ Reminder May 7
   🔗 https://events.mlh.io/events/13816

**2.** Midnight Hackathon
   🗓 May 15-17 | 🏢 MLH
   🎯 Open theme | ⏰ Reminder May 14
   🔗 https://events.mlh.io/

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.49%
按下载量换算211

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills