Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

monitormonitor 搜索

Agent Skill

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

总安装

742

周安装

30

GitHub Stars

55

下载量

233
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/joelhooks/joelclaw --skill monitor

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 建议确认权限范围和维护状态,注意是否触发联网或文件读写。
  • 可结合来源仓库和 README 进一步核验具体用法。

SKILL.md

Resource Monitor — Track What Matters

Manage the feed subscription system (ADR-0127). Inngest cron checks subscriptions hourly, detects changes, summarizes via LLM, and notifies Joel via gateway with approve/dismiss for /cool publishing.

Joel's Interest Profile

Use this to assess whether a discovered resource is worth monitoring. If a resource clearly maps to 2+ of these, recommend monitoring with a brief explanation.

  • Agentic AI — agent patterns, agent infrastructure, tool use, MCP, multi-agent systems
  • Developer education — course platforms, learning design, course-builder ecosystem
  • TypeScript tooling — Effect ecosystem, Bun, type-level programming, compiler work
  • Inngest / durable workflows — event-driven systems, step functions, background jobs
  • Personal AI systems — local-first AI, semantic memory, knowledge management, RAG
  • BEAM / Elixir / OTP — Erlang ecosystem, actor model, fault tolerance
  • Video infrastructure — Mux, transcription, media pipelines
  • Next.js / React — RSC, App Router, cache components, Vercel platform
  • CLI design — agent-first interfaces, HATEOAS, terminal UIs
  • Knowledge management — Obsidian, digital gardens, PKM, zettelkasten
  • Self-hosted infra — homelab, k8s, Tailscale, NAS, local services
  • AT Protocol / Bluesky — decentralized web, PDS, lexicons
  • Convex — real-time database, reactive backends

CLI Commands

# List all monitored subscriptions
joelclaw subscribe list

# Add a subscription (auto-detects type from URL)
joelclaw subscribe add <url> --name "Simon Willison" --interval hourly
joelclaw subscribe add <url> --name "json-render" --type github --interval daily

# Remove a subscription
joelclaw subscribe remove <id>

# Force-check a specific subscription now
joelclaw subscribe check --id <id>

# Force-check all subscriptions
joelclaw subscribe check

# Show recent updates across all subscriptions
joelclaw subscribe summary

Direct Inngest Fallback (alternative)

# Add subscription via event
joelclaw send subscription/add -d '{
  "id": "simon-willison-blog",
  "name": "Simon Willison",
  "feedUrl": "https://simonwillison.net/atom/everything/",
  "type": "atom",
  "checkInterval": "hourly",
  "notify": true,
  "summarize": true,
  "publishToCool": false,
  "active": true
}'

# Force check all
joelclaw send subscription/check-feeds

# Check single
joelclaw send subscription/check-single -d '{"subscriptionId": "simon-willison-blog"}'

Subscription Types

TypeDetectionMethodBest For
atom / rssURL ends in /atom/, /feed/, /rss or has XML content-typeStandard feed parseBlogs, newsletters
githubgithub.com/<owner>/<repo>GitHub API (releases, commits)Open source projects
pageAny other URLContent hash diff via defuddleLiving documents, guides
blueskybsky.app or AT Protocol handleAT Protocol feedSocial/microblog

Auto-Detection Heuristics

When adding a subscription, detect the type:

  1. GitHub URLgithub type, check releases + significant commits
  2. URL with /atom/ or /feed/atom type
  3. URL with /rssrss type
  4. Blog root URL → try {url}/atom/, {url}/feed/, {url}/rss.xml before falling back to page
  5. Everything elsepage type (content hash diff)

How Updates Flow

Inngest cron (hourly) → subscription/check-feeds
  → fans out: subscription/check-single per subscription
    → fetch feed / API / page hash
    → new entries detected?
      → YES: subscription/summarize → LLM summary
        → gateway notification with [Publish to /cool] [Dismiss]
        → Joel approves → discovery/noted → vault note → /cool
      → NO: log quiet check, move on

Notification Format

Gateway notifications for feed updates include:

  • Source name and subscription type
  • Brief LLM summary of what changed
  • Entry count and links to significant items
  • Relevance tag (which interest areas it maps to)
  • Action buttons: [Publish to /cool] [Dismiss]

Adding from Discovery

When the discovery skill fires and the agent assesses the resource is monitorable, use MCQ to recommend:

After firing joelclaw discover:

1. Assess: Is this a blog, repo, or living page with ongoing updates?
2. Assess: Does it map to 2+ items in Joel's Interest Profile above?
3. If both yes → recommend monitoring via MCQ with brief reasoning
4. If monitorable but low relevance → mention it's monitorable but don't push
5. If not monitorable (one-shot article, tweet, etc.) → don't mention monitoring

Backend

  • Redis storage: joelclaw:subscriptions hash (lib at packages/system-bus/src/lib/subscriptions.ts)
  • Inngest functions: packages/system-bus/src/inngest/functions/subscriptions.ts
  • Feed checker: packages/system-bus/src/lib/feed-checker.ts
  • ADR: ~/Vault/docs/decisions/0127-feed-subscriptions-and-resource-monitoring.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.26%
按下载量换算87

Claude

29.3%
按下载量换算68

Cursor

21.49%
按下载量换算50

Gemini CLI

8.91%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/joelhooks/joelclaw --skill monitor 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills