{
  "schemaVersion": "1.0",
  "item": {
    "slug": "reflect",
    "name": "Reflect Notes",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/sergical/reflect",
    "canonicalUrl": "https://clawhub.ai/sergical/reflect",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/reflect",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reflect",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/reflect.sh"
    ],
    "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/reflect"
    },
    "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/reflect",
    "agentPageUrl": "https://openagent3.xyz/skills/reflect/agent",
    "manifestUrl": "https://openagent3.xyz/skills/reflect/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/reflect/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": "Reflect Notes Skill",
        "body": "Reflect is a networked note-taking app. Notes are E2E encrypted, so the API is append-only — we can write but not read note contents."
      },
      {
        "title": "Setup",
        "body": "Create OAuth credentials at https://reflect.app/developer/oauth\nGenerate an access token from that interface\nSet environment variables:\nexport REFLECT_TOKEN=\"your-access-token\"\nexport REFLECT_GRAPH_ID=\"your-graph-id\"  # Find via: curl -H \"Authorization: Bearer $REFLECT_TOKEN\" https://reflect.app/api/graphs\n\nOr store in 1Password and update scripts/reflect.sh with your vault/item path."
      },
      {
        "title": "What We Can Do",
        "body": "Append to daily notes — Add items to today's note (or a specific date)\nCreate new notes — Create standalone notes with subject + markdown content\nCreate links — Save bookmarks with highlights\nGet links/books — Retrieve saved links and books"
      },
      {
        "title": "API Reference",
        "body": "Base URL: https://reflect.app/api\nAuth: Authorization: Bearer <access_token>"
      },
      {
        "title": "Append to Daily Note",
        "body": "curl -X PUT \"https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/daily-notes\" \\\n  -H \"Authorization: Bearer $REFLECT_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"text\": \"Your text here\",\n    \"transform_type\": \"list-append\",\n    \"date\": \"2026-01-25\",          # optional, defaults to today\n    \"list_name\": \"[[List Name]]\"   # optional, append to specific list\n  }'"
      },
      {
        "title": "Create a Note",
        "body": "curl -X POST \"https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/notes\" \\\n  -H \"Authorization: Bearer $REFLECT_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"subject\": \"Note Title\",\n    \"content_markdown\": \"# Heading\\n\\nContent here...\",\n    \"pinned\": false\n  }'"
      },
      {
        "title": "Create a Link",
        "body": "curl -X POST \"https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/links\" \\\n  -H \"Authorization: Bearer $REFLECT_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"url\": \"https://example.com\",\n    \"title\": \"Page Title\",\n    \"description\": \"Optional description\",\n    \"highlights\": [\"Quote 1\", \"Quote 2\"]\n  }'"
      },
      {
        "title": "Get Links",
        "body": "curl \"https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/links\" \\\n  -H \"Authorization: Bearer $REFLECT_TOKEN\""
      },
      {
        "title": "Helper Script",
        "body": "Use scripts/reflect.sh for common operations:\n\n# Append to daily note\n./scripts/reflect.sh daily \"Remember to review PR #6\"\n\n# Append to specific list in daily note  \n./scripts/reflect.sh daily \"Buy milk\" \"[[Shopping]]\"\n\n# Create a new note\n./scripts/reflect.sh note \"Meeting Notes\" \"# Standup\\n\\n- Discussed X\\n- Action item: Y\"\n\n# Save a link\n./scripts/reflect.sh link \"https://example.com\" \"Example Site\" \"Great resource\""
      },
      {
        "title": "Use Cases",
        "body": "Capture todos from chat → append to daily note\nSave interesting links mentioned in conversation\nCreate meeting notes or summaries\nSync reminders to Reflect for persistence\nBacklink to lists like [[Ideas]] or [[Project Name]]"
      },
      {
        "title": "Limitations",
        "body": "Cannot read note contents (E2E encrypted)\nAppend-only — can't edit or delete existing content\nNo search — can't query existing notes"
      }
    ],
    "body": "Reflect Notes Skill\n\nReflect is a networked note-taking app. Notes are E2E encrypted, so the API is append-only — we can write but not read note contents.\n\nSetup\nCreate OAuth credentials at https://reflect.app/developer/oauth\nGenerate an access token from that interface\nSet environment variables:\nexport REFLECT_TOKEN=\"your-access-token\"\nexport REFLECT_GRAPH_ID=\"your-graph-id\"  # Find via: curl -H \"Authorization: Bearer $REFLECT_TOKEN\" https://reflect.app/api/graphs\n\n\nOr store in 1Password and update scripts/reflect.sh with your vault/item path.\n\nWhat We Can Do\nAppend to daily notes — Add items to today's note (or a specific date)\nCreate new notes — Create standalone notes with subject + markdown content\nCreate links — Save bookmarks with highlights\nGet links/books — Retrieve saved links and books\nAPI Reference\n\nBase URL: https://reflect.app/api Auth: Authorization: Bearer <access_token>\n\nAppend to Daily Note\ncurl -X PUT \"https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/daily-notes\" \\\n  -H \"Authorization: Bearer $REFLECT_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"text\": \"Your text here\",\n    \"transform_type\": \"list-append\",\n    \"date\": \"2026-01-25\",          # optional, defaults to today\n    \"list_name\": \"[[List Name]]\"   # optional, append to specific list\n  }'\n\nCreate a Note\ncurl -X POST \"https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/notes\" \\\n  -H \"Authorization: Bearer $REFLECT_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"subject\": \"Note Title\",\n    \"content_markdown\": \"# Heading\\n\\nContent here...\",\n    \"pinned\": false\n  }'\n\nCreate a Link\ncurl -X POST \"https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/links\" \\\n  -H \"Authorization: Bearer $REFLECT_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"url\": \"https://example.com\",\n    \"title\": \"Page Title\",\n    \"description\": \"Optional description\",\n    \"highlights\": [\"Quote 1\", \"Quote 2\"]\n  }'\n\nGet Links\ncurl \"https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/links\" \\\n  -H \"Authorization: Bearer $REFLECT_TOKEN\"\n\nHelper Script\n\nUse scripts/reflect.sh for common operations:\n\n# Append to daily note\n./scripts/reflect.sh daily \"Remember to review PR #6\"\n\n# Append to specific list in daily note  \n./scripts/reflect.sh daily \"Buy milk\" \"[[Shopping]]\"\n\n# Create a new note\n./scripts/reflect.sh note \"Meeting Notes\" \"# Standup\\n\\n- Discussed X\\n- Action item: Y\"\n\n# Save a link\n./scripts/reflect.sh link \"https://example.com\" \"Example Site\" \"Great resource\"\n\nUse Cases\nCapture todos from chat → append to daily note\nSave interesting links mentioned in conversation\nCreate meeting notes or summaries\nSync reminders to Reflect for persistence\nBacklink to lists like [[Ideas]] or [[Project Name]]\nLimitations\nCannot read note contents (E2E encrypted)\nAppend-only — can't edit or delete existing content\nNo search — can't query existing notes"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sergical/reflect",
    "publisherUrl": "https://clawhub.ai/sergical/reflect",
    "owner": "sergical",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/reflect",
    "downloadUrl": "https://openagent3.xyz/downloads/reflect",
    "agentUrl": "https://openagent3.xyz/skills/reflect/agent",
    "manifestUrl": "https://openagent3.xyz/skills/reflect/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/reflect/agent.md"
  }
}