{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/learn",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=learn",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "cognition.md",
      "retention.md",
      "verification.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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/learn",
    "agentPageUrl": "https://openagent3.xyz/skills/learn/agent",
    "manifestUrl": "https://openagent3.xyz/skills/learn/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/learn/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": "Data Storage",
        "body": "~/learn/\n├── topics/              # One folder per topic\n│   └── {topic}/\n│       ├── concepts.json   # Concepts with SR schedule\n│       ├── notes.md        # Study notes\n│       └── progress.md     # Mastery tracking\n├── reviews/             # Due review queue\n│   └── due.json\n└── config.json          # Preferences\n\nCreate on first use: mkdir -p ~/learn/{topics,reviews}"
      },
      {
        "title": "Scope",
        "body": "This skill:\n\n✅ Creates learning plans in ~/learn/\n✅ Tracks concepts with spaced repetition\n✅ Generates quizzes for active recall\n✅ Reminds user when reviews are due (stores schedule in ~/learn/reviews/)\n❌ NEVER accesses external learning platforms without permission\n❌ NEVER stores data outside ~/learn/"
      },
      {
        "title": "Quick Reference",
        "body": "TopicFileCognitive principlescognition.mdSpaced repetition mathretention.mdVerification methodsverification.md"
      },
      {
        "title": "1. Workflow",
        "body": "Goal → Plan → Study → Practice → Verify → Review"
      },
      {
        "title": "2. Active Recall Only",
        "body": "NEVER passive review. Always:\n\nAsk question first, user answers\nThen show correct answer\nUser rates: easy / good / hard / wrong"
      },
      {
        "title": "3. Starting a Topic",
        "body": "User states what they want to learn\nCreate ~/learn/topics/{topic}/\nBreak down into concepts\nAdd to spaced repetition queue"
      },
      {
        "title": "4. Spaced Repetition",
        "body": "In concepts.json:\n\n{\n  \"concept_name\": {\n    \"added\": \"2024-03-15\",\n    \"interval_days\": 1,\n    \"next_review\": \"2024-03-16\",\n    \"ease_factor\": 2.5,\n    \"reviews\": 0\n  }\n}\n\nAfter each review:\n\nCorrect → increase interval (×ease_factor)\nIncorrect → reset to 1 day"
      },
      {
        "title": "5. Verification",
        "body": "Before marking \"mastered\":\n\nGenerate 5 questions covering concept\nUser must answer 4/5 correctly\nTrack in progress.md (topic folder)"
      },
      {
        "title": "6. Configuration",
        "body": "In ~/learn/config.json:\n\n{\n  \"depth\": \"standard\",\n  \"learner_type\": \"practical\",\n  \"daily_review_limit\": 20\n}"
      }
    ],
    "body": "Data Storage\n~/learn/\n├── topics/              # One folder per topic\n│   └── {topic}/\n│       ├── concepts.json   # Concepts with SR schedule\n│       ├── notes.md        # Study notes\n│       └── progress.md     # Mastery tracking\n├── reviews/             # Due review queue\n│   └── due.json\n└── config.json          # Preferences\n\n\nCreate on first use: mkdir -p ~/learn/{topics,reviews}\n\nScope\n\nThis skill:\n\n✅ Creates learning plans in ~/learn/\n✅ Tracks concepts with spaced repetition\n✅ Generates quizzes for active recall\n✅ Reminds user when reviews are due (stores schedule in ~/learn/reviews/)\n❌ NEVER accesses external learning platforms without permission\n❌ NEVER stores data outside ~/learn/\nQuick Reference\nTopic\tFile\nCognitive principles\tcognition.md\nSpaced repetition math\tretention.md\nVerification methods\tverification.md\nCore Rules\n1. Workflow\nGoal → Plan → Study → Practice → Verify → Review\n\n2. Active Recall Only\n\nNEVER passive review. Always:\n\nAsk question first, user answers\nThen show correct answer\nUser rates: easy / good / hard / wrong\n3. Starting a Topic\nUser states what they want to learn\nCreate ~/learn/topics/{topic}/\nBreak down into concepts\nAdd to spaced repetition queue\n4. Spaced Repetition\n\nIn concepts.json:\n\n{\n  \"concept_name\": {\n    \"added\": \"2024-03-15\",\n    \"interval_days\": 1,\n    \"next_review\": \"2024-03-16\",\n    \"ease_factor\": 2.5,\n    \"reviews\": 0\n  }\n}\n\n\nAfter each review:\n\nCorrect → increase interval (×ease_factor)\nIncorrect → reset to 1 day\n5. Verification\n\nBefore marking \"mastered\":\n\nGenerate 5 questions covering concept\nUser must answer 4/5 correctly\nTrack in progress.md (topic folder)\n6. Configuration\n\nIn ~/learn/config.json:\n\n{\n  \"depth\": \"standard\",\n  \"learner_type\": \"practical\",\n  \"daily_review_limit\": 20\n}"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/learn",
    "publisherUrl": "https://clawhub.ai/ivangdavila/learn",
    "owner": "ivangdavila",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}