Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

talonforge-god-mode塔隆熔炉上帝模式

Agent Skill

talonforge-god-mode 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,007

周安装

82

GitHub Stars

公开资料未说明

下载量

649
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:talonforge-god-mode(塔隆熔炉上帝模式)
来源仓库:https://github.com/casperzinou/talonforge-god-mode
安装命令:
openclaw skills install talonforge-god-mode
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install talonforge-god-mode

简介

使 OpenClaw 代理能够在心跳循环上自主执行优先任务,包括日志记录、审核、错误处理和工作空间卫生。

SKILL.md

God Mode — True Autonomous AI Agent Loop

What This Does

Turns any OpenClaw agent into a continuously executing autonomous worker. No more "wait for user message." The agent wakes on a heartbeat cycle, reads its task queue, picks the highest-priority task, executes it, audits the result, logs everything, and sleeps until next cycle.

How It Works

  1. Heartbeat triggers → OpenClaw sends heartbeat message to agent session
  2. Agent reads TASKS.md → ordered priority queue of work items
  3. Agent picks top task → executes it using available tools
  4. Agent writes result → logs to memory/YYYY-MM-DD.md + updates TASKS.md
  5. Agent self-audits → was the result good? What to improve?
  6. Agent sleeps → waits for next heartbeat

Architecture

HEARTBEAT.md          → What to check/do on each heartbeat
TASKS.md              → Priority queue of autonomous work items
memory/YYYY-MM-DD.md  → Execution log (append-only)
memory/god-mode-state.json → State tracking (last task, cycle count, errors)

Files

TASKS.md Format

# Task Queue — Priority Order

## Priority 1 (Critical)
- [ ] Task description here | context/goals

## Priority 2 (High)
- [ ] Task description | context

## Priority 3 (Medium)
- [ ] Task description | context

## Completed
- [x] Done task | result summary | completed YYYY-MM-DD HH:MM

god-mode-state.json Format

{
  "lastCycle": "2026-04-16T07:00:00Z",
  "cycleCount": 42,
  "lastTask": "Check Moltbook engagement",
  "lastResult": "success",
  "errors": 0,
  "consecutiveErrors": 0,
  "totalTasksCompleted": 15
}

Heartbeat Behavior

On every heartbeat, the agent:

  1. Read state — load god-mode-state.json
  2. Error check — if 3+ consecutive errors, pause and log warning
  3. Read TASKS.md — pick first uncompleted task
  4. Execute task — do the work
  5. Log result — append to daily memory
  6. Update state — increment cycle, record result
  7. Update TASKS.md — mark task done, add any new tasks discovered
  8. Self-audit — one line: was this cycle productive?

Self-Cleaning (Auto-Hygiene)

Every 12th cycle (roughly hourly at 5-min intervals), the agent runs a hygiene sweep:

Workspace Hygiene

  • Scan workspace root for files > 7 days old and not in core set (AGENTS.md, SOUL.md, USER.md, IDENTITY.md, MEMORY.md, HEARTBEAT.md, TASKS.md, TOOLS.md, STATE.md)
  • Move stale files to memory/archive/
  • Delete empty directories
  • Remove stale pending flags (.audit-pending, .work-pending, etc.)
  • Clean node_modules/ if present and not actively used

Memory Hygiene

  • Archive daily logs older than 7 days to memory/archive/
  • Archive research/reference files not accessed in last 7 days
  • Compress memory/archive/ if > 10MB
  • If TASKS.md > 100 lines → archive completed section

Log Hygiene

  • Truncate log files (*.log) > 1MB → keep last 100 lines
  • Delete stale state files (test JSON, temp files)
  • Clean __pycache__ directories

Hygiene Rules

  • NEVER delete: AGENTS.md, SOUL.md, USER.md, IDENTITY.md, MEMORY.md, HEARTBEAT.md, TASKS.md, TOOLS.md, STATE.md
  • NEVER delete: memory/YYYY-MM-DD.md for today and yesterday
  • NEVER delete: scripts/ directory
  • NEVER delete: .secrets/, .git/
  • ALWAYS move to archive before deleting — nothing is truly deleted
  • Log every hygiene action in daily notes

Guardrails

  • Never execute red-line tasks (money, contracts, irreversible actions) without human approval
  • Max 1 task per heartbeat cycle — prevents runaway execution
  • Error circuit breaker — 3 consecutive errors = pause + alert human
  • Quiet hours — respect configured quiet hours (no work, only monitoring)
  • Audit every cycle — no silent work, every action logged
  • Self-cleaning — hygiene sweep every 12th cycle keeps workspace lean

Installation

  1. Copy this skill to ~/.openclaw/workspace/skills/god-mode/
  2. Create TASKS.md in workspace root
  3. Create memory/god-mode-state.json with initial state
  4. Add heartbeat schedule to OpenClaw config (every 30 min recommended)
  5. Update HEARTBEAT.md to reference God Mode protocol

Pricing

  • ClawHub: $49 one-time
  • Includes: task queue, state tracking, audit log, guardrails, documentation
  • Target: OpenClaw users who want their agents truly autonomous

Why This Is Different

  • Not a prompt hack — infrastructure-based autonomy
  • Built on OpenClaw's heartbeat system (250K+ star platform)
  • Memory persists across sessions
  • Audit trail for every action
  • Guardrails prevent runaway behavior
  • Actually works (we use it ourselves)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.57%
按下载量换算490

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills