Initial commit with translated description

This commit is contained in:
2026-03-29 10:17:24 +08:00
commit 2fa8b37b66
66 changed files with 8820 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
# End-of-Day Checkpoint — Cron Job Template
# ⚠️ OPT-IN ONLY: This template is NOT auto-installed.
# The user must explicitly request cron setup ("set up cron jobs")
# and approve the exec command when prompted.
# This skill does not install cron jobs automatically. The agent presents the command via exec for user approval.
#
# Requires: openclaw CLI (pre-installed with OpenClaw)
# Effect: Creates a scheduled job that runs daily at 6 PM
# Scope: Runs in an isolated session — reads/writes workspace files only
# Network: No network activity — reads local files only
#
# Writes a full context checkpoint and reviews the day
# Schedule: Daily at 6 PM (adjust timezone)
#
# Usage:
# The agent will run this via exec. Review and approve when prompted.
# Change --tz to your timezone.
openclaw cron add \
--name "ai-persona-eod-checkpoint" \
--cron "0 18 * * *" \
--tz "America/Los_Angeles" \
--session isolated \
--message "End-of-day checkpoint protocol:
1. Write a full checkpoint to today's memory log with all decisions, action items, and open threads.
2. Review MEMORY.md — promote any repeated learnings from today. Prune anything stale or no longer relevant.
3. Check .learnings/ — any pending items with 3+ repetitions? Promote to MEMORY.md or AGENTS.md.
4. Deliver a brief end-of-day summary: what was accomplished, what carries over to tomorrow, and any blockers.
Use 🟢🟡🔴 indicators for system health. Keep it concise." \
--announce

View File

@@ -0,0 +1,36 @@
# Morning Briefing — Cron Job Template
# ⚠️ OPT-IN ONLY: This template is NOT auto-installed.
# The user must explicitly request cron setup ("set up cron jobs")
# and approve the exec command when prompted.
# This skill does not install cron jobs automatically. The agent presents the command via exec for user approval.
#
# Requires: openclaw CLI (pre-installed with OpenClaw)
# Effect: Creates a scheduled job that runs daily at 8 AM
# Scope: Runs in an isolated session — reads workspace files only
# Network: No network activity — reads local files only
#
# Runs the full 4-step AI Persona OS daily protocol
# Schedule: Daily at 8 AM (adjust timezone)
#
# Usage:
# The agent will run this via exec. Review and approve when prompted.
# Change --tz to your timezone.
# Change --announce to --no-deliver if you want internal-only processing.
openclaw cron add \
--name "ai-persona-morning-briefing" \
--cron "0 8 * * *" \
--tz "America/Los_Angeles" \
--session isolated \
--message "Run the AI Persona OS daily protocol:
Step 1: Load previous context — Read today's and yesterday's memory logs. Summarize key state, pending items, and open threads.
Step 2: System status — Check MEMORY.md size (<4KB), workspace structure, stale logs (>90 days), and file accessibility.
Step 3: Priority scan — Check channels in priority order (P1 critical → P4 background). Surface anything requiring attention.
Step 4: Assessment — Summarize system health, blocking issues, time-sensitive items, and recommended first action.
Format as a daily briefing. Use 🟢🟡🔴 indicators for each section. End with today's top 3 priorities." \
--announce

View File

@@ -0,0 +1,42 @@
# Weekly Review — Cron Job Template
# ⚠️ OPT-IN ONLY: This template is NOT auto-installed.
# The user must explicitly request cron setup ("set up cron jobs")
# and approve the exec command when prompted.
# This skill does not install cron jobs automatically. The agent presents the command via exec for user approval.
#
# Requires: openclaw CLI (pre-installed with OpenClaw)
# Effect: Creates a scheduled job that runs every Monday at 9 AM
# Scope: Runs in an isolated session — reads/writes workspace files only
# Network: No network activity — reads local files only
#
# Deep review of the past week: learnings, archiving, pattern recognition
# Schedule: Monday at 9 AM (adjust timezone)
# Uses Opus model for deeper analysis
#
# Usage:
# The agent will run this via exec. Review and approve when prompted.
# Change --tz to your timezone.
# Remove --model opus if you prefer your default model.
openclaw cron add \
--name "ai-persona-weekly-review" \
--cron "0 9 * * 1" \
--tz "America/Los_Angeles" \
--session isolated \
--model opus \
--message "Weekly review protocol:
1. Scan memory/ for the past 7 days. Summarize key themes, decisions, and outcomes.
2. Review .learnings/LEARNINGS.md — promote items with 3+ repetitions to MEMORY.md or AGENTS.md.
3. Archive logs older than 90 days to memory/archive/.
4. Check MEMORY.md size — prune if approaching 4KB.
5. Review WORKFLOWS.md — any new recurring patterns worth documenting?
6. Deliver a weekly summary: wins, issues resolved, lessons learned, and focus areas for the coming week.
Use 🟢🟡🔴 indicators for overall system health." \
--announce