Notes & PKMDocumentedScanned

reflect

Append to daily notes and create notes in Reflect.

Share:

Installation

npx clawhub@latest install reflect

View the full skill documentation and source below.

Documentation

Reflect Notes Skill

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.

Setup

  • Create OAuth credentials at

  • Generate an access token from that interface

  • Set environment variables:

  • export REFLECT_TOKEN="your-access-token"
       export REFLECT_GRAPH_ID="your-graph-id"  # Find via: curl -H "Authorization: Bearer $REFLECT_TOKEN"

    Or store in 1Password and update scripts/reflect.sh with your vault/item path.

    What We Can Do

  • Append to daily notes — Add items to today's note (or a specific date)

  • Create new notes — Create standalone notes with subject + markdown content

  • Create links — Save bookmarks with highlights

  • Get links/books — Retrieve saved links and books
  • API Reference

    Base URL: Auth: Authorization: Bearer ### Append to Daily Note __CODE_BLOCK_1__ ### Create a Note __CODE_BLOCK_2__ ### Create a Link __CODE_BLOCK_3__ ### Get Links __CODE_BLOCK_4__ ## Helper Script Use scripts/reflect.sh for common operations: __CODE_BLOCK_5__ ## Use Cases - **Capture todos** from chat → append to daily note - **Save interesting links** mentioned in conversation - **Create meeting notes** or summaries - **Sync reminders** to Reflect for persistence - **Backlink to lists** like [[Ideas]] or [[Project Name]]`

    Limitations

    • Cannot read note contents (E2E encrypted)
    • Append-only — can't edit or delete existing content
    • No search — can't query existing notes