Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计异常

herobrineherobrine 搜索

Agent Skill

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

总安装

582

周安装

25

GitHub Stars

公开资料未说明

下载量

204
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aaarnv/claude-skills --skill herobrine

简介

herobrine 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合来源仓库和原始 README 核验具体用法。

SKILL.md

Scheduled Autonomous Agents

Run Claude Code on autopilot. Create agents that execute any prompt on a schedule — morning briefings, overnight builds, recurring research — delivered straight to your Beeper.

Claude Code isn't just interactive. It's a daemon.

HOW IT WORKS

┌─────────────────┐     ┌──────────────┐     ┌─────────────────┐
│  /herobrine │────▶│  macOS       │────▶│  claude -p      │
│  create          │     │  launchd     │     │  (headless)     │
└─────────────────┘     └──────────────┘     └────────┬────────┘
                                                       │
                                              ┌────────▼────────┐
                                              │  Deliver via     │
                                              │  Beeper + notif  │
                                              └─────────────────┘
  1. You define an agent: a name, a prompt, and a schedule
  2. A macOS launchd plist is created to trigger it on time
  3. The runner executes claude -p with --dangerously-skip-permissions (fully autonomous)
  4. Results are sent to your Beeper chat and saved to local logs
  5. macOS notification confirms completion

SETUP

1. Install the scripts

Copy the runner and manager scripts to ~/.claude/agents/:

mkdir -p ~/.claude/agents/schedules ~/.claude/agents/logs
cp scripts/run-agent.sh ~/.claude/agents/run-agent.sh
cp scripts/manage-agent.sh ~/.claude/agents/manage-agent.sh
chmod +x ~/.claude/agents/run-agent.sh ~/.claude/agents/manage-agent.sh

2. Configure Beeper delivery (optional)

Find your Beeper "Note to Self" chat ID and update the default DELIVERY_CHAT in manage-agent.sh. The agent will send full results as a formatted Beeper message after each run.

If you don't use Beeper, results are still saved to ~/.claude/agents/logs/ and delivered via macOS notification.


ACTIONS

Determine the action

If $ARGUMENTS contains an action keyword (create, list, remove, run-now, logs), use that. Otherwise, ask the user with AskUserQuestion:

  • Create a new scheduled agent
  • List all scheduled agents
  • Remove a scheduled agent
  • Run now — trigger an agent immediately
  • View logs of past agent runs

Action: Create

Gather from the user (via AskUserQuestion or arguments):

  1. Agent name — short identifier, lowercase with hyphens (e.g., stock-news, nightly-review)
  2. Prompt — the full prompt sent to Claude. Be detailed. Can include skill invocations like /steve or /gsd:execute-plan
  3. Schedule — friendly options:

- Every morning at 8am → 0 8 * * * - Every evening at 6pm → 0 18 * * * - Every hour → every-1h - Every 30 minutes → every-30m - Weekday mornings at 9am → 0 9 * * 1-5 - Custom cron or interval

  1. Modelopus, sonnet (default), or haiku
  2. Max turns — default: 50

Then run:

bash ~/.claude/agents/manage-agent.sh create "<name>" "<prompt>" "<schedule>" "$HOME" "<model>" <max_turns>

Action: List

bash ~/.claude/agents/manage-agent.sh list

Action: Remove

If no agent name given, list first, then ask which to remove.

bash ~/.claude/agents/manage-agent.sh remove "<name>"

Action: Run Now

bash ~/.claude/agents/manage-agent.sh run-now "<name>"

Action: Logs

bash ~/.claude/agents/manage-agent.sh logs [agent-name]

USE CASES

AgentPromptSchedule
stock-newsResearch today's top stock market movements and tech earnings. Summarize the 5 most important things.0 8 * * 1-5
pr-digestReview all open PRs in my-org/my-repo. Summarize changes, flag concerns, note approvals needed.0 9 * * 1-5
overnight-buildUse /steve to implement the next phase in /path/to/project0 2 * * *
security-scanAudit /path/to/repo for OWASP top 10 vulnerabilities. Report findings with severity.0 6 * * 1
dep-updaterCheck for outdated dependencies in /path/to/project. Create a PR with safe updates.0 3 * * 0

FILE STRUCTURE

~/.claude/agents/
├── run-agent.sh              # Executes claude -p, delivers results
├── manage-agent.sh           # Create/list/remove/run-now/logs
├── schedules/                # Agent configs (JSON)
│   └── stock-news.json
└── logs/                     # Execution logs
    ├── stock-news_20260211_080000.log
    └── stock-news_launchd.log

~/Library/LaunchAgents/
└── com.claude.agent.stock-news.plist   # macOS scheduler

KEY DETAILS

  • Agents run with --dangerously-skip-permissions — fully autonomous, no prompts
  • Each agent gets its own launchd plist for reliable scheduling
  • The Beeper delivery instruction is injected into the prompt, so the spawned Claude instance handles delivery itself via MCP
  • Logs capture full output for every run with timestamps
  • Agents can invoke other skills (/steve, /rnv, /gsd:execute-plan) — it's a full Claude Code instance

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.04%
按下载量换算78

Claude

28.99%
按下载量换算59

Cursor

19.18%
按下载量换算39

Gemini CLI

8.46%
按下载量换算17

安全审计

Gen Agent Trust Hub

未通过

Socket

未通过

Snyk

未通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills