# Send Super Proactive V2 to your agent
Use the source page and any available docs to guide the install because the item currently does not return a direct package file.
## Fast path
- Open the source page via Open source listing.
- If you can obtain the package, extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the source page and extracted files.
## Suggested prompts
### New install

```text
I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.
```
### Upgrade existing

```text
I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "super-proactive",
    "name": "Super Proactive V2",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Heldinhow/super-proactive",
    "canonicalUrl": "https://clawhub.ai/Heldinhow/super-proactive",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/super-proactive",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=super-proactive",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "manual_only",
    "sourceHealth": {
      "source": "tencent",
      "slug": "super-proactive",
      "status": "source_issue",
      "reason": "not_found",
      "recommendedAction": "review_source",
      "checkedAt": "2026-05-04T00:01:33.764Z",
      "expiresAt": "2026-05-05T00:01:33.764Z",
      "httpStatus": 404,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=super-proactive",
      "contentType": "text/plain",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=super-proactive",
        "contentDisposition": null,
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "super-proactive"
      },
      "scope": "item",
      "summary": "Known item issue.",
      "detail": "This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.",
      "primaryActionLabel": "Open source listing",
      "primaryActionHref": "https://clawhub.ai/Heldinhow/super-proactive"
    },
    "validation": {
      "installChecklist": [
        "Open the source listing and confirm there is a real package or setup artifact available.",
        "Review SKILL.md before asking your agent to continue.",
        "Treat this source as manual setup until the upstream download flow is fixed."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/super-proactive",
    "downloadUrl": "https://openagent3.xyz/downloads/super-proactive",
    "agentUrl": "https://openagent3.xyz/skills/super-proactive/agent",
    "manifestUrl": "https://openagent3.xyz/skills/super-proactive/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/super-proactive/agent.md"
  }
}
```
## Documentation

### Super Proactive Agent

The ultimate proactive + memory system for AI agents. Combines the best of 11 top-rated skills into one unified architecture.

### Why This Skill?

Most AI agents just wait for prompts. This skill transforms your agent into a proactive partner that:

Anticipates needs without being asked
Remembers everything important
Runs background tasks autonomously
Gets better over time

### Architecture Overview

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

### 1. WAL Protocol (Write-Ahead Logging)

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

### 2. Three-Tier Memory System

Episodic (memory/YYYY-MM-DD.md) - What happened today
Semantic (MEMORY.md) - What I know (long-term)
Procedural (skills/) - How to do things

### 3. Autonomous Crons

Run background tasks without prompting:

Every 30min: Check queue, health, memory
Every 4h: Research topic, update insights
Daily 18h: Summary, cleanup

### 4. Working Buffer

SESSION-STATE.md survives context flush. Always read/write this file for:

Current project context
Pending decisions
Active tasks

### 5. Task Queue

QUEUE.md with states:

Ready - Tasks to do
In Progress - Currently working
Done - Completed
Blocked - Waiting

### 1. File Structure

Create these files in your workspace:

mkdir -p memory/$(date +%Y-%m-%d)
touch SESSION-STATE.md QUEUE.md

### 2. Update HEARTBEAT.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

### 3. Memory First

ALWAYS search memory before answering.

### Checking Queue

# Read current queue
cat QUEUE.md

### Adding Task

## Ready
- Research topic

### Logging Decision

echo "$(date) - Decision: Updated configuration" >> SESSION-STATE.md

### Best Practices

Write immediately - If important, log NOW
Search before answering - Never guess, search memory
Use sessions - Keep SESSION-STATE.md for working context
Curate MEMORY.md - Review daily logs weekly, keep insights
Be proactive - Anticipate needs, dont just wait

### Merged From

SkillRatingBest Forelite-longterm-memory3.617Memory architectureproactive-agent3.520WAL + Autonomous Cronsmemory-setup3.536Configurationmemory-hygiene3.530Cleanupagent-autonomy-kit3.483Task queueagent-memory3.490Agent memoryneural-memory3.481Neural patternscognitive-memory-Human-like memoryproactive-solvr3.437Problem solvingproactive-tasks3.379Goals to Tasksmemory-manager-Management

### Author

Super Proactive - Merged skill by Clawdinho
Based on 11 top-rated OpenClaw skills

### Version

v1.0.0 - Initial merged release
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Heldinhow
- Version: 1.0.1
## Source health
- Status: source_issue
- Known item issue.
- This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.
- Health scope: item
- Reason: not_found
- Checked at: 2026-05-04T00:01:33.764Z
- Expires at: 2026-05-05T00:01:33.764Z
- Recommended action: Open source listing
## Links
- [Detail page](https://openagent3.xyz/skills/super-proactive)
- [Send to Agent page](https://openagent3.xyz/skills/super-proactive/agent)
- [JSON manifest](https://openagent3.xyz/skills/super-proactive/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/super-proactive/agent.md)
- [Download page](https://openagent3.xyz/downloads/super-proactive)