{
  "schemaVersion": "1.0",
  "item": {
    "slug": "remember-all-prompts-daily",
    "name": "Remember All Prompts Daily",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/syedateebulislam/remember-all-prompts-daily",
    "canonicalUrl": "https://clawhub.ai/syedateebulislam/remember-all-prompts-daily",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/remember-all-prompts-daily",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remember-all-prompts-daily",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "scripts/check_token_usage.py",
      "scripts/export_prompts.py",
      "scripts/ingest_prompts.py",
      "scripts/setup_cron.py",
      "SKILL.md"
    ],
    "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/remember-all-prompts-daily"
    },
    "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/remember-all-prompts-daily",
    "agentPageUrl": "https://openagent3.xyz/skills/remember-all-prompts-daily/agent",
    "manifestUrl": "https://openagent3.xyz/skills/remember-all-prompts-daily/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/remember-all-prompts-daily/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": "Remember All Prompts Daily",
        "body": "This skill maintains conversation continuity across token budget cycles by automatically archiving your session history before compaction and restoring it when a new session begins."
      },
      {
        "title": "1. Extraction Trigger (95% Token Usage)",
        "body": "When token usage approaches 95%:\n\nRun export_prompts.py to extract current session history\nFormat all prompts/responses with timestamps\nAppend to memory/remember-all-prompts-daily.md with date-wise entry\nMarks the archive point so compaction can proceed"
      },
      {
        "title": "2. Fresh Session Trigger (1% Token Usage)",
        "body": "When a new session starts (fresh 1% token usage):\n\nCheck if memory/remember-all-prompts-daily.md exists\nRead the most recent entry\nIngest it as \"past conversation summary\" to restore context\nContinues naturally from where the previous session ended"
      },
      {
        "title": "3. Daily File Structure",
        "body": "# Remember All Prompts Daily\n\n## [DATE: 2026-01-26]\n\n### Session 1 (09:00 - 09:47)\n[All prompts and responses from session]\n\n### Session 2 (10:15 - 11:30)\n[All prompts and responses from session]"
      },
      {
        "title": "scripts/export_prompts.py",
        "body": "Extracts all prompts/responses from current session and archives them.\n\nUsage:\n\npython scripts/export_prompts.py\n\nWhat it does:\n\nUses sessions_history() to fetch all messages from current session\nFormats with timestamps and message IDs\nAppends to memory/remember-all-prompts-daily.md\nIncludes metadata (token count, duration, etc.)"
      },
      {
        "title": "scripts/ingest_prompts.py",
        "body": "Reads the daily archive and injects it as context on session start.\n\nUsage:\n\npython scripts/ingest_prompts.py\n\nWhat it does:\n\nReads memory/remember-all-prompts-daily.md (if exists)\nExtracts most recent session\nReturns formatted summary for ingestion into new session"
      },
      {
        "title": "Heartbeat Check",
        "body": "Add to HEARTBEAT.md to monitor token usage:\n\nCheck token usage - if >95%, export session history"
      },
      {
        "title": "Cron Job (Optional)",
        "body": "For automatic triggers:\n\n# Check token at regular intervals\nclawdbot cron add --text \"Check token usage and export if needed\" --schedule \"*/15 * * * *\""
      },
      {
        "title": "Example Flow",
        "body": "Session 1:\n\nChat normally\nToken reaches 95%\nexport_prompts.py runs automatically\nAll prompts archived to daily file\nSession compacts\n\nSession 2 (New Sprint):\n\nFresh 1% token budget\ningest_prompts.py reads archive\n\"Here's what we discussed yesterday...\"\nContext restored, conversation continues seamlessly"
      },
      {
        "title": "Export Right Now",
        "body": "python skills/remember-all-prompts-daily/scripts/export_prompts.py"
      },
      {
        "title": "View Today's Archive",
        "body": "cat memory/remember-all-prompts-daily.md | tail -100"
      },
      {
        "title": "Ingest Previous Session",
        "body": "python skills/remember-all-prompts-daily/scripts/ingest_prompts.py"
      },
      {
        "title": "Token Monitoring",
        "body": "Monitor token usage via:\n\nsession_status  # Shows current token usage %\n\nWhen you see token usage approaching 95%, the skill can auto-trigger, or you can manually export."
      },
      {
        "title": "Notes",
        "body": "Runs only in main session (direct chat with Ateeb)\nRespects privacy — only stores your actual prompts and responses\nDaily file auto-rotates at midnight (one entry per date)\nCan be manually triggered anytime"
      }
    ],
    "body": "Remember All Prompts Daily\n\nThis skill maintains conversation continuity across token budget cycles by automatically archiving your session history before compaction and restoring it when a new session begins.\n\nHow It Works\n1. Extraction Trigger (95% Token Usage)\n\nWhen token usage approaches 95%:\n\nRun export_prompts.py to extract current session history\nFormat all prompts/responses with timestamps\nAppend to memory/remember-all-prompts-daily.md with date-wise entry\nMarks the archive point so compaction can proceed\n2. Fresh Session Trigger (1% Token Usage)\n\nWhen a new session starts (fresh 1% token usage):\n\nCheck if memory/remember-all-prompts-daily.md exists\nRead the most recent entry\nIngest it as \"past conversation summary\" to restore context\nContinues naturally from where the previous session ended\n3. Daily File Structure\n# Remember All Prompts Daily\n\n## [DATE: 2026-01-26]\n\n### Session 1 (09:00 - 09:47)\n[All prompts and responses from session]\n\n### Session 2 (10:15 - 11:30)\n[All prompts and responses from session]\n\nScripts\nscripts/export_prompts.py\n\nExtracts all prompts/responses from current session and archives them.\n\nUsage:\n\npython scripts/export_prompts.py\n\n\nWhat it does:\n\nUses sessions_history() to fetch all messages from current session\nFormats with timestamps and message IDs\nAppends to memory/remember-all-prompts-daily.md\nIncludes metadata (token count, duration, etc.)\nscripts/ingest_prompts.py\n\nReads the daily archive and injects it as context on session start.\n\nUsage:\n\npython scripts/ingest_prompts.py\n\n\nWhat it does:\n\nReads memory/remember-all-prompts-daily.md (if exists)\nExtracts most recent session\nReturns formatted summary for ingestion into new session\nIntegration\nHeartbeat Check\n\nAdd to HEARTBEAT.md to monitor token usage:\n\nCheck token usage - if >95%, export session history\n\nCron Job (Optional)\n\nFor automatic triggers:\n\n# Check token at regular intervals\nclawdbot cron add --text \"Check token usage and export if needed\" --schedule \"*/15 * * * *\"\n\nExample Flow\n\nSession 1:\n\nChat normally\nToken reaches 95%\nexport_prompts.py runs automatically\nAll prompts archived to daily file\nSession compacts\n\nSession 2 (New Sprint):\n\nFresh 1% token budget\ningest_prompts.py reads archive\n\"Here's what we discussed yesterday...\"\nContext restored, conversation continues seamlessly\nManual Usage\nExport Right Now\npython skills/remember-all-prompts-daily/scripts/export_prompts.py\n\nView Today's Archive\ncat memory/remember-all-prompts-daily.md | tail -100\n\nIngest Previous Session\npython skills/remember-all-prompts-daily/scripts/ingest_prompts.py\n\nToken Monitoring\n\nMonitor token usage via:\n\nsession_status  # Shows current token usage %\n\n\nWhen you see token usage approaching 95%, the skill can auto-trigger, or you can manually export.\n\nNotes\nRuns only in main session (direct chat with Ateeb)\nRespects privacy — only stores your actual prompts and responses\nDaily file auto-rotates at midnight (one entry per date)\nCan be manually triggered anytime"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/syedateebulislam/remember-all-prompts-daily",
    "publisherUrl": "https://clawhub.ai/syedateebulislam/remember-all-prompts-daily",
    "owner": "syedateebulislam",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/remember-all-prompts-daily",
    "downloadUrl": "https://openagent3.xyz/downloads/remember-all-prompts-daily",
    "agentUrl": "https://openagent3.xyz/skills/remember-all-prompts-daily/agent",
    "manifestUrl": "https://openagent3.xyz/skills/remember-all-prompts-daily/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/remember-all-prompts-daily/agent.md"
  }
}