skills/_retired/ARCHIVE-github-ops/SKILL.md
Runbook for GitHub & Git operations across federation repos — commit workflow, PR ops, branch discipline.
npx skillsauth add ariffazil/openclaw-workspace github-opsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
ariffazil/arifOS — Constitutional kernel (Python 3.12+)
ariffazil/A-FORGE — Execution engine (TypeScript/Node.js)
ariffazil/GEOX — Earth intelligence (Python 3.11+)
ariffazil/wealth — Capital intelligence (Python 3.12+)
ariffazil/well — Vitality intelligence (Python 3.12+)
ariffazil/AAA — Control plane (TypeScript/React)
— — APEX (DECOMMISSIONED — deliberation moved to AAA)
— — HERMES (local only, no remote)
cd /root/<repo> && git status
cd /root/<repo> && git log --oneline -10
cd /root/<repo> && git diff
cd /root/<repo> && git remote -v
cd /root/<repo>
git status # what changed?
git diff # review changes
git add . # stage everything
git commit -m "feat: <what>" # commit
# NEVER: git push without ARIF confirmation
git branch # list branches
git checkout -b <name> # create and switch to new branch
git checkout main # switch back to main
gh issue list -R ariffazil/arifOS --state open --limit 20
gh pr list -R ariffazil/arifOS --state open
gh pr view -R ariffazil/arifOS <number>
# arifOS
cd /root/arifOS && pip install -e ".[dev]" && pytest tests/ -q
# A-FORGE
cd /root/A-FORGE && npm install && npm run build && npm test
# GEOX
cd /root/geox && pip install -e ".[dev]" && pytest tests/ -q
# WEALTH
cd /root/WEALTH && pip install -e . && python internal/monolith.py
# WELL
cd /root/WELL && pip install -e . && python test_well.py
# AAA
cd /root/AAA && npm install && npm run build && npm run lint
# HERMES
cd /root/HERMES && npm install && npm test
gh auth status
git push to main/mastergit push --forcegit rebasetesting
OpenClaw edge agent bridge — operational triage, doctor, restart, and A2A bridge routing for the federation edge (Telegram surface). USE WHEN: "openclaw unhealthy", "gateway down", "edge bot not responding", "a2a bridge disconnected", "watchdog tripped", "openclaw doctor", "openclaw restart". NOT for token/security audit — use FORGE-telegram-audit.
tools
Generate images, videos, TTS, voice clone, and music via MiniMax MCP server. Use when user asks to "draw", "generate image", "create picture", "make a photo", "text to image", "image generation".
testing
Single load-bearing constitutional-judgment skill. Routes all F1–F13, verdict, hold, seal, scope, authority and floor-check calls through the live arif_judge surface. Replaces 7 overlapping predecessors (arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge).
development
MANDATORY LSP grounding gate BEFORE any code mutation on .ts, .py, .js, .tsx, .jsx files. Forces the agent to read real-time compiler diagnostics and structural project context before editing — eliminating blind guesses and anchoring every mutation in F2 (TRUTH). Routes through arifOS kernel (:8088) for centralized gate logic.