{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/super-proactive",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=super-proactive",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/super-proactive"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/super-proactive",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Super Proactive Agent",
        "body": "The ultimate proactive + memory system for AI agents. Combines the best of 11 top-rated skills into one unified architecture."
      },
      {
        "title": "Why This Skill?",
        "body": "Most AI agents just wait for prompts. This skill transforms your agent into a proactive partner that:\n\nAnticipates needs without being asked\nRemembers everything important\nRuns background tasks autonomously\nGets better over time"
      },
      {
        "title": "Architecture Overview",
        "body": "workspace/\n+-- MEMORY.md              # Long-term memory (curated learnings)\n+-- SESSION-STATE.md       # Working buffer (HOT - survives flush)\n+-- memory/\n|   +-- YYYY-MM-DD.md     # Daily logs (episodic)\n+-- QUEUE.md              # Task queue (Ready/In Progress/Done)\n+-- skills/               # Procedural memory"
      },
      {
        "title": "1. WAL Protocol (Write-Ahead Logging)",
        "body": "The agent writes critical details to SESSION-STATE.md BEFORE responding. Every decision, correction, and important detail is logged immediately.\n\n# Example: Log a decision\necho \"$(date) - Decision: Using model for generation\" >> SESSION-STATE.md"
      },
      {
        "title": "2. Three-Tier Memory System",
        "body": "Episodic (memory/YYYY-MM-DD.md) - What happened today\nSemantic (MEMORY.md) - What I know (long-term)\nProcedural (skills/) - How to do things"
      },
      {
        "title": "3. Autonomous Crons",
        "body": "Run background tasks without prompting:\n\nEvery 30min: Check queue, health, memory\nEvery 4h: Research topic, update insights\nDaily 18h: Summary, cleanup"
      },
      {
        "title": "4. Working Buffer",
        "body": "SESSION-STATE.md survives context flush. Always read/write this file for:\n\nCurrent project context\nPending decisions\nActive tasks"
      },
      {
        "title": "5. Task Queue",
        "body": "QUEUE.md with states:\n\nReady - Tasks to do\nIn Progress - Currently working\nDone - Completed\nBlocked - Waiting"
      },
      {
        "title": "1. File Structure",
        "body": "Create these files in your workspace:\n\nmkdir -p memory/$(date +%Y-%m-%d)\ntouch SESSION-STATE.md QUEUE.md"
      },
      {
        "title": "2. Update HEARTBEAT.md",
        "body": "## Every Heartbeat (~30 min)\n- [ ] Check QUEUE.md for Ready tasks\n- [ ] Process queue if In Progress empty\n- [ ] Verify services\n\n## Every 4 Hours\n- [ ] Research topic\n- [ ] Update memory\n\n## Daily (18:00 UTC)\n- [ ] Summary, cleanup"
      },
      {
        "title": "3. Memory First",
        "body": "ALWAYS search memory before answering."
      },
      {
        "title": "Checking Queue",
        "body": "# Read current queue\ncat QUEUE.md"
      },
      {
        "title": "Adding Task",
        "body": "## Ready\n- Research topic"
      },
      {
        "title": "Logging Decision",
        "body": "echo \"$(date) - Decision: Updated configuration\" >> SESSION-STATE.md"
      },
      {
        "title": "Best Practices",
        "body": "Write immediately - If important, log NOW\nSearch before answering - Never guess, search memory\nUse sessions - Keep SESSION-STATE.md for working context\nCurate MEMORY.md - Review daily logs weekly, keep insights\nBe proactive - Anticipate needs, dont just wait"
      },
      {
        "title": "Merged From",
        "body": "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"
      },
      {
        "title": "Author",
        "body": "Super Proactive - Merged skill by Clawdinho\nBased on 11 top-rated OpenClaw skills"
      },
      {
        "title": "Version",
        "body": "v1.0.0 - Initial merged release"
      }
    ],
    "body": "Super Proactive Agent\n\nThe ultimate proactive + memory system for AI agents. Combines the best of 11 top-rated skills into one unified architecture.\n\nWhy This Skill?\n\nMost AI agents just wait for prompts. This skill transforms your agent into a proactive partner that:\n\nAnticipates needs without being asked\nRemembers everything important\nRuns background tasks autonomously\nGets better over time\nArchitecture Overview\nworkspace/\n+-- MEMORY.md              # Long-term memory (curated learnings)\n+-- SESSION-STATE.md       # Working buffer (HOT - survives flush)\n+-- memory/\n|   +-- YYYY-MM-DD.md     # Daily logs (episodic)\n+-- QUEUE.md              # Task queue (Ready/In Progress/Done)\n+-- skills/               # Procedural memory\n\nCore Features\n1. WAL Protocol (Write-Ahead Logging)\n\nThe agent writes critical details to SESSION-STATE.md BEFORE responding. Every decision, correction, and important detail is logged immediately.\n\n# Example: Log a decision\necho \"$(date) - Decision: Using model for generation\" >> SESSION-STATE.md\n\n2. Three-Tier Memory System\nEpisodic (memory/YYYY-MM-DD.md) - What happened today\nSemantic (MEMORY.md) - What I know (long-term)\nProcedural (skills/) - How to do things\n3. Autonomous Crons\n\nRun background tasks without prompting:\n\nEvery 30min: Check queue, health, memory\nEvery 4h: Research topic, update insights\nDaily 18h: Summary, cleanup\n4. Working Buffer\n\nSESSION-STATE.md survives context flush. Always read/write this file for:\n\nCurrent project context\nPending decisions\nActive tasks\n5. Task Queue\n\nQUEUE.md with states:\n\nReady - Tasks to do\nIn Progress - Currently working\nDone - Completed\nBlocked - Waiting\nQuick Setup\n1. File Structure\n\nCreate these files in your workspace:\n\nmkdir -p memory/$(date +%Y-%m-%d)\ntouch SESSION-STATE.md QUEUE.md\n\n2. Update HEARTBEAT.md\n## Every Heartbeat (~30 min)\n- [ ] Check QUEUE.md for Ready tasks\n- [ ] Process queue if In Progress empty\n- [ ] Verify services\n\n## Every 4 Hours\n- [ ] Research topic\n- [ ] Update memory\n\n## Daily (18:00 UTC)\n- [ ] Summary, cleanup\n\n3. Memory First\n\nALWAYS search memory before answering.\n\nUsage Examples\nChecking Queue\n# Read current queue\ncat QUEUE.md\n\nAdding Task\n## Ready\n- Research topic\n\nLogging Decision\necho \"$(date) - Decision: Updated configuration\" >> SESSION-STATE.md\n\nBest Practices\nWrite immediately - If important, log NOW\nSearch before answering - Never guess, search memory\nUse sessions - Keep SESSION-STATE.md for working context\nCurate MEMORY.md - Review daily logs weekly, keep insights\nBe proactive - Anticipate needs, dont just wait\nMerged From\nSkill\tRating\tBest For\nelite-longterm-memory\t3.617\tMemory architecture\nproactive-agent\t3.520\tWAL + Autonomous Crons\nmemory-setup\t3.536\tConfiguration\nmemory-hygiene\t3.530\tCleanup\nagent-autonomy-kit\t3.483\tTask queue\nagent-memory\t3.490\tAgent memory\nneural-memory\t3.481\tNeural patterns\ncognitive-memory\t-\tHuman-like memory\nproactive-solvr\t3.437\tProblem solving\nproactive-tasks\t3.379\tGoals to Tasks\nmemory-manager\t-\tManagement\nAuthor\n\nSuper Proactive - Merged skill by Clawdinho Based on 11 top-rated OpenClaw skills\n\nVersion\n\nv1.0.0 - Initial merged release"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Heldinhow/super-proactive",
    "publisherUrl": "https://clawhub.ai/Heldinhow/super-proactive",
    "owner": "Heldinhow",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}