{
  "schemaVersion": "1.0",
  "item": {
    "slug": "apple-notes-extractor",
    "name": "Apple Notes Extractor",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/ianderrington/apple-notes-extractor",
    "canonicalUrl": "https://clawhub.ai/ianderrington/apple-notes-extractor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/apple-notes-extractor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=apple-notes-extractor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "AUTOMATION_INTEGRATION.md",
      "INTEGRATION.md",
      "INTEGRATION_CHECKLIST.md",
      "README.md",
      "SKILL.md",
      "USAGE.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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/apple-notes-extractor"
    },
    "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/apple-notes-extractor",
    "agentPageUrl": "https://openagent3.xyz/skills/apple-notes-extractor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/apple-notes-extractor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/apple-notes-extractor/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Apple Notes Skill",
        "body": "Extract and monitor Apple Notes content for workflow integration with support for bulk extraction, real-time monitoring, and export to various formats."
      },
      {
        "title": "Prerequisites",
        "body": "macOS with Apple Notes app\nPython 3.8+ (for coordination scripts)\nosascript (built-in macOS)\nProper macOS permissions for Notes access"
      },
      {
        "title": "Installation",
        "body": "# Run the installation script\n./scripts/setup.sh\n\n# Or manual setup\nchmod +x scripts/*.py\npip3 install -r requirements.txt"
      },
      {
        "title": "Extract Notes",
        "body": "# Basic extraction (all notes)\npython3 scripts/extract-notes.py --method simple\n\n# Full extraction with attachments\npython3 scripts/extract-notes.py --method full\n\n# Extract specific folder\npython3 scripts/extract-notes.py --folder \"Work Notes\"\n\n# Output to specific format\npython3 scripts/extract-notes.py --format markdown --output ~/notes"
      },
      {
        "title": "Monitor Notes",
        "body": "# Start monitoring daemon\npython3 scripts/monitor-notes.py --daemon\n\n# Single check for changes\npython3 scripts/monitor-notes.py --check-once\n\n# Monitor with custom interval (seconds)\npython3 scripts/monitor-notes.py --interval 30"
      },
      {
        "title": "Processing and Export",
        "body": "# Process extracted notes\npython3 scripts/notes-processor.py output/raw -o output/processed\n\n# Export to Obsidian\npython3 scripts/export-obsidian.py --vault ~/MyVault\n\n# Generate knowledge graph\npython3 scripts/knowledge-graph.py --input output/processed"
      },
      {
        "title": "Configuration",
        "body": "Edit configs/extractor.json for:\n\nOutput formats (JSON, Markdown, HTML)\nPrivacy filters\nFolder selection\nProcessing options\n\nEdit configs/monitor.json for:\n\nMonitoring intervals\nChange detection settings\nAuto-processing rules"
      },
      {
        "title": "Features",
        "body": "✅ Extract text content from all notes\n✅ Handle embedded images and attachments\n✅ Process note metadata (dates, folders)\n✅ Multiple output formats (JSON, Markdown, SQLite)\n✅ Real-time monitoring for changes\n✅ Privacy-first design with local processing\n✅ Integration with knowledge management tools\n✅ Automatic deduplication\n✅ Incremental updates"
      },
      {
        "title": "Output Formats",
        "body": "FormatDescriptionUse CasejsonStructured data with metadataAPI integrationmarkdownHuman-readable text filesDocumentationsqliteDatabase formatSearchable archiveobsidianObsidian vault formatKnowledge management"
      },
      {
        "title": "Examples",
        "body": "# Quick start - extract all notes to Markdown\npython3 scripts/extract-notes.py --format markdown --output ~/extracted-notes\n\n# Monitor and auto-export to Obsidian\npython3 scripts/monitor-notes.py --daemon --auto-export obsidian\n\n# Extract work notes with full content\npython3 scripts/extract-notes.py --method full --folder \"Work Notes\" --format json\n\n# Process and create knowledge graph\npython3 scripts/extract-notes.py --method full\npython3 scripts/notes-processor.py output/raw -o output/processed\npython3 scripts/knowledge-graph.py --input output/processed --output knowledge-graph.json"
      },
      {
        "title": "Security & Privacy",
        "body": "All processing happens locally on your machine\nNo data sent to external services\nRespects macOS security permissions\nConfigurable privacy filters for sensitive content\nOptional encryption for exported data"
      },
      {
        "title": "Integration",
        "body": "Compatible with:\n\nObsidian (direct vault export)\nLogseq (Markdown export)\nNotion (JSON import)\nCustom workflows (JSON/CSV output)\nAI processing pipelines\nSearch engines (full-text indexing)"
      },
      {
        "title": "Troubleshooting",
        "body": "Common issues:\n\nPermission denied: Grant Notes access in System Preferences → Security & Privacy\nImport errors: Ensure Python 3.8+ and required packages installed\nAppleScript errors: Check if Notes app is running and accessible\nEmpty output: Verify folder names and note permissions\n\nSee README.md for detailed troubleshooting guide."
      }
    ],
    "body": "Apple Notes Skill\n\nExtract and monitor Apple Notes content for workflow integration with support for bulk extraction, real-time monitoring, and export to various formats.\n\nPrerequisites\nmacOS with Apple Notes app\nPython 3.8+ (for coordination scripts)\nosascript (built-in macOS)\nProper macOS permissions for Notes access\nInstallation\n# Run the installation script\n./scripts/setup.sh\n\n# Or manual setup\nchmod +x scripts/*.py\npip3 install -r requirements.txt\n\nCommands\nExtract Notes\n# Basic extraction (all notes)\npython3 scripts/extract-notes.py --method simple\n\n# Full extraction with attachments\npython3 scripts/extract-notes.py --method full\n\n# Extract specific folder\npython3 scripts/extract-notes.py --folder \"Work Notes\"\n\n# Output to specific format\npython3 scripts/extract-notes.py --format markdown --output ~/notes\n\nMonitor Notes\n# Start monitoring daemon\npython3 scripts/monitor-notes.py --daemon\n\n# Single check for changes\npython3 scripts/monitor-notes.py --check-once\n\n# Monitor with custom interval (seconds)\npython3 scripts/monitor-notes.py --interval 30\n\nProcessing and Export\n# Process extracted notes\npython3 scripts/notes-processor.py output/raw -o output/processed\n\n# Export to Obsidian\npython3 scripts/export-obsidian.py --vault ~/MyVault\n\n# Generate knowledge graph\npython3 scripts/knowledge-graph.py --input output/processed\n\nConfiguration\n\nEdit configs/extractor.json for:\n\nOutput formats (JSON, Markdown, HTML)\nPrivacy filters\nFolder selection\nProcessing options\n\nEdit configs/monitor.json for:\n\nMonitoring intervals\nChange detection settings\nAuto-processing rules\nFeatures\n✅ Extract text content from all notes\n✅ Handle embedded images and attachments\n✅ Process note metadata (dates, folders)\n✅ Multiple output formats (JSON, Markdown, SQLite)\n✅ Real-time monitoring for changes\n✅ Privacy-first design with local processing\n✅ Integration with knowledge management tools\n✅ Automatic deduplication\n✅ Incremental updates\nOutput Formats\nFormat\tDescription\tUse Case\njson\tStructured data with metadata\tAPI integration\nmarkdown\tHuman-readable text files\tDocumentation\nsqlite\tDatabase format\tSearchable archive\nobsidian\tObsidian vault format\tKnowledge management\nExamples\n# Quick start - extract all notes to Markdown\npython3 scripts/extract-notes.py --format markdown --output ~/extracted-notes\n\n# Monitor and auto-export to Obsidian\npython3 scripts/monitor-notes.py --daemon --auto-export obsidian\n\n# Extract work notes with full content\npython3 scripts/extract-notes.py --method full --folder \"Work Notes\" --format json\n\n# Process and create knowledge graph\npython3 scripts/extract-notes.py --method full\npython3 scripts/notes-processor.py output/raw -o output/processed\npython3 scripts/knowledge-graph.py --input output/processed --output knowledge-graph.json\n\nSecurity & Privacy\nAll processing happens locally on your machine\nNo data sent to external services\nRespects macOS security permissions\nConfigurable privacy filters for sensitive content\nOptional encryption for exported data\nIntegration\n\nCompatible with:\n\nObsidian (direct vault export)\nLogseq (Markdown export)\nNotion (JSON import)\nCustom workflows (JSON/CSV output)\nAI processing pipelines\nSearch engines (full-text indexing)\nTroubleshooting\n\nCommon issues:\n\nPermission denied: Grant Notes access in System Preferences → Security & Privacy\nImport errors: Ensure Python 3.8+ and required packages installed\nAppleScript errors: Check if Notes app is running and accessible\nEmpty output: Verify folder names and note permissions\n\nSee README.md for detailed troubleshooting guide."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ianderrington/apple-notes-extractor",
    "publisherUrl": "https://clawhub.ai/ianderrington/apple-notes-extractor",
    "owner": "ianderrington",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/apple-notes-extractor",
    "downloadUrl": "https://openagent3.xyz/downloads/apple-notes-extractor",
    "agentUrl": "https://openagent3.xyz/skills/apple-notes-extractor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/apple-notes-extractor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/apple-notes-extractor/agent.md"
  }
}