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
Crawler Summary
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
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
Public facts
3
Change events
0
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 14, 2026
Vendor
Moikaslabs
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
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.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
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.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Moikaslabs
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
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
Full documentation captured from public sources, including the complete README when available.
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 GitHub access via command line. Already authenticated.
gh auth status
Current: ā
Authenticated as shalomolahs
Token: gho_************************************
Scopes: gist, read:org, repo
Config: /root/.config/gh/hosts.yml
Use gh when you need to:
# 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
# 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
# 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
# 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
# Direct API calls
gh api repos/MoikasLabs/repo-name/issues
gh api repos/MoikasLabs/repo-name/pulls
# 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
# 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
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."
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
MoikasLabs not moikaslabsrepo scope: gh auth statusgh auth status # Check current auth
gh auth refresh # Refresh token
gh auth login # Re-authenticate
# Force push (careful!)
git push --force-with-lease origin master
# Or update first
git pull origin master --rebase
git push origin master
NEVER merge directly to master. Always use Pull Request workflow.
ā WRONG: git checkout master && git merge feature/X && git push
ā
RIGHT: gh pr create ā gh pr review ā gh pr merge
# 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
| 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 |
# 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
# 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
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
Only bypass PR if:
# 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]"
# 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
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
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
# 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
git merge on local master ā always gh pr mergefeat:, fix:, docs:Already authenticated. Use PR workflow always. š
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
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"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
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
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
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
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
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
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
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.