Crawler Summary

gh-cli answer-first brief

GitHub CLI wrapper - create repos, manage issues/PRs, check CI status. Already installed and authenticated. --- name: gh-cli version: 0.1.0 description: GitHub CLI wrapper - create repos, manage issues/PRs, check CI status. Already installed and authenticated. homepage: https://cli.github.com metadata: {"openclaw":{"emoji":"šŸ™","requires":{"bins":["gh"]},"category":"devops"}} --- GitHub CLI (gh) **Full GitHub access via command line. Already authenticated.** Status **Current:** āœ… Authenticated as shalomolahs **Token:** gho Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.

Freshness

Last checked 4/14/2026

Best For

gh-cli is best for general automation workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 94/100

gh-cli

GitHub CLI wrapper - create repos, manage issues/PRs, check CI status. Already installed and authenticated. --- name: gh-cli version: 0.1.0 description: GitHub CLI wrapper - create repos, manage issues/PRs, check CI status. Already installed and authenticated. homepage: https://cli.github.com metadata: {"openclaw":{"emoji":"šŸ™","requires":{"bins":["gh"]},"category":"devops"}} --- GitHub CLI (gh) **Full GitHub access via command line. Already authenticated.** Status **Current:** āœ… Authenticated as shalomolahs **Token:** gho

OpenClawself-declared

Public facts

3

Change events

0

Artifacts

0

Freshness

Apr 14, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 14, 2026

Vendor

Moikaslabs

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.

Setup snapshot

git clone https://github.com/MoikasLabs/gh-cli-skill.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Moikaslabs

profilemedium
Observed Apr 14, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 14, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

bash

gh auth status

bash

# Create new repo
gh repo create MoikasLabs/repo-name --public --description "What it does"

# Create and push local code
gh repo create MoikasLabs/repo-name --public --source=. --push

# Clone existing repo
gh repo clone MoikasLabs/existing-repo

# View repo in browser
gh repo view MoikasLabs/repo-name --web

bash

# Create issue
gh issue create --repo MoikasLabs/repo-name \
  --title "Feature: Add X" \
  --body "Details about the feature..."

# List issues
gh issue list --repo MoikasLabs/repo-name --limit 10

# View issue
gh issue view 42 --repo MoikasLabs/repo-name

bash

# Create PR
gh pr create --repo MoikasLabs/repo-name \
  --title "Add feature X" \
  --body "What changed and why..."

# Check PR status
gh pr status --repo MoikasLabs/repo-name

# View PR checks (CI)
gh pr checks 55 --repo MoikasLabs/repo-name

# Merge PR
gh pr merge 55 --repo MoikasLabs/repo-name --squash

bash

# List recent workflow runs
gh run list --repo MoikasLabs/repo-name --limit 10

# View specific run
gh run view 1234567890 --repo MoikasLabs/repo-name

# Watch live logs
gh run watch 1234567890 --repo MoikasLabs/repo-name

bash

# Direct API calls
gh api repos/MoikasLabs/repo-name/issues
gh api repos/MoikasLabs/repo-name/pulls

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

GitHub CLI wrapper - create repos, manage issues/PRs, check CI status. Already installed and authenticated. --- name: gh-cli version: 0.1.0 description: GitHub CLI wrapper - create repos, manage issues/PRs, check CI status. Already installed and authenticated. homepage: https://cli.github.com metadata: {"openclaw":{"emoji":"šŸ™","requires":{"bins":["gh"]},"category":"devops"}} --- GitHub CLI (gh) **Full GitHub access via command line. Already authenticated.** Status **Current:** āœ… Authenticated as shalomolahs **Token:** gho

Full README

name: gh-cli version: 0.1.0 description: GitHub CLI wrapper - create repos, manage issues/PRs, check CI status. Already installed and authenticated. homepage: https://cli.github.com metadata: {"openclaw":{"emoji":"šŸ™","requires":{"bins":["gh"]},"category":"devops"}}

GitHub CLI (gh)

Full GitHub access via command line. Already authenticated.

Status

gh auth status

Current: āœ… Authenticated as shalomolahs
Token: gho_************************************
Scopes: gist, read:org, repo
Config: /root/.config/gh/hosts.yml

When to Use This Skill

Use gh when you need to:

  • Create repositories (faster than web UI)
  • Push code to MoikasLabs org
  • Manage issues/PRs programmatically
  • Check CI status on PRs
  • Work with GitHub Actions

Quick Reference

Repositories

