{
  "schemaVersion": "1.0",
  "item": {
    "slug": "nom-feed",
    "name": "Search recent repo activities",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/lws803/nom-feed",
    "canonicalUrl": "https://clawhub.ai/lws803/nom-feed",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/nom-feed",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nom-feed",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/nom-feed"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/nom-feed",
    "agentPageUrl": "https://openagent3.xyz/skills/nom-feed/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nom-feed/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nom-feed/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [],
    "body": "Fetch GitHub activity from Nom (beta.nomit.dev) and present it clearly.\n\nBase URL: https://beta.nomit.dev\n\n$ARGUMENTS parsing rules:\n\nIf the first argument looks like org/repo (contains /), use the repo feed at /api/feed/{org}/{repo}\nOtherwise use the global feed at /api/feed\n--search TEXT — free-text search (full-text on title/summary)\n--type TYPE — filter by event type: pull_request, issue, release, push\n--org ORG — filter by GitHub org (global feed only)\n--from DATE / --to DATE — date range (ISO 8601, e.g. 2026-01-01) (global feed only)\n--limit N — results to return (default 20, max 100)\n--rss — fetch RSS XML instead of JSON (repo feed: /api/feed/{org}/{repo}/rss; global: /api/feed/rss)\n\nBuild q for global feed by joining filters: e.g. type:pull_request org:vercel from:2026-01-01 plus any --search text.\n\nAPI endpoints (JSON):\n\nGlobal feed: GET /api/feed\nRepo feed: GET /api/feed/{org}/{repo}\n\nRSS endpoints (if --rss):\n\nGlobal: GET /api/feed/rss\nRepo: GET /api/feed/{org}/{repo}/rss\n\nUse curl to fetch the response. For JSON, present results as a clean readable summary. For each item show:\n\nEvent type label (PR / Issue / Release / Push)\nTitle as a markdown link to the URL\nOne-line AI summary\nAuthor and timestamp (relative if possible)\n\nResponse shape: { items: [...], pagination: { offset, limit, has_more } }. Each item has id, type, org, repo, title, summary, url, author, contributors, updated_at.\n\nExample output format:\n\n**PR** [Add turbo support](https://github.com/vercel/next.js/pull/123)\ntimneutkens · 2 hours ago\nAdds experimental Turbo support to the build pipeline, cutting build times by ~40%.\n\n**Release** [v14.2.0](https://github.com/vercel/next.js/releases/tag/v14.2.0)\nvercel-release-bot · 1 day ago\nMajor release introducing partial pre-rendering and improved image optimisation."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/lws803/nom-feed",
    "publisherUrl": "https://clawhub.ai/lws803/nom-feed",
    "owner": "lws803",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/nom-feed",
    "downloadUrl": "https://openagent3.xyz/downloads/nom-feed",
    "agentUrl": "https://openagent3.xyz/skills/nom-feed/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nom-feed/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nom-feed/agent.md"
  }
}