← ClaudeAtlas

githublisted

GitHub operations — issues, PRs, commits, code search, CI/CD via gh CLI
ariffazil/arifos · ★ 45 · AI & Automation · score 80
Install: claude install-skill ariffazil/arifos
# GitHub Skill — arifOS_bot Triggers: "github", "open issue", "create pr", "pull request", "gh", "ci", "workflow", "code search", "repo", "commit history", "check runs", "release" Authenticated as: `ariffazil` via `GH_TOKEN` (gh CLI, HTTPS protocol) --- ## Repos You Own | Repo | Path on VPS | Purpose | |------|-------------|---------| | `ariffazil/arifOS` | `/mnt/arifos` | Main constitutional kernel | | `ariffazil/openclaw-workspace` | `~/.openclaw/workspace` | This workspace (backed up nightly) | | `ariffazil/APEX-THEORY` | `/mnt/apex` | Thermodynamic AI theory | | `ariffazil/AGI_ASI_bot` | remote only | Telegram bot source | --- ## Issues ```bash # List open issues gh issue list -R ariffazil/arifOS --state open --limit 20 # Create issue gh issue create -R ariffazil/arifOS \ --title "Title here" \ --body "Description" \ --label "bug" # View issue gh issue view 42 -R ariffazil/arifOS # Close issue with comment gh issue close 42 -R ariffazil/arifOS --comment "Fixed in commit abc123" # Search issues gh issue list -R ariffazil/arifOS --search "floor enforcement" ``` ## Pull Requests ```bash # List open PRs gh pr list -R ariffazil/arifOS --state open # Create PR (from current branch) cd /mnt/arifos gh pr create \ --title "feat: description" \ --body "$(cat <<'PRBODY' ## Summary - What changed and why ## Test plan - [ ] pytest tests/ -v passes - [ ] arifos health returns 13 tools 🤖 Opened by arifOS_bot PRBODY )" # View PR gh pr view 12 -R ari