reflectAppend to daily notes and create notes in Reflect. Use for capturing thoughts, todos, or syncing information to your knowledge graph.
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.
export REFLECT_TOKEN="your-access-token"
export REFLECT_GRAPH_ID="your-graph-id" # Find via: curl -H "Authorization: Bearer $REFLECT_TOKEN" https://reflect.app/api/graphs
Or store in 1Password and update scripts/reflect.sh with your vault/item path.
Base URL: https://reflect.app/api
Auth: Authorization: Bearer
curl -X PUT "https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/daily-notes" \
-H "Authorization: Bearer $REFLECT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"text": "Your text here",
"transform_type": "list-append",
"date": "2026-01-25", # optional, defaults to today
"list_name": "[[List Name]]" # optional, append to specific list
}'
curl -X POST "https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/notes" \
-H "Authorization: Bearer $REFLECT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"subject": "Note Title",
"content_markdown": "# Heading\n\nContent here...",
"pinned": false
}'
curl -X POST "https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/links" \
-H "Authorization: Bearer $REFLECT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com",
"title": "Page Title",
"description": "Optional description",
"highlights": ["Quote 1", "Quote 2"]
}'
curl "https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/links" \
-H "Authorization: Bearer $REFLECT_TOKEN"
Use scripts/reflect.sh for common operations:
# Append to daily note
./scripts/reflect.sh daily "Remember to review PR #6"
# Append to specific list in daily note
./scripts/reflect.sh daily "Buy milk" "[[Shopping]]"
# Create a new note
./scripts/reflect.sh note "Meeting Notes" "# Standup\n\n- Discussed X\n- Action item: Y"
# Save a link
./scripts/reflect.sh link "https://example.com" "Example Site" "Great resource"
[[Ideas]] or [[Project Name]]Generated Mar 1, 2026
During virtual meetings, an AI assistant can automatically capture key discussion points, decisions, and action items, then append them to the user's daily note in Reflect. This ensures meeting summaries are securely stored and linked to the correct date for easy reference, without manual transcription.
Content creators or researchers can use the AI to save interesting articles, videos, or resources as links with highlights directly to Reflect. This automates the process of building a knowledge base, allowing quick retrieval of saved materials for future projects or inspiration.
Project managers can integrate the AI with task-tracking tools to sync todos or reminders into Reflect's daily notes. For example, tasks from a chat conversation can be appended to specific lists like [[Work Tasks]], providing a persistent, encrypted backup outside the primary tool.
Individuals can use the AI to capture spontaneous thoughts, reflections, or ideas throughout the day, appending them to their daily note in Reflect. This supports mental clarity and habit-building by offloading memory to a secure, append-only system without risking data exposure.
Offer a basic free tier with limited API calls or note appends, then charge for premium features like advanced integrations, higher usage limits, or priority support. This model attracts individual users and small teams while monetizing heavy enterprise usage.
License the skill to businesses for embedding into their internal tools or workflows, such as CRM or project management software. Charge based on the number of users or API transactions, providing custom support and integration services.
Promote Reflect's premium plans or related productivity tools through the skill's documentation or helper scripts. Earn commissions on referrals, leveraging the user base interested in note-taking and knowledge management enhancements.
💬 Integration Tip
Use the provided helper script to simplify common operations, and ensure environment variables are securely managed, such as through a password manager like 1Password.
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.
Create, search, and manage Bear notes via grizzly CLI.
Track water and sleep with JSON file storage
Notion API for creating and managing pages, databases, and blocks.
Smart ClawdBot documentation access with local search index, cached snippets, and on-demand fetch. Token-efficient and freshness-aware.
Work with Obsidian vaults as a knowledge base. Features: fuzzy/phonetic search across all notes, auto-folder detection for new notes, create/read/edit notes with frontmatter, manage tags and wikilinks. Use when: querying knowledge base, saving notes/documents, editing existing notes by user instructions.