← 返回 Skills 市场
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.

作者 InfantLab · GitHub ↗ · v0.1.0
cross-platform ✓ 安全检测通过
3004
总下载
1
收藏
15
当前安装
1
版本数
在 OpenClaw 中安装
/install god-mode
功能描述
Developer oversight and AI agent coaching. Use when viewing project status across repos, syncing GitHub data, or analyzing agents.md against commit patterns.
使用说明 (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
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install god-mode
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /god-mode 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug god-mode
版本 0.1.0
许可证
累计安装 16
当前安装数 15
历史版本数 1
常见问题

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. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 3004 次。

如何安装 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.?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install god-mode」即可一键安装,无需额外配置。

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'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'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's eye view of your dev repos. Multi-project tracking across GitHub/Azure DevOps. AI learns from your commits to upgrade your agents.md. 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 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.?

由 InfantLab(@infantlab)开发并维护,当前版本 v0.1.0。

💬 留言讨论