# Send Soft Pillow - Sleep & dream journal 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": "soft-pillow",
    "name": "Soft Pillow - Sleep & dream journal",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/kivS/soft-pillow",
    "canonicalUrl": "https://clawhub.ai/kivS/soft-pillow",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/soft-pillow",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=soft-pillow",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "soft-pillow",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T04:58:09.820Z",
      "expiresAt": "2026-05-07T04:58:09.820Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=soft-pillow",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=soft-pillow",
        "contentDisposition": "attachment; filename=\"soft-pillow-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "soft-pillow"
      },
      "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/soft-pillow"
    },
    "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/soft-pillow",
    "downloadUrl": "https://openagent3.xyz/downloads/soft-pillow",
    "agentUrl": "https://openagent3.xyz/skills/soft-pillow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/soft-pillow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/soft-pillow/agent.md"
  }
}
```
## Documentation

### Soft Pillow

Soft Pillow is an IOS app that allows you to log your sleep & dreams.
It tracks your mood, disruptions, dreams and physical activity(steps through the Apple Healthkit if available) after each sleep entry so you can have a better understanding about what makes your sleep quality better over time.
The user can install it from the app store, get an api key from the settings screen and give it to you so you can access all of the data.

Apple store link - https://apps.apple.com/us/app/soft-pillow/id6757248808
Website - https://paevita.com/en/soft-pillow

### Skill URL

FileURLSKILL.md (this file)/soft-pillow/SKILL.md

### Authentication

All requests require the api key to be sent with the request in the authorization header.

Authorization: Bearer sp_...

You can manage api tokens in the settings screen, in the API access section.

Once you have the api key, it's recommended it locally and securily.

### API Base

https://softpillow.paevita.com

### Endpoints

Current API endpoints:

GET /api/v1/sleep_status
GET /api/v1/sleep_entries
GET /api/v1/sleep_entries/:id
GET /api/v1/search_dreams

### Sleep status

curl -H "Authorization: Bearer SOFT_PILLOW_API_KEY" "https://softpillow.paevita.com/api/v1/sleep_status"

Response:

{ "sleeping": false }

### List sleep entries

curl -H "Authorization: Bearer SOFT_PILLOW_API_KEY" \\
  "https://softpillow.paevita.com/api/v1/sleep_entries?limit=10&from_date=2026-01-01&to_date=2026-01-31&mood=good"

Filters:

limit (max 100)
from_date (YYYY-MM-DD)
to_date (YYYY-MM-DD)
mood (fully_charged, good, sleepy, terrible)
missing_steps=true

### Get one sleep entry (details)

curl -H "Authorization: Bearer SOFT_PILLOW_API_KEY" \\
  "https://softpillow.paevita.com/api/v1/sleep_entries/ENTRY_ID"

Returns summary + details (dream, notes, disruptions, insights, timestamps).

### Search dreams and notes

curl --get -H "Authorization: Bearer SOFT_PILLOW_API_KEY" \\
  --data-urlencode "query=flying ocean" \\
  "https://softpillow.paevita.com/api/v1/search_dreams"

Optional:

limit (max 50, default 10)

Returns entry matches with dream_excerpt and notes_excerpt.

### Error behavior

Missing/invalid auth: 401 JSON error
Invalid filters (for example bad mood or bad date): 422 JSON error
Entry not found (or not yours): 404 JSON error
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kivS
- Version: 1.0.2
## 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-30T04:58:09.820Z
- Expires at: 2026-05-07T04:58:09.820Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/soft-pillow)
- [Send to Agent page](https://openagent3.xyz/skills/soft-pillow/agent)
- [JSON manifest](https://openagent3.xyz/skills/soft-pillow/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/soft-pillow/agent.md)
- [Download page](https://openagent3.xyz/downloads/soft-pillow)