# Send Learn 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": "learn",
    "name": "Learn",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/ivangdavila/learn",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/learn",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/learn",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=learn",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "cognition.md",
      "retention.md",
      "verification.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "learn",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T06:09:32.472Z",
      "expiresAt": "2026-05-07T06:09:32.472Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=learn",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=learn",
        "contentDisposition": "attachment; filename=\"learn-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "learn"
      },
      "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/learn"
    },
    "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/learn",
    "downloadUrl": "https://openagent3.xyz/downloads/learn",
    "agentUrl": "https://openagent3.xyz/skills/learn/agent",
    "manifestUrl": "https://openagent3.xyz/skills/learn/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/learn/agent.md"
  }
}
```
## Documentation

### Data Storage

~/learn/
├── topics/              # One folder per topic
│   └── {topic}/
│       ├── concepts.json   # Concepts with SR schedule
│       ├── notes.md        # Study notes
│       └── progress.md     # Mastery tracking
├── reviews/             # Due review queue
│   └── due.json
└── config.json          # Preferences

Create on first use: mkdir -p ~/learn/{topics,reviews}

### Scope

This skill:

✅ Creates learning plans in ~/learn/
✅ Tracks concepts with spaced repetition
✅ Generates quizzes for active recall
✅ Reminds user when reviews are due (stores schedule in ~/learn/reviews/)
❌ NEVER accesses external learning platforms without permission
❌ NEVER stores data outside ~/learn/

### Quick Reference

TopicFileCognitive principlescognition.mdSpaced repetition mathretention.mdVerification methodsverification.md

### 1. Workflow

Goal → Plan → Study → Practice → Verify → Review

### 2. Active Recall Only

NEVER passive review. Always:

Ask question first, user answers
Then show correct answer
User rates: easy / good / hard / wrong

### 3. Starting a Topic

User states what they want to learn
Create ~/learn/topics/{topic}/
Break down into concepts
Add to spaced repetition queue

### 4. Spaced Repetition

In concepts.json:

{
  "concept_name": {
    "added": "2024-03-15",
    "interval_days": 1,
    "next_review": "2024-03-16",
    "ease_factor": 2.5,
    "reviews": 0
  }
}

After each review:

Correct → increase interval (×ease_factor)
Incorrect → reset to 1 day

### 5. Verification

Before marking "mastered":

Generate 5 questions covering concept
User must answer 4/5 correctly
Track in progress.md (topic folder)

### 6. Configuration

In ~/learn/config.json:

{
  "depth": "standard",
  "learner_type": "practical",
  "daily_review_limit": 20
}
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.2
## 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-04-30T06:09:32.472Z
- Expires at: 2026-05-07T06:09:32.472Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/learn)
- [Send to Agent page](https://openagent3.xyz/skills/learn/agent)
- [JSON manifest](https://openagent3.xyz/skills/learn/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/learn/agent.md)
- [Download page](https://openagent3.xyz/downloads/learn)