multiAI Summary Pending
Nightly Build ๐
An automation skill that runs maintenance tasks while you sleep and delivers a morning briefing.
3,556 stars
byopenclaw
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
- Download SKILL.md from GitHub
- Place it in
.claude/skills/nightly-build/SKILL.mdinside your project - Restart your AI agent โ it will auto-discover the skill
How Nightly Build ๐ Compares
| Feature / Agent | Nightly Build ๐ | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/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." }
}
```