test display name

v1.0.0

Interact with GitHub using the gh CLI to check PR CI status, view workflow runs and logs, and perform advanced API queries with JSON output.

0· 148·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for xdlrt/yeshutest.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "test display name" (xdlrt/yeshutest) from ClawHub.
Skill page: https://clawhub.ai/xdlrt/yeshutest
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install yeshutest

ClawHub CLI

Package manager switcher

npx clawhub@latest install yeshutest
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The SKILL.md describes interacting with GitHub via the gh CLI, which matches the skill name/description. However, the skill does not declare the gh binary as a required dependency even though all commands use it — the binary requirement is implied but not declared.
Instruction Scope
Instructions are limited to running gh commands against repositories, PRs, runs, and the API. They don't instruct reading arbitrary files, scanning unrelated system state, or sending data to external endpoints other than GitHub via gh.
Install Mechanism
No install spec is present (instruction-only), so nothing is written to disk by the skill itself. This is the lowest-risk install pattern and is consistent with the skill's minimal scope.
Credentials
The skill declares no required environment variables or primary credential, but using gh requires the user/agent to be authenticated to GitHub (gh uses stored credentials or GH_TOKEN). The SKILL.md does not explain authentication expectations. This implicit credential requirement is proportional but should be made explicit to users.
Persistence & Privilege
The skill does not request persistent presence (always is false) and contains no code that would modify agent configuration or other skills. Autonomous invocation is allowed by default, which is normal for skills and not a problem here.
Assessment
This skill is basically a set of recipes for using the gh CLI. Before installing/using it: (1) ensure the gh CLI is installed on any agent that will run it; (2) ensure the gh client is authenticated with appropriate GitHub credentials/tokens (use least privilege scopes); (3) verify the skill source/owner (there's a mismatch in the small metadata file vs. registry metadata — confirm the publisher you trust); (4) avoid granting broader tokens than needed since gh api calls can access many repo/org resources; and (5) you can test commands manually on a non-sensitive repo to confirm behavior before enabling autonomous runs.

Like a lobster shell, security has layers — review code before you run it.

latestvk97aprwg3d821kcm8103vbjzp583tygm
148downloads
0stars
1versions
Updated 4w ago
v1.0.0
MIT-0

GitHub Skill

Use the gh CLI to interact with GitHub. Always specify --repo owner/repo when not in a git directory, or use URLs directly.

Pull Requests

Check CI status on a PR:

gh pr checks 55 --repo owner/repo

List recent workflow runs:

gh run list --repo owner/repo --limit 10

View a run and see which steps failed:

gh run view <run-id> --repo owner/repo

View logs for failed steps only:

gh run view <run-id> --repo owner/repo --log-failed

API for Advanced Queries

The gh api command is useful for accessing data not available through other subcommands.

Get PR with specific fields:

gh api repos/owner/repo/pulls/55 --jq '.title, .state, .user.login'

JSON Output

Most commands support --json for structured output. You can use --jq to filter:

gh issue list --repo owner/repo --json number,title --jq '.[] | "\(.number): \(.title)"'

Comments

Loading comments...