⚠️ Archived (March 2026) — This project is no longer actively maintained.The agent orchestration space has matured significantly. For active alternatives, see:
- agent-orchestrator — parallel agents, CI fixes, PR reviews
- ai-maestro — multi-machine agent dashboard
- awesome-agent-orchestrators — curated list
For simple repo status tracking, the
ghCLI does the job.
🔭 God's eye view of your dev repos. Multi-project tracking across GitHub/Azure DevOps. AI learns from your commits to upgrade your agents.md.
god-mode is an OpenClaw skill that gives you:
- Project Overview - See all your repos at a glance (commits, PRs, issues)
- Agent Coaching - Automatically improve your
agents.mdbased on commit patterns
You're juggling multiple projects. You use AI coding assistants but your agents.md instructions are generic or outdated. You lose context when switching between repos.
# See everything at once
$ god status
🔭 god-mode
tandem-evaluator
Last: 2h ago • fix: evaluation metrics
PRs: 2 open (1 needs review) • Issues: 5
tada
Last: 1d ago • feat: API endpoints
PRs: 0 • Issues: 3
This week: 23 commits • 3 PRs merged
# Make your AI assistant smarter
$ god agents analyze tandem-evaluator
🧠 Analyzing tandem-evaluator...
⚠️ GAPS FOUND
Testing (not mentioned)
But 31% of your commits touch tests
→ Add: "Write tests for new code"
📝 SUGGESTED ADDITIONS
## Testing
- Unit tests for all new functions
- Run `npm test` before commitsgh- GitHub CLI (authenticated)sqlite3- Usually pre-installedjq-brew install jqorapt install jq
# OpenClaw will auto-install when you use it
# Or manually via ClawHub: https://www.clawhub.ai/InfantLab/god-mode# Quick install
curl -fsSL https://raw.githubusercontent.com/InfantLab/god-mode-skill/main/install.sh | bash
# Or clone manually
git clone https://github.com/InfantLab/god-mode-skill
cd god-mode-skill
chmod +x scripts/god
ln -s $(pwd)/scripts/god ~/.local/bin/god
# Setup
god setup# 1. Add your first project
god projects add github:yourname/yourrepo
# 2. Sync data
god sync
# 3. See the overview
god status
# 4. Analyze your agents.md
god agents analyze yourrepo| Command | Description |
|---|---|
god status |
Overview of all projects |
god status <project> |
Details for one project |
god sync |
Fetch latest data from repos |
god sync --force |
Full refresh (ignore cache) |
god review |
Monthly activity review (last month) |
god review --month YYYY-MM |
Review specific month |
god projects |
List configured projects |
god projects add <uri> |
Add a project |
god agents analyze <project> |
Improve your agents.md |
god logs |
View activity logs |
~/.config/god-mode/config.yaml:
projects:
- id: github:myuser/myrepo
name: My Project
priority: high
tags: [work, api]
local: ~/code/myrepo
sync:
initialDays: 90
commitsCacheMinutes: 60See config.example.yaml for all options.
- Reads your
agents.md(or similar file) - Analyzes your commit history (types, patterns, pain points)
- Finds gaps between instructions and actual work
- Suggests improvements based on your patterns
Example insights:
- "You write lots of tests but don't mention testing in agents.md"
- "40% of commits are error-handling fixes - add error handling guidance"
- "Your 'use TypeScript strict' instruction is working - 0 type errors"
Track your progress with automatic monthly summaries:
$ god review --month 2026-01
📊 Monthly Review: 2026-01
Total Activity
286 commits across 7 projects
👥 10 unique contributors
Most Active Projects
tada - 155 commits
brain - 27 commits
Pull Requests
✓ 84 merged
◐ 3 activeUse cases:
- Monthly retrospectives
- Team stand-ups
- Quarterly planning
- Automated reports via cron
- All data stored locally in
~/.god-mode/ - No tokens stored - uses your existing
ghauth - No telemetry - nothing phones home
- Open source - audit the code yourself
- Project status overview (sorted by activity)
- GitHub + Azure DevOps integration
- Incremental sync with SQLite cache (90-day window)
- LLM-powered agent instruction analysis
- OpenClaw integration mode
- Monthly activity reviews
- Interactive recommendation application
- Activity logging for transparency
- JSON output for all commands
- Context save/restore
- Activity summaries (
god today,god week) -
god agents generatefor bootstrapping new projects - Month-over-month trend analysis
- Contributor spotlight in reviews
- Agent analysis caching command
- GitLab support
- Proactive alerts via OpenClaw heartbeat
- Cross-repository insights
- Health scoring for projects
- Cross-project intelligence
- Integration ecosystem (Obsidian, etc.)
- Multi-team support
Contributions welcome! Each command is a standalone script - easy to add features.
# Structure
scripts/
├── god # Entry point
├── commands/
│ ├── status.sh # god status
│ ├── sync.sh # god sync
│ ├── projects.sh # god projects
│ └── agents.sh # god agents
└── lib/
├── providers/ # GitHub, Azure, GitLab
└── analysis/ # Commit patterns, agent analysisSee HANDOVER.md for architecture details.
MIT - see LICENSE
Created by InfantLab for the OpenClaw community.
"Know what's happening. Make your AI smarter."