← Back to Skills Marketplace
infantlab

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.

by InfantLab · GitHub ↗ · v0.1.0
cross-platform ✓ Security Clean
3004
Downloads
1
Stars
15
Active Installs
1
Versions
Install in OpenClaw
/install god-mode
Description
Developer oversight and AI agent coaching. Use when viewing project status across repos, syncing GitHub data, or analyzing agents.md against commit patterns.
README (SKILL.md)

\r \r

god-mode Skill\r

\r

Developer oversight and AI agent coaching for OpenClaw.\r \r

Overview\r

\r god-mode gives you a bird's-eye view of all your coding projects and coaches you to write better AI agent instructions.\r \r Key features:\r

  • Multi-project status dashboard\r
  • Incremental sync from GitHub (Azure/GitLab coming)\r
  • Agent instruction analysis based on commit patterns\r
  • Local SQLite cache for fast queries\r \r

Quick Start\r

\r

# First-run setup\r
god setup\r
\r
# Add a project\r
god projects add github:myuser/myrepo\r
\r
# Sync data\r
god sync\r
\r
# See overview\r
god status\r
\r
# Analyze your agents.md\r
god agents analyze myrepo\r
```\r
\r
## Commands\r
\r
### `god status [project]`\r
Show overview of all projects, or details for one:\r
```bash\r
god status              # All projects\r
god status myproject    # One project in detail\r
```\r
\r
### `god sync [project] [--force]`\r
Fetch/update data from repositories:\r
```bash\r
god sync                # Incremental sync all\r
god sync myproject      # Just one project\r
god sync --force        # Full refresh (ignore cache)\r
```\r
\r
### `god projects`\r
Manage configured projects:\r
```bash\r
god projects                        # List all\r
god projects add github:user/repo   # Add project\r
god projects remove myproject       # Remove project\r
```\r
\r
### `god agents analyze \x3Cproject>`\r
Analyze agents.md against commit history:\r
```bash\r
god agents analyze myproject\r
```\r
\r
Finds gaps between your agent instructions and actual work patterns, suggests improvements.\r
\r
### `god agents generate \x3Cproject>` (Coming Soon)\r
Bootstrap agents.md for a new project by analyzing repo structure.\r
\r
## Configuration\r
\r
Config file: `~/.config/god-mode/config.yaml`\r
\r
```yaml\r
projects:\r
  - id: github:user/repo\r
    name: My Project      # Display name\r
    priority: high        # high/medium/low\r
    tags: [work, api]\r
    local: ~/code/myrepo  # Local clone path\r
\r
sync:\r
  initialDays: 90         # First sync lookback\r
  commitsCacheMinutes: 60\r
\r
analysis:\r
  agentFiles:             # Files to search for\r
    - agents.md\r
    - AGENTS.md\r
    - CLAUDE.md\r
    - .github/copilot-instructions.md\r
```\r
\r
## Data Storage\r
\r
All data stored locally in `~/.god-mode/`:\r
- `cache.db` - SQLite database (commits, PRs, issues, analyses)\r
- `contexts/` - Saved workspace contexts (v0.2)\r
\r
## Authentication\r
\r
god-mode uses your existing CLI authentication:\r
\r
| Provider | CLI | Setup |\r
|----------|-----|-------|\r
| GitHub | `gh` | `gh auth login` |\r
| Azure | `az` | `az login` |\r
| GitLab | `glab` | `glab auth login` |\r
\r
**No tokens stored by god-mode.** We delegate to CLIs you already trust.\r
\r
## Requirements\r
\r
- `gh` - GitHub CLI (for GitHub repos)\r
- `sqlite3` - Database\r
- `jq` - JSON processing\r
\r
## Examples\r
\r
### Morning Check-In\r
```bash\r
god status\r
# See all projects at a glance\r
# Notice any stale PRs or quiet projects\r
```\r
\r
### Before Switching Projects\r
```bash\r
god status myproject\r
# See recent activity, open PRs, issues\r
# Remember where you left off\r
```\r
\r
### Improving Your AI Assistant\r
```bash\r
god agents analyze myproject\r
# Get suggestions based on your actual commit patterns\r
# Apply recommendations to your agents.md\r
```\r
\r
### Weekly Review\r
```bash\r
god status\r
# Review activity across all projects\r
# Identify projects needing attention\r
```\r
\r
## Agent Workflows\r
\r
### Daily Briefing (Heartbeat)\r
```markdown\r
# HEARTBEAT.md\r
- Run `god status` and summarize:\r
  - Projects with stale PRs (>3 days)\r
  - Projects with no activity (>5 days)\r
  - Open PRs needing review\r
```\r
\r
### Agent Analysis (Cron)\r
```yaml\r
# Weekly agent instruction review\r
schedule: "0 9 * * 1"  # Monday 9am\r
task: |\r
  Run `god agents analyze` on high-priority projects.\r
  If gaps found, notify with suggestions.\r
