github
SolidGitHub operations — issues, PRs, commits, code search, CI/CD via gh CLI
AI & Automation 49 stars
8 forks Updated 1 months ago AGPL-3.0
Install
Quality Score: 80/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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 7 public tools (2026-06-23 facade)
🤖 Opened by arifOS_bot
PRBODY
)"
# Vi...
Details
- Author
- ariffazil
- Repository
- ariffazil/arifos
- Created
- 9 months ago
- Last Updated
- 1 months ago
- Language
- Python
- License
- AGPL-3.0
Integrates with
Related Skills
AI & Automation Featured
code-simplifier
Review RTK Rust code for idiomatic simplification. Detects over-engineering, unnecessary allocations, verbose patterns. Applies Rust idioms without changing behavior.
76,875 Updated today
rtk-ai AI & Automation Featured
design-patterns
Rust design patterns for RTK. Newtype, Builder, RAII, Trait Objects, State Machine. Applied to CLI filter modules. Use when designing new modules or refactoring existing ones.
76,875 Updated today
rtk-ai AI & Automation Featured
issue-triage
Issue triage: audit open issues, categorize, detect duplicates, cross-ref PRs, risk assessment, post comments. Args: "all" for deep analysis of all, issue numbers to focus (e.g. "42 57"), "en"/"fr" for language, no arg = audit only in French.
76,875 Updated today
rtk-ai