ru-multi-repo-workflow
SolidUse when using ru for multi-repo commits, sync, GitHub review, or maintenance automation.
AI & Automation 389 stars
40 forks Updated today NOASSERTION
Install
Quality Score: 86/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# ru Multi-Repo Workflow
> **Core Insight:** ru automates the mechanical. Your job is judgment: substantive merge conflicts, scope creep decisions, canonical version selection. If it doesn't require human judgment, it should just happen.
## Quick Start
```bash
# Health check
ru doctor && gh auth status
# Phase 1: Commit dirty repos
ru status --json | jq '[.repos[] | select(.dirty)]' # Find dirty
cd /data/projects/REPO && cat AGENTS.md README.md # Understand
git add FILES && git commit -m "MSG" && git push # Commit
# Phase 2: Sync all repos
ru sync -j4 # Parallel sync
git log --oneline HEAD...origin/main # See divergence
# Phase 3: Review issues/PRs
ru review --dry-run # See open items
gh issue view NUMBER -R owner/repo # Investigate
# Phase 4: Release & Monitor (for repos with GH Actions)
ls .github/workflows/*.yml 2>/dev/null && echo "Has CI" # Detect
gh run list --limit 5 # Recent runs
gh run watch # Monitor live
```
---
## The 4 Phases
| Phase | Summary | Key Command |
|-------|---------|-------------|
| **1. Smart Commits** | Dirty repos → understand → commit logical groups → push | `ru status` |
| **2. Smart Sync** | Pull all → resolve conflicts (CAREFUL!) → canonical version → push | `ru sync -j4` |
| **3. Issue/PR Review** | Discover 2025+ → verify independen...
Details
- Author
- boshu2
- Repository
- boshu2/agentops
- Created
- 7 months ago
- Last Updated
- today
- Language
- Go
- License
- NOASSERTION
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
ru
Repo Updater - Multi-repo synchronization with AI-assisted review orchestration. Parallel sync, agent-sweep for dirty repos, ntm integration, git plumbing. 17K LOC Bash CLI.
353 Updated today
aiskillstore AI & Automation Listed
github-multi-repo
Multi-repository coordination, synchronization, and architecture management across many GitHub repos. Use when changes span several repositories, keeping repos in sync, or planning cross-repo architecture and dependency work.
15 Updated today
frankxai AI & Automation Solid
github-multi-repo
Multi-repository coordination, synchronization, and architecture management with AI swarm orchestration
59,062 Updated today
ruvnet