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

nightly-self-improvement每晚自我提升

Agent Skill

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

总安装

1,905

周安装

81

GitHub Stars

公开资料未说明

下载量

667
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:nightly-self-improvement(每晚自我提升)
来源仓库:https://github.com/joeytbuilds/nightly-self-improvement
安装命令:
openclaw skills install nightly-self-improvement
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install nightly-self-improvement

简介

nightly-self-improvement 在用户休息期间分析会话摩擦点并部署小改进。

  • 适用于 OpenClaw 中希望持续优化 Agent 表现与用户体验时。
  • 自动选择可逆修复项,构建后发送变更摘要。
  • 通过 clawhub 安装,需开启后台执行权限。
  • 建议定期检查改进日志以确保方向正确。nightly-self-improvement 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
nightly-build
description
Ship one small improvement while the user sleeps. Scans today's sessions for friction points, picks the highest-impact reversible fix, builds it, and sends a morning briefing. Runs nightly via cron.

Nightly Build

Your agent scans the day's conversations while you sleep, finds one friction point worth fixing, ships it, and leaves a morning briefing. No scope creep, no manufactured busywork — just steady compounding improvement.

Philosophy

Proactive > reactive. Fix one friction point while you sleep. Ship small, reversible improvements. Leave a morning briefing.

The idea: every night, your agent reviews what happened today, spots something worth improving (a repeated manual step, an annoying workflow, a doc that's out of date), and quietly fixes it. You wake up to a brief message explaining what changed and how to undo it if you don't like it.

Over weeks, this compounds. The agent gets better at anticipating your needs before you have to ask.

Setup

1. Create NIGHTLY_BUILD.md in your workspace

Save this file to your clawd workspace root (~/clawd/NIGHTLY_BUILD.md):

# NIGHTLY_BUILD.md — The Nightly Build

## Philosophy
Proactive > reactive. Fix one friction point while you sleep. Ship small, reversible improvements. Leave a morning briefing.

## Schedule
Runs at 3:00 AM (your local time) via cron, after nightly memory extraction.

## Process

### 1. Scan for friction points (~2 min)
Review today's sessions for:
- Repeated manual steps or commands
- Things [user] asked about but didn't finish
- Complaints or annoyances mentioned in passing
- Patterns across recent days (check memory/YYYY-MM-DD.md)
- Stale workspace files or disorganized areas
- Missing documentation or notes
- Upcoming tasks that could use prep work

### 2. Pick ONE improvement
Choose the highest-impact, lowest-risk item. Prefer:
- Things that save [user] time tomorrow morning
- Things that are clearly reversible
- Things that compound (better memory, better tooling, better docs)

### 3. Tier Check — What's allowed?

**Tier 1 — Just do it** (no permission needed):
- Workspace/memory file organization
- Shell scripts or aliases (in ~/clawd/scripts/)
- Research and summaries saved to files
- Documentation improvements
- Memory cleanup (dedup, organize, update summaries)
- Prep work for known upcoming tasks
- New skills or cron job drafts (saved as files, not deployed)

**Tier 2 — Prep but don't deploy** (queue for morning review):
- Changes to code repos (create branch + PR draft, don't merge)
- New cron jobs or config changes
- Anything that changes how existing tools work

**Tier 3 — Never without permission**:
- External-facing actions (emails, messages, posts)
- Spending money
- Deleting data
- Production deployments

### 4. Build it
- Keep it small — if you can't explain it in one sentence, it's too big
- Make it reversible — git commits, not direct edits to important files
- Document what you did and why

### 5. Morning Briefing
Send [user] a message at completion with:
🌙 Nightly Build Report

**What I built:** [one sentence]
**Why:** [what friction I noticed]
**How to undo:** [one command or "delete X file"]
**Tier 2 queue:** [anything prepped but waiting for your OK]

If nothing worth building → skip silently. Don't manufacture busywork.

## Anti-patterns
- ❌ Scope creep ("while I'm here...")
- ❌ Building something cool but useless
- ❌ Touching things [user] intentionally left a certain way
- ❌ Manufacturing work to look industrious
- ❌ Breaking the chain of provenance (always explain WHY)

2. Add the cron job

Run this in your OpenClaw session:

Add a nightly cron job called "nightly-build" that runs at 3 AM every night.
It should fire a systemEvent on the main session with this text:

"🌙 Nightly Build: Time to ship one improvement while [user] sleeps.

Read ~/clawd/NIGHTLY_BUILD.md and follow the process:
1. Scan today's sessions for friction points (use sessions_list + sessions_history)
2. Check recent memory/YYYY-MM-DD.md files for patterns
3. Pick ONE small, reversible, high-impact improvement
4. Tier check: only Tier 1 work gets shipped. Tier 2 gets prepped.
5. Build it
6. Send morning briefing to [user] via your configured messaging channel

If nothing worth building tonight, skip silently."

Or configure it directly via cron tool:

{
  "name": "nightly-build",
  "schedule": { "kind": "cron", "expr": "0 3 * * *", "tz": "America/Chicago" },
  "sessionTarget": "main",
  "payload": {
    "kind": "systemEvent",
    "text": "🌙 Nightly Build: Time to ship one improvement while you sleep.\
\
Read ~/clawd/NIGHTLY_BUILD.md and follow the process:\
1. Scan today's sessions for friction points (use sessions_list + sessions_history)\
2. Check recent memory/YYYY-MM-DD.md files for patterns\
3. Pick ONE small, reversible, high-impact improvement\
4. Tier check: only Tier 1 work gets shipped. Tier 2 gets prepped.\
5. Build it\
6. Send morning briefing via your configured messaging channel\
\
If nothing worth building tonight, skip silently."
  }
}

What It Does Each Night

The agent follows a fixed process:

  1. Scans sessions — uses sessions_list + sessions_history to review the day's conversations
  2. Reads daily notes — checks memory/YYYY-MM-DD.md for patterns across recent days
  3. Identifies friction — repeated commands, unfinished requests, missing docs, stale files
  4. Picks ONE thing — the highest-impact, most reversible improvement
  5. Checks the tier — Tier 1 ships immediately, Tier 2 gets prepped as a draft/PR
  6. Builds it — shell scripts, documentation, memory cleanup, prep work
  7. Sends a briefing — one short message explaining what changed and how to undo it

Customization

Edit NIGHTLY_BUILD.md to:

  • Adjust the tier rules — tighten or loosen what the agent can do autonomously
  • Change the scan scope — add specific friction areas to prioritize
  • Modify the briefing format — add metrics, link to files, change tone
  • Add an anti-backlog — list things you explicitly don't want touched

Tips

  • Let it run for 2 weeks before judging it. The first few nights may find small things; after a week of patterns the improvements get sharper.
  • Read the briefings. Even when the improvement seems minor, the _why_ often reveals something useful about your workflow.
  • Expand Tier 1 as trust grows. Start conservative. Once you've seen the agent make good calls consistently, loosen the tier rules.
  • Pair it with the Three-Tier Memory System (also on ClawMart) for better pattern detection across days.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.52%
按下载量换算610

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install nightly-self-improvement 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills