LaunchKit · 2026
Back to Skills

nom-feed

Fetch recent GitHub activity from the Nom feed.

0
384 downloads
by @lws803

Setup & Installation

openclaw skills install @lws803/nom-feed

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install nom-feed

What This Skill Does

Fetches GitHub activity from the Nom feed (beta.nomit.dev), covering pull requests, issues, releases, and pushes. Supports filtering by repository, organization, event type, date range, and free-text search. Output can be a formatted readable summary or raw RSS XML.

Provides a unified, filterable view of GitHub activity across repos and orgs without requiring a GitHub API token or authentication setup.

When to use it

  • Checking recent PRs merged in a specific repo
  • Monitoring all open-source activity from a GitHub org
  • Searching for release events across multiple projects
  • Subscribing to a repo activity RSS feed
  • Reviewing what changed in a project over a specific date range

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Show me recent pull requests from vercel/next.js

AGENT
  1. 1Parse the argument as org/repo format containing a slash
  2. 2Build the repo feed URL: https://beta.nomit.dev/api/feed/vercel/next.js with query param type:pull_request
  3. 3Fetch the JSON response using curl
  4. 4Parse each item from the items array
  5. 5Format each result with event type label, markdown link, one-line summary, author, and relative timestamp
OUTPUT

A list of recent PRs from vercel/next.js with titles linked to GitHub, author names, timestamps, and AI-generated one-line summaries