{"skill":{"slug":"god-mode","displayName":"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.","summary":"Developer oversight and AI agent coaching. Use when viewing project status across repos, syncing GitHub data, or analyzing agents.md against commit patterns.","description":"---\r\nname: god-mode\r\ndescription: Developer oversight and AI agent coaching. Use when viewing project status across repos, syncing GitHub data, or analyzing agents.md against commit patterns.\r\nmetadata: {\"openclaw\": {\"requires\": {\"bins\": [\"gh\", \"sqlite3\", \"jq\"]}}}\r\nuser-invocable: true\r\n---\r\n\r\n# god-mode Skill\r\n\r\n> Developer oversight and AI agent coaching for OpenClaw.\r\n\r\n## Overview\r\n\r\n**god-mode** gives you a bird's-eye view of all your coding projects and coaches you to write better AI agent instructions.\r\n\r\n**Key features:**\r\n- Multi-project status dashboard\r\n- Incremental sync from GitHub (Azure/GitLab coming)\r\n- Agent instruction analysis based on commit patterns\r\n- Local SQLite cache for fast queries\r\n\r\n## Quick Start\r\n\r\n```bash\r\n# First-run setup\r\ngod setup\r\n\r\n# Add a project\r\ngod projects add github:myuser/myrepo\r\n\r\n# Sync data\r\ngod sync\r\n\r\n# See overview\r\ngod status\r\n\r\n# Analyze your agents.md\r\ngod agents analyze myrepo\r\n```\r\n\r\n## Commands\r\n\r\n### `god status [project]`\r\nShow overview of all projects, or details for one:\r\n```bash\r\ngod status              # All projects\r\ngod status myproject    # One project in detail\r\n```\r\n\r\n### `god sync [project] [--force]`\r\nFetch/update data from repositories:\r\n```bash\r\ngod sync                # Incremental sync all\r\ngod sync myproject      # Just one project\r\ngod sync --force        # Full refresh (ignore cache)\r\n```\r\n\r\n### `god projects`\r\nManage configured projects:\r\n```bash\r\ngod projects                        # List all\r\ngod projects add github:user/repo   # Add project\r\ngod projects remove myproject       # Remove project\r\n```\r\n\r\n### `god agents analyze <project>`\r\nAnalyze agents.md against commit history:\r\n```bash\r\ngod agents analyze myproject\r\n```\r\n\r\nFinds gaps between your agent instructions and actual work patterns, suggests improvements.\r\n\r\n### `god agents generate <project>` (Coming Soon)\r\nBootstrap agents.md for a new project by analyzing repo structure.\r\n\r\n## Configuration\r\n\r\nConfig file: `~/.config/god-mode/config.yaml`\r\n\r\n```yaml\r\nprojects:\r\n  - id: github:user/repo\r\n    name: My Project      # Display name\r\n    priority: high        # high/medium/low\r\n    tags: [work, api]\r\n    local: ~/code/myrepo  # Local clone path\r\n\r\nsync:\r\n  initialDays: 90         # First sync lookback\r\n  commitsCacheMinutes: 60\r\n\r\nanalysis:\r\n  agentFiles:             # Files to search for\r\n    - agents.md\r\n    - AGENTS.md\r\n    - CLAUDE.md\r\n    - .github/copilot-instructions.md\r\n```\r\n\r\n## Data Storage\r\n\r\nAll data stored locally in `~/.god-mode/`:\r\n- `cache.db` - SQLite database (commits, PRs, issues, analyses)\r\n- `contexts/` - Saved workspace contexts (v0.2)\r\n\r\n## Authentication\r\n\r\ngod-mode uses your existing CLI authentication:\r\n\r\n| Provider | CLI | Setup |\r\n|----------|-----|-------|\r\n| GitHub | `gh` | `gh auth login` |\r\n| Azure | `az` | `az login` |\r\n| GitLab | `glab` | `glab auth login` |\r\n\r\n**No tokens stored by god-mode.** We delegate to CLIs you already trust.\r\n\r\n## Requirements\r\n\r\n- `gh` - GitHub CLI (for GitHub repos)\r\n- `sqlite3` - Database\r\n- `jq` - JSON processing\r\n\r\n## Examples\r\n\r\n### Morning Check-In\r\n```bash\r\ngod status\r\n# See all projects at a glance\r\n# Notice any stale PRs or quiet projects\r\n```\r\n\r\n### Before Switching Projects\r\n```bash\r\ngod status myproject\r\n# See recent activity, open PRs, issues\r\n# Remember where you left off\r\n```\r\n\r\n### Improving Your AI Assistant\r\n```bash\r\ngod agents analyze myproject\r\n# Get suggestions based on your actual commit patterns\r\n# Apply recommendations to your agents.md\r\n```\r\n\r\n### Weekly Review\r\n```bash\r\ngod status\r\n# Review activity across all projects\r\n# Identify projects needing attention\r\n```\r\n\r\n## Agent Workflows\r\n\r\n### Daily Briefing (Heartbeat)\r\n```markdown\r\n# HEARTBEAT.md\r\n- Run `god status` and summarize:\r\n  - Projects with stale PRs (>3 days)\r\n  - Projects with no activity (>5 days)\r\n  - Open PRs needing review\r\n```\r\n\r\n### Agent Analysis (Cron)\r\n```yaml\r\n# Weekly agent instruction review\r\nschedule: \"0 9 * * 1\"  # Monday 9am\r\ntask: |\r\n  Run `god agents analyze` on high-priority projects.\r\n  If gaps found, notify with suggestions.\r\n```\r\n\r\n## Troubleshooting\r\n\r\n### \"gh: command not found\"\r\nInstall GitHub CLI: https://cli.github.com/\r\n\r\n### \"Not logged in to GitHub\"\r\nRun: `gh auth login`\r\n\r\n### \"No projects configured\"\r\nAdd a project: `god projects add github:user/repo`\r\n\r\n### Stale data\r\nForce refresh: `god sync --force`\r\n\r\n---\r\n\r\n*OpenClaw Community Skill*  \r\n*License: MIT*  \r\n*Repository: https://github.com/InfantLab/god-mode-skill*\r\n","tags":{"latest":"0.1.0"},"stats":{"comments":0,"downloads":3403,"installsAllTime":129,"installsCurrent":17,"stars":1,"versions":1},"createdAt":1769957202407,"updatedAt":1778485946485},"latestVersion":{"version":"0.1.0","createdAt":1769957202407,"changelog":"god-mode 0.1.0 – Initial Release\n\n- Provides a unified dashboard for developer oversight across multiple coding projects.\n- Syncs and analyzes GitHub data with local SQLite caching for fast project status queries.\n- Analyzes agent instructions (agents.md) against commit history and suggests improvements.\n- Command-line interface for project management, sync, and AI agent coaching.\n- Requires GitHub CLI (gh), sqlite3, and jq.\n- No token storage; delegates authentication to trusted CLIs.","license":null},"metadata":{"setup":[],"os":null,"systems":null},"owner":{"handle":"infantlab","userId":"s17d4xh46ehmy78a819z65b1kn884e9s","displayName":"InfantLab","image":"https://avatars.githubusercontent.com/u/497993?v=4"},"moderation":null}