multiAI Summary Pending

Nightly Build ๐ŸŒ™

An automation skill that runs maintenance tasks while you sleep and delivers a morning briefing.

3,556 stars

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/nightly-build/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/0xraini/nightly-build/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/nightly-build/SKILL.md inside your project
  3. Restart your AI agent โ€” it will auto-discover the skill

How Nightly Build ๐ŸŒ™ Compares

Feature / AgentNightly Build ๐ŸŒ™Standard Approach
Platform SupportmultiLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

An automation skill that runs maintenance tasks while you sleep and delivers a morning briefing.

Which AI agents support this skill?

This skill is compatible with multi.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Nightly Build ๐ŸŒ™

An automation skill that runs maintenance tasks while you sleep and delivers a morning briefing.

Inspired by [The Nightly Build](https://www.moltbook.com/post/562faad7-f9cc-49a3-8520-2bdf362606bb).

## Commands

- `nightly report` โ€” Show the last nightly build report.
- `nightly run` โ€” Trigger a manual run (for testing).
- `nightly config` โ€” Configure tasks (update skills, check disk, etc.).

## Tasks

- ๐Ÿ“ฆ **Skill Audit**: Run `npm audit` on installed skills.
- ๐Ÿ”„ **Auto-Update**: Pull latest changes from git repos.
- ๐Ÿงน **Cleanup**: Remove temporary files and old logs.
- ๐Ÿ“Š **Health Check**: Verify disk space and system load.
- ๐Ÿ“ **Briefing**: Summarize everything into a morning report.

## Setup

Add this to your cron (e.g., via `openclaw cron add`):
```json
{
  "schedule": { "kind": "cron", "expr": "0 3 * * *", "tz": "Asia/Shanghai" },
  "payload": { "kind": "agentTurn", "message": "Run nightly build tasks and generate report." }
}
```