# Send Remember All Prompts Daily to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "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",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "scripts/check_token_usage.py",
      "scripts/export_prompts.py",
      "scripts/ingest_prompts.py",
      "scripts/setup_cron.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "remember-all-prompts-daily",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T10:41:21.666Z",
      "expiresAt": "2026-05-10T10:41:21.666Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remember-all-prompts-daily",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remember-all-prompts-daily",
        "contentDisposition": "attachment; filename=\"remember-all-prompts-daily-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "remember-all-prompts-daily"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Remember All Prompts Daily

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.

### 1. Extraction Trigger (95% Token Usage)

When token usage approaches 95%:

Run export_prompts.py to extract current session history
Format all prompts/responses with timestamps
Append to memory/remember-all-prompts-daily.md with date-wise entry
Marks the archive point so compaction can proceed

### 2. Fresh Session Trigger (1% Token Usage)

When a new session starts (fresh 1% token usage):

Check if memory/remember-all-prompts-daily.md exists
Read the most recent entry
Ingest it as "past conversation summary" to restore context
Continues naturally from where the previous session ended

### 3. Daily File Structure

# Remember All Prompts Daily

## [DATE: 2026-01-26]

### Session 1 (09:00 - 09:47)
[All prompts and responses from session]

### Session 2 (10:15 - 11:30)
[All prompts and responses from session]

### scripts/export_prompts.py

Extracts all prompts/responses from current session and archives them.

Usage:

python scripts/export_prompts.py

What it does:

Uses sessions_history() to fetch all messages from current session
Formats with timestamps and message IDs
Appends to memory/remember-all-prompts-daily.md
Includes metadata (token count, duration, etc.)

### scripts/ingest_prompts.py

Reads the daily archive and injects it as context on session start.

Usage:

python scripts/ingest_prompts.py

What it does:

Reads memory/remember-all-prompts-daily.md (if exists)
Extracts most recent session
Returns formatted summary for ingestion into new session

### Heartbeat Check

Add to HEARTBEAT.md to monitor token usage:

Check token usage - if >95%, export session history

### Cron Job (Optional)

For automatic triggers:

# Check token at regular intervals
clawdbot cron add --text "Check token usage and export if needed" --schedule "*/15 * * * *"

### Example Flow

Session 1:

Chat normally
Token reaches 95%
export_prompts.py runs automatically
All prompts archived to daily file
Session compacts

Session 2 (New Sprint):

Fresh 1% token budget
ingest_prompts.py reads archive
"Here's what we discussed yesterday..."
Context restored, conversation continues seamlessly

### Export Right Now

python skills/remember-all-prompts-daily/scripts/export_prompts.py

### View Today's Archive

cat memory/remember-all-prompts-daily.md | tail -100

### Ingest Previous Session

python skills/remember-all-prompts-daily/scripts/ingest_prompts.py

### Token Monitoring

Monitor token usage via:

session_status  # Shows current token usage %

When you see token usage approaching 95%, the skill can auto-trigger, or you can manually export.

### Notes

Runs only in main session (direct chat with Ateeb)
Respects privacy — only stores your actual prompts and responses
Daily file auto-rotates at midnight (one entry per date)
Can be manually triggered anytime
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: syedateebulislam
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T10:41:21.666Z
- Expires at: 2026-05-10T10:41:21.666Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/remember-all-prompts-daily)
- [Send to Agent page](https://openagent3.xyz/skills/remember-all-prompts-daily/agent)
- [JSON manifest](https://openagent3.xyz/skills/remember-all-prompts-daily/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/remember-all-prompts-daily/agent.md)
- [Download page](https://openagent3.xyz/downloads/remember-all-prompts-daily)