بنقرة واحدة
github
GitHub operations via gh CLI (PRs, Issues, CI checks, API queries). Not for local git operations.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
GitHub operations via gh CLI (PRs, Issues, CI checks, API queries). Not for local git operations.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
Translate a web page while preserving its original DOM structure, CSS, and images. Generates a self-contained bilingual preview HTML with toggle controls. Use this skill whenever the user shares a URL and asks for translation, translated preview, bilingual view, or when the channel topic instructs to use translate-preview. Do NOT write your own translation scripts — always use this skill's reference files.
Job scheduling. Manage recurring tasks using MCP tools.
Generate a prioritized daily briefing with calendar, email, tasks, and yesterday's activity. Designed for cron execution. Trigger with "morning briefing", "daily brief", "start my day".
Self-management via geminiclaw_admin MCP tool. Config, skills, upgrade, sessions.
Proactively explore the web for topics matching the user's interests and share findings conversationally. Designed for cron execution with Flash model.
استنادا إلى تصنيف SOC المهني
| name | github |
| description | GitHub operations via gh CLI (PRs, Issues, CI checks, API queries). Not for local git operations. |
| enabled | true |
Operate on GitHub repository PRs, Issues, and CI using the gh CLI.
Execute via run_shell_command.
✅ Use for:
❌ Do not use for:
git directlygit clonegh auth login
gh auth status
# List
gh pr list --repo owner/repo
# Check CI status
gh pr checks 55 --repo owner/repo
# View details
gh pr view 55 --repo owner/repo
# Create
gh pr create --title "feat: add feature" --body "Description..."
# Merge
gh pr merge 55 --squash --repo owner/repo
# List
gh issue list --repo owner/repo --state open
# Create
gh issue create --title "Bug: description of the issue" --body "Details..."
# Close
gh issue close 42 --repo owner/repo
# List recent runs
gh run list --repo owner/repo --limit 10
# View a specific run
gh run view <run-id> --repo owner/repo
# Show logs for failed steps only
gh run view <run-id> --repo owner/repo --log-failed
# Rerun failed jobs
gh run rerun <run-id> --failed --repo owner/repo
# Get PR information
gh api repos/owner/repo/pulls/55 --jq '.title, .state, .user.login'
# List labels
gh api repos/owner/repo/labels --jq '.[].name'
# Repository statistics
gh api repos/owner/repo --jq '{stars: .stargazers_count, forks: .forks_count}'
gh issue list --repo owner/repo --json number,title --jq '.[] | "\(.number): \(.title)"'
gh pr list --json number,title,state,mergeable --jq '.[] | select(.mergeable == "MERGEABLE")'
--repo owner/repo when outside a git directorygh pr view https://github.com/owner/repo/pull/55gh api --cache 1h to cache repeated queries