Append to daily notes and create notes in Reflect. Use for capturing thoughts, todos, or syncing information to your knowledge graph.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install reflect或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install reflect⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/reflect/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: reflect description: Append to daily notes and create notes in Reflect. Use for capturing thoughts, todos, or syncing information to your knowledge graph. homepage: https://reflect.app ---
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.
```bash 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]]安装 Reflect Notes 后,可以对 AI 说这些话来触发它
Help me get started with Reflect Notes
Explains what Reflect Notes does, walks through the setup, and runs a quick demo based on your current project
Use Reflect Notes to append to daily notes and create notes in Reflect
Invokes Reflect Notes with the right parameters and returns the result directly in the conversation
What can I do with Reflect Notes in my documents & notes workflow?
Lists the top use cases for Reflect Notes, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/reflect/ 目录(个人级,所有项目可用),或 .claude/skills/reflect/(项目级)。重启 AI 客户端后,用 /reflect 主动调用,或让 AI 根据上下文自动发现并使用。
Reflect Notes 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Reflect Notes 可免费安装使用。请查阅仓库了解许可证信息。
Append to daily notes and create notes in Reflect. Use for capturing thoughts, todos, or syncing information to your knowledge graph.
Reflect Notes 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using Reflect Notes
Identifies repetitive steps in your workflow and sets up Reflect Notes to handle them automatically