```\r
\r
## Troubleshooting\r
\r
### "gh: command not found"\r
Install GitHub CLI: https://cli.github.com/\r
\r
### "Not logged in to GitHub"\r
Run: `gh auth login`\r
\r
### "No projects configured"\r
Add a project: `god projects add github:user/repo`\r
\r
### Stale data\r
Force refresh: `god sync --force`\r
\r
---\r
\r
*OpenClaw Community Skill*  \r
*License: MIT*  \r
*Repository: https://github.com/InfantLab/god-mode-skill*\r
Usage Guidance
What to check before installing: - This skill uses your existing gh/az/glab CLI auth: anything those CLIs can access is accessible to the skill when you run its commands (it does not store tokens itself). Only add projects you trust. - It will read files in any local paths you configure and will fetch file contents from repos via gh; do not point it at directories containing secrets or private materials you don't want copied into ~/.god-mode/cache.db. - The code builds SQL queries by string interpolation in several places; while the author attempts to escape single quotes for some fields, if you plan to expose this to untrusted inputs (e.g., adding project IDs from untrusted sources) review/validate inputs first. - Review the included scripts (they are present in the package) before running setup; setup will create ~/.god-mode and ~/.config/god-mode and may prompt to run an initial sync. - If you need stronger guarantees, run the scripts in a constrained environment or inspect the database contents after a sync to verify what was stored. Overall, the package appears coherent with its claimed purpose; treat it like any tool that uses your existing CLI authentication and stores local copies of repository metadata.
Capability Analysis
Type: OpenClaw Skill Name: god-mode Version: 0.1.0 The OpenClaw skill 'god-mode' is designed for developer oversight and AI agent coaching. It collects project data (commits, PRs, issues) from GitHub using the `gh` CLI and stores it locally in a SQLite database. It then uses this local data, along with the user's `agents.md` file, to generate a prompt for an AI agent to analyze and suggest improvements. All data is stored locally, and the skill explicitly states it does not store authentication tokens, relying on existing CLI authentication. The instructions for the AI agent in `SKILL.md` and `prompts/agent-analysis.md` are aligned with the stated purpose of analysis and coaching, without evidence of malicious prompt injection or unauthorized data exfiltration. All shell commands and network calls (via `gh` CLI) are consistent with the skill's described functionality.
Capability Assessment
Purpose & Capability
Name/description align with the requested binaries (gh, sqlite3, jq) and the included scripts implement GitHub syncing, local file scanning, and agent-file analysis. Required tools match the stated functionality; no unrelated cloud credentials or services are requested.
Instruction Scope
Runtime instructions and scripts operate on repo data, local files, and GitHub via the gh CLI as described. The skill will read agent instruction files from local clones (if configured) or fetch them remotely via gh; it also writes snapshots and analysis results into ~/.god-mode. This is expected, but users should note it will read any paths they configure (local: entries) and will invoke gh which uses your existing authenticated session.
Install Mechanism
No install spec is declared for OpenClaw (instruction-only), and the included setup script runs locally. No remote binary downloads or third-party installers are invoked by the skill itself. The README suggests adding the scripts directory to PATH manually.
Credentials
No environment variables or external credentials are required by the skill; it delegates authentication to provider CLIs (gh/az/glab). That is proportional to its purpose. The only implicit credential exposure is via whatever access your installed gh/az/glab CLIs already have.
Persistence & Privilege
The skill writes data to ~/.god-mode and expects a config at ~/.config/god-mode/config.yaml. It does not request always:true and does not modify other skills. Users should be aware of persistent local storage of repo metadata and agent-file snapshots.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install god-mode
  3. After installation, invoke the skill by name or use /god-mode
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.0
god-mode 0.1.0 – Initial Release - Provides a unified dashboard for developer oversight across multiple coding projects. - Syncs and analyzes GitHub data with local SQLite caching for fast project status queries. - Analyzes agent instructions (agents.md) against commit history and suggests improvements. - Command-line interface for project management, sync, and AI agent coaching. - Requires GitHub CLI (gh), sqlite3, and jq. - No token storage; delegates authentication to trusted CLIs.
Metadata
Slug god-mode
Version 0.1.0
License
All-time Installs 16
Active Installs 15
Total Versions 1
Frequently Asked Questions

What is 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.?

Developer oversight and AI agent coaching. Use when viewing project status across repos, syncing GitHub data, or analyzing agents.md against commit patterns. It is an AI Agent Skill for Claude Code / OpenClaw, with 3004 downloads so far.

How do I install 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.?

Run "/install god-mode" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 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. free?

Yes, 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. is completely free (open-source). You can download, install and use it at no cost.

Which platforms does 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. support?

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. is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 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.?

It is built and maintained by InfantLab (@infantlab); the current version is v0.1.0.

💬 Comments