# Create new repo
gh repo create MoikasLabs/repo-name --public --description "What it does"

# Create and push local code
gh repo create MoikasLabs/repo-name --public --source=. --push

# Clone existing repo
gh repo clone MoikasLabs/existing-repo

# View repo in browser
gh repo view MoikasLabs/repo-name --web

Issues

# Create issue
gh issue create --repo MoikasLabs/repo-name \
  --title "Feature: Add X" \
  --body "Details about the feature..."

# List issues
gh issue list --repo MoikasLabs/repo-name --limit 10

# View issue
gh issue view 42 --repo MoikasLabs/repo-name

Pull Requests

# Create PR
gh pr create --repo MoikasLabs/repo-name \
  --title "Add feature X" \
  --body "What changed and why..."

# Check PR status
gh pr status --repo MoikasLabs/repo-name

# View PR checks (CI)
gh pr checks 55 --repo MoikasLabs/repo-name

# Merge PR
gh pr merge 55 --repo MoikasLabs/repo-name --squash

GitHub Actions

# List recent workflow runs
gh run list --repo MoikasLabs/repo-name --limit 10

# View specific run
gh run view 1234567890 --repo MoikasLabs/repo-name

# Watch live logs
gh run watch 1234567890 --repo MoikasLabs/repo-name

API Access

# Direct API calls
gh api repos/MoikasLabs/repo-name/issues
gh api repos/MoikasLabs/repo-name/pulls

Common Workflows

Create New Skill Repo

# In the skill directory
cd /root/dev/moikaslabs/new-skill

git init
git add .
git commit -m "Initial commit"

# Create repo on GitHub and push
gh repo create MoikasLabs/new-skill --public --source=. --push

Push Existing Code

# Already has git history
git remote add origin https://github.com/MoikasLabs/repo-name.git
git push -u origin master

# Or using gh shorthand
gh repo clone MoikasLabs/repo-name  # if starting fresh

Create Issue from Task

gh issue create --repo MoikasLabs/target-repo \
  --title "TASK: Implement team broadcast for custom roles" \
  --body "From team-orchestrator skill. Need to filter by role prefix."

Authentication Details

Account: shalomolahs (Shalom)
Org Access: MoikasLabs āœ… (via read:org scope)
Repo Permissions: Full (read/write) āœ…
Token Location: /root/.config/gh/hosts.yml

If auth expires:

gh auth login
# Or with token:
echo $GITHUB_TOKEN | gh auth login --with-token

Troubleshooting

"Repository not found"

  • Check org name: MoikasLabs not moikaslabs
  • Verify token has repo scope: gh auth status

"Authentication failed"

gh auth status        # Check current auth
gh auth refresh       # Refresh token
gh auth login         # Re-authenticate

Push rejected

# Force push (careful!)
git push --force-with-lease origin master

# Or update first
git pull origin master --rebase
git push origin master

🚦 Git Workflow Best Practices

NEVER merge directly to master. Always use Pull Request workflow.

The Rule

āŒ WRONG: git checkout master && git merge feature/X && git push
āœ… RIGHT:  gh pr create → gh pr review → gh pr merge

Feature Branch Workflow

# 1. Start from fresh master
git checkout master
git pull origin master

# 2. Create feature branch
git checkout -b feature/descriptive-name
git push -u origin feature/descriptive-name

# 3. Implement and commit
git add .
git commit -m "feat: Add specific feature"
git push origin feature/descriptive-name

# 4. Create Pull Request (NEVER skip this!)
gh pr create \
  --title "feat: Add dashboard component" \
  --body "## Changes
- Implementation details
- Testing notes" \
  --base master

# 5. Wait for review (self-review at minimum)
gh pr checks  # Ensure CI passes
gh pr view    # Review your own work

# 6. Merge via PR only
gh pr merge <number> --squash

# 7. Cleanup
git branch -d feature/descriptive-name
git push origin --delete feature/descriptive-name

PR Title Conventions

| Prefix | Use For | Example | |--------|---------|---------| | feat: | New feature | feat: Add session monitor | | fix: | Bug fix | fix: Resolve WebSocket reconnect | | docs: | Documentation | docs: Update README | | refactor: | Restructure | refactor: Extract components | | test: | Tests | test: Add unit tests |

Common PR Commands

# Create PR
git checkout feature/my-feature
git push origin feature/my-feature
gh pr create --title "feat: Add X" --base master

# Check PR status
gh pr status                    # All your PRs
gh pr checks 42                 # CI status for PR #42
gh pr view 42                   # View PR details

# Review and merge
gh pr diff 42                   # See changes
gh pr merge 42 --squash         # Merge (only via PR!)
gh pr merge 42 --squash --auto  # Auto-merge when CI passes

# List and manage
gh pr list --repo MoikasLabs/shalom-ui
gh pr close 42                  # Close without merging

Handling Merge Conflicts

# Update your feature branch with latest master
git checkout feature/my-feature
git fetch origin
git rebase origin/master

# Fix conflicts in files, then:
git add <resolved-files>
git rebase --continue
git push --force-with-lease origin feature/my-feature

Team Coordination with Agents

When spawning agents that will push code:

# Spawn with explicit PR requirement
team spawn cio --name "implement-fix" \
  --task "Implement fix in feature branch, create PR, DO NOT merge directly"

# Agent must report:
# - Branch: feature/fix-X
# - PR: #43 created
# - Ready for review

# You review and merge:
gh pr view 43
gh pr checks 43
gh pr merge 43 --squash

Emergency Exceptions (Document Why!)

Only bypass PR if:

  • CI/CD is completely down
  • Critical production hotfix needed NOW
  • Solo project with no reviewer available
# If you MUST merge directly (emergency only):
git checkout master
git merge --no-ff feature/hotfix -m "HOTFIX: Emergency merge PR #44 [reason]"
git push origin master

# Create retroactive PR for audit trail:
gh pr create --title "HOTFIX RETRO: [description]" \
  --body "Merged directly due to [emergency reason]"

Worktree + PR Integration

# Create isolated worktree for feature
git worktree add ../worktree/feature-X feature/descriptive-name
cd ../worktree/feature-X

# Implement in isolation
# Test independently
# Commit and push

# Create PR from worktree
git push origin feature/descriptive-name
cd /root/dev/shalom-ui  # Back to main repo
gh pr create --title "feat: Add X" --head feature/descriptive-name

# After PR merges, cleanup
git worktree remove ../worktree/feature-X
git branch -d feature/descriptive-name

Integration with Other Skills

After team-orchestrator creates code

cd /root/dev/moikaslabs/new-skill
./install.sh
git add -A
git commit -m "feat: Initial skill implementation"
git push -u origin master

# Create PR for review (even if solo)
gh pr create --title "feat: New team-orchestrator skill" --base main

Check CI before merging

gh pr checks 42 --repo MoikasLabs/shalom-ui
# All green? Merge:
gh pr merge 42 --repo MoikasLabs/shalom-ui --squash
team pr cleanup feature-name  # Delete branch and worktree

Automated PR creation from agent

# Agent creates PR after implementation
cd /root/dev/shalom-worktree/agent-work
git add -A
git commit -m "feat: Add component as specified"
git push origin feature/agent-work

# Create PR via gh CLI
gh pr create \
  --title "feat: $(git branch --show-current | sed 's/feature\///')" \
  --body "Implementation by $(whoami)
  
  ## Changes
  - $(git log --oneline -1 | cut -d' ' -f2-)
  
  ## Testing
  - [ ] Verified locally
  - [ ] Build passes" \
  --base master

# Report back: PR #X created, ready for review

Summary: The Golden Rules

  1. Never push to master directly — always via PR
  2. Never git merge on local master — always gh pr merge
  3. Self-review before requesting review — check your own diff
  4. Keep feature branches short-lived — merge within days, not weeks
  5. Delete branches after merge — keep repo clean
  6. Use conventional commits — feat:, fix:, docs:
  7. Document emergency exceptions — if you must bypass PR, explain why

Already authenticated. Use PR workflow always. šŸ™

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

Rank

70

AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents

Traction

No public download signal

Freshness

Updated 2d ago

OPENCLAW
GITHUB_REPOScherry-studio

Rank

70

AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs

Traction

No public download signal

Freshness

Updated 5d ago

MCPOPENCLAW
GITHUB_REPOSAionUi

Rank

70

Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!

Traction

No public download signal

Freshness

Updated 6d ago

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_OPENCLEW",
      "generatedAt": "2026-04-16T23:30:28.635Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}

Facts JSON

[
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Moikaslabs",
    "href": "https://cli.github.com",
    "sourceUrl": "https://cli.github.com",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:24:48.922Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:24:48.922Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/moikaslabs-gh-cli-skill/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[]

Sponsored

Ads related to gh-cli and adjacent AI workflows.