Setup & Installation

Install Pipeworx github using the ClawHub CLI or OpenClaw CLI:

clawhub install pipeworx-github

If the CLI is not installed:

npx clawhub@latest install pipeworx-github

Or install with OpenClaw CLI:

openclaw skills install pipeworx-github

View on ClawHub · View on GitHub

What This Skill Does

Pipeworx github is a Software Development skill for OpenClaw by b-gutman.

GitHub

Search repositories by keyword, get detailed repo metadata (stars, forks, language, license), browse open issues, and look up user profiles. Uses the public GitHub REST API — no authentication token needed for public data.

Tools

  • search_repos — Search repositories by keyword, optionally sorted by stars, forks, or updated date
  • get_repo — Full details for a specific repo by owner/name (e.g., "facebook/react")
  • list_repo_issues — Open, closed, or all issues for a repository
  • get_user — Public profile for a GitHub username (e.g., "torvalds")

Scenarios

  • "Find the most starred Go CLI tools on GitHub" — search with "cli tool language:go", sort by stars
  • Checking a project's issue count and latest activity
  • Looking up a contributor's profile and public repos
  • Building a project discovery feature based on topic or language

Example: search for React-related repos

curl -s -X POST https://gateway.pipeworx.io/github/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_repos","arguments":{"query":"react hooks","sort":"stars","limit":5}}}'

Each result includes: name, full_name, description, stars, forks, language, license, and URL.

MCP config

{
  "mcpServers": {
    "pipeworx-github": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/github/mcp"]
    }
  }
}

Rate limits

Unauthenticated GitHub API requests are limited to 60/hour per IP. For heavier use, consider authenticated access through GitHub's own MCP server.

Version History

Latest version: 1.0.0

First published: Apr 8, 2026. Last updated: Apr 8, 2026.

1 version released.

Frequently Asked Questions

Is Pipeworx github free to use?
Yes. Pipeworx github is a free, open-source skill available on the OpenClaw Skills Registry. You can install and use it at no cost, and the source code is publicly available for review and contribution.
What languages/platforms does Pipeworx github support?
It runs on any platform that supports OpenClaw, including macOS, Linux, and Windows. As long as you have the OpenClaw runtime installed, Pipeworx github will work seamlessly across operating systems.
How do I update Pipeworx github?
Run openclaw skills update pipeworx-github to get the latest version. OpenClaw will download and apply the update automatically, preserving your existing configuration.
Can I use Pipeworx github with other skills?
Yes. OpenClaw skills are composable — you can combine Pipeworx github with any other installed skill in your workflows. This allows you to build powerful multi-step automations by chaining skills together.