The ultimate proactive + memory system for AI agents. Combines the best of 11 top-rated skills into one unified architecture.
Most AI agents just wait for prompts. This skill transforms your agent into a proactive partner that:
workspace/
+-- MEMORY.md # Long-term memory (curated learnings)
+-- SESSION-STATE.md # Working buffer (HOT - survives flush)
+-- memory/
| +-- YYYY-MM-DD.md # Daily logs (episodic)
+-- QUEUE.md # Task queue (Ready/In Progress/Done)
+-- skills/ # Procedural memory
The agent writes critical details to SESSION-STATE.md BEFORE responding. Every decision, correction, and important detail is logged immediately.
# Example: Log a decision
echo "$(date) - Decision: Using model for generation" >> SESSION-STATE.md
Run background tasks without prompting:
SESSION-STATE.md survives context flush. Always read/write this file for:
QUEUE.md with states:
Create these files in your workspace:
mkdir -p memory/$(date +%Y-%m-%d)
touch SESSION-STATE.md QUEUE.md
## Every Heartbeat (~30 min)
- [ ] Check QUEUE.md for Ready tasks
- [ ] Process queue if In Progress empty
- [ ] Verify services
## Every 4 Hours
- [ ] Research topic
- [ ] Update memory
## Daily (18:00 UTC)
- [ ] Summary, cleanup
ALWAYS search memory before answering.
# Read current queue
cat QUEUE.md
## Ready
- Research topic
echo "$(date) - Decision: Updated configuration" >> SESSION-STATE.md
| Skill | Rating | Best For |
|---|---|---|
| ------- | -------- | ---------- |
| elite-longterm-memory | 3.617 | Memory architecture |
| proactive-agent | 3.520 | WAL + Autonomous Crons |
| memory-setup | 3.536 | Configuration |
| memory-hygiene | 3.530 | Cleanup |
| agent-autonomy-kit | 3.483 | Task queue |
| agent-memory | 3.490 | Agent memory |
| neural-memory | 3.481 | Neural patterns |
| cognitive-memory | - | Human-like memory |
| proactive-solvr | 3.437 | Problem solving |
| proactive-tasks | 3.379 | Goals to Tasks |
| memory-manager | - | Management |
Super Proactive - Merged skill by Clawdinho
Based on 11 top-rated OpenClaw skills
v1.0.0 - Initial merged release
共 1 个版本