Setup & Installation
Install Pipeworx github using the ClawHub CLI or OpenClaw CLI:
clawhub install pipeworx-githubIf the CLI is not installed:
npx clawhub@latest install pipeworx-githubOr install with OpenClaw CLI:
openclaw skills install pipeworx-githubWhat 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 dateget_repo— Full details for a specific repo by owner/name (e.g., "facebook/react")list_repo_issues— Open, closed, or all issues for a repositoryget_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?
What languages/platforms does Pipeworx github support?
How do I update Pipeworx github?
openclaw skills update pipeworx-github to get the latest version. OpenClaw will download and apply the update automatically, preserving your existing configuration.