| name | github |
| description | GitHub operations — issues, PRs, commits, code search, CI/CD via gh CLI |
| user-invocable | true |
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
gh issue list -R ariffazil/arifOS --state open --limit 20
gh issue create -R ariffazil/arifOS \
--title "Title here" \
--body "Description" \
--label "bug"
gh issue view 42 -R ariffazil/arifOS
gh issue close 42 -R ariffazil/arifOS --comment "Fixed in commit abc123"
gh issue list -R ariffazil/arifOS --search "floor enforcement"
Pull Requests
gh pr list -R ariffazil/arifOS --state open
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 7 public tools (2026-06-23 facade)
🤖 Opened by arifOS_bot
PRBODY
)"
gh pr view 12 -R ariffazil/arifOS
gh pr merge 12 -R ariffazil/arifOS --squash --delete-branch
Code Search
gh search code "constitutional_decorator" --owner ariffazil
gh search code "seal_vault" -R ariffazil/arifOS
gh api "repos/ariffazil/arifOS/contents/" | jq '.[].name'
gh api "search/code?q=repo:ariffazil/arifOS+THRESHOLDS" | jq '.items[].path'
CI/CD — Workflow Runs
gh run list -R ariffazil/arifOS --limit 10
gh run view <run-id> -R ariffazil/arifOS
gh run watch <run-id> -R ariffazil/arifOS
gh run rerun <run-id> -R ariffazil/arifOS --failed
gh workflow run deploy.yml -R ariffazil/arifOS
Commits & Branches
gh api repos/ariffazil/arifOS/commits | jq '.[:5][] | {sha: .sha[:8], message: .commit.message, date: .commit.author.date}'
cd /mnt/arifos && git checkout -b feature/my-feature
cd /mnt/arifos
git remote set-url origin https://github.com/ariffazil/arifOS.git
git push origin feature/my-feature
gh api repos/ariffazil/arifOS/branches | jq '.[].name'
Releases & Tags
gh release list -R ariffazil/arifOS
gh release create v2026.3.1 -R ariffazil/arifOS \
--title "arifOS v2026.3.1" \
--notes "Release notes here" \
--target main
gh release download v2026.3.1 -R ariffazil/arifOS
Notifications & Activity
gh api notifications | jq '.[] | {repo: .repository.name, reason: .reason, title: .subject.title}'
gh api repos/ariffazil/arifOS/events --paginate | jq '.[:5][] | {type, actor: .actor.login}'
Quick Shortcuts
gh repo view ariffazil/arifOS --json name,description,stargazerCount,openIssuesCount,defaultBranchRef
gh repo view ariffazil/arifOS --web
gh repo clone ariffazil/SOME-REPO /mnt/some-repo
Constitution Note (F1/F11)
- PRs and issues are reversible — create freely.
- Force-pushing to
main requires F13 confirmation.
- Deleting branches with unmerged work → 888_HOLD.
- Never commit
.env, openclaw.json, or credential files.
arifOS_bot — GitHub skill via gh CLI v2.63.1