Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
joelhooks avatar

Monitor

  • 34 installs
  • 61 repo stars
  • Updated August 4, 2026
  • joelhooks/joelclaw

Manage feed subscriptions that track blogs, repos, and living pages for changes, with an Inngest cron that summarizes updates and notifies via gateway.

About

Adds, lists, and removes feed subscriptions and assesses whether a resource is worth monitoring against an interest profile. A developer uses it to track repos, blogs, or pages for updates.

  • joelclaw subscribe add/list/remove with auto-detected type and interval
  • Interest profile guides monitoring recommendations from the discovery skill

Monitor by the numbers

  • 34 all-time installs (skills.sh)
  • Ranked #1,187 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/joelhooks/joelclaw --skill monitor

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs34
repo stars61
Last updatedAugust 4, 2026
Repositoryjoelhooks/joelclaw

What it does

Manage feed subscriptions that track blogs, repos, and living pages for changes, with an Inngest cron that summarizes updates and notifies via gateway.

Files

SKILL.mdMarkdownGitHub ↗

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 `/rss`rss 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

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.