# Send Reflect Notes to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/reflect",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reflect",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/reflect.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "reflect",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T12:03:26.744Z",
      "expiresAt": "2026-05-07T12:03:26.744Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reflect",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reflect",
        "contentDisposition": "attachment; filename=\"reflect-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "reflect"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## 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 https://reflect.app/developer/oauth
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" https://reflect.app/api/graphs

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: https://reflect.app/api
Auth: Authorization: Bearer <access_token>

### Append to Daily Note

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
  }'

### Create a Note

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
  }'

### Create a Link

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"]
  }'

### Get Links

curl "https://reflect.app/api/graphs/$REFLECT_GRAPH_ID/links" \\
  -H "Authorization: Bearer $REFLECT_TOKEN"

### Helper Script

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"

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sergical
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T12:03:26.744Z
- Expires at: 2026-05-07T12:03:26.744Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/reflect)
- [Send to Agent page](https://openagent3.xyz/skills/reflect/agent)
- [JSON manifest](https://openagent3.xyz/skills/reflect/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/reflect/agent.md)
- [Download page](https://openagent3.xyz/downloads/reflect)