{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lofy-home",
    "name": "Lofy Home",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/harrey401/lofy-home",
    "canonicalUrl": "https://clawhub.ai/harrey401/lofy-home",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/lofy-home",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lofy-home",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/lofy-home"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/lofy-home",
    "agentPageUrl": "https://openagent3.xyz/skills/lofy-home/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lofy-home/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lofy-home/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Home Commander — Environment Control",
        "body": "Controls smart home and computing environment via Home Assistant. Manages scene modes, device control, and presence-based actions."
      },
      {
        "title": "Data File: data/home-config.json",
        "body": "{\n  \"scenes\": {\n    \"study\": { \"lights\": { \"desk_lamp\": { \"on\": true, \"brightness\": 100, \"color_temp\": \"cool\" } }, \"music\": { \"playlist\": \"lofi-focus\", \"volume\": 25 }, \"other\": { \"dnd\": true } },\n    \"chill\": { \"lights\": { \"desk_lamp\": { \"on\": true, \"brightness\": 40, \"color_temp\": \"warm\" } }, \"music\": { \"playlist\": \"chill-vibes\", \"volume\": 35 }, \"other\": {} },\n    \"sleep\": { \"lights\": {}, \"music\": { \"playlist\": \"white-noise\", \"volume\": 15 }, \"other\": {} }\n  },\n  \"devices\": {\n    \"desk_lamp\": { \"entity_id\": \"light.desk_lamp\", \"type\": \"light\" },\n    \"speaker\": { \"entity_id\": \"media_player.room_speaker\", \"type\": \"media_player\" }\n  },\n  \"home_assistant\": { \"url\": \"http://homeassistant.local:8123\", \"token_env\": \"HA_TOKEN\" }\n}"
      },
      {
        "title": "Scene Activation",
        "body": "When user says \"study mode\", \"chill mode\", etc.:\n\nRead scene definition from data/home-config.json\nExecute each device command via Home Assistant API\nConfirm briefly: \"Study mode ✓ — desk lamp bright, lo-fi on, DND\""
      },
      {
        "title": "Home Assistant API",
        "body": "# Light control\ncurl -s -X POST \"$HA_URL/api/services/light/turn_on\" \\\n  -H \"Authorization: Bearer $HA_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"entity_id\": \"light.desk_lamp\", \"brightness_pct\": 100}'\n\n# Media playback\ncurl -s -X POST \"$HA_URL/api/services/media_player/play_media\" \\\n  -H \"Authorization: Bearer $HA_TOKEN\" \\\n  -d '{\"entity_id\": \"media_player.speaker\", \"media_content_id\": \"spotify:playlist:xxx\", \"media_content_type\": \"playlist\"}'\n\n# Wake-on-LAN\ncurl -s -X POST \"$HA_URL/api/services/wake_on_lan/send_magic_packet\" \\\n  -H \"Authorization: Bearer $HA_TOKEN\" \\\n  -d '{\"mac\": \"XX:XX:XX:XX:XX:XX\"}'"
      },
      {
        "title": "Quick Commands",
        "body": "\"lights off\" → turn off all lights\n\"dim the lights\" → all lights to 20%\n\"play some music\" → default to chill playlist\n\"it's cold\" → thermostat up 2°F\n\"turn on my PC\" → WOL packet\n\"goodnight\" → sleep mode\n\"I'm heading out\" → lights off, eco mode\n\"I'm home\" → scene based on time of day"
      },
      {
        "title": "Instructions",
        "body": "Read data/home-config.json for device mappings and scenes\nConfirm actions in ONE short message\nIf a device fails, report which one and suggest a fix\nNever execute \"turn off all devices\" without confirmation\nIf Home Assistant is unreachable, report and suggest checking connection\nDevice entity_ids must be configured by user — prompt if missing"
      }
    ],
    "body": "Home Commander — Environment Control\n\nControls smart home and computing environment via Home Assistant. Manages scene modes, device control, and presence-based actions.\n\nData File: data/home-config.json\n{\n  \"scenes\": {\n    \"study\": { \"lights\": { \"desk_lamp\": { \"on\": true, \"brightness\": 100, \"color_temp\": \"cool\" } }, \"music\": { \"playlist\": \"lofi-focus\", \"volume\": 25 }, \"other\": { \"dnd\": true } },\n    \"chill\": { \"lights\": { \"desk_lamp\": { \"on\": true, \"brightness\": 40, \"color_temp\": \"warm\" } }, \"music\": { \"playlist\": \"chill-vibes\", \"volume\": 35 }, \"other\": {} },\n    \"sleep\": { \"lights\": {}, \"music\": { \"playlist\": \"white-noise\", \"volume\": 15 }, \"other\": {} }\n  },\n  \"devices\": {\n    \"desk_lamp\": { \"entity_id\": \"light.desk_lamp\", \"type\": \"light\" },\n    \"speaker\": { \"entity_id\": \"media_player.room_speaker\", \"type\": \"media_player\" }\n  },\n  \"home_assistant\": { \"url\": \"http://homeassistant.local:8123\", \"token_env\": \"HA_TOKEN\" }\n}\n\nScene Activation\n\nWhen user says \"study mode\", \"chill mode\", etc.:\n\nRead scene definition from data/home-config.json\nExecute each device command via Home Assistant API\nConfirm briefly: \"Study mode ✓ — desk lamp bright, lo-fi on, DND\"\nHome Assistant API\n# Light control\ncurl -s -X POST \"$HA_URL/api/services/light/turn_on\" \\\n  -H \"Authorization: Bearer $HA_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"entity_id\": \"light.desk_lamp\", \"brightness_pct\": 100}'\n\n# Media playback\ncurl -s -X POST \"$HA_URL/api/services/media_player/play_media\" \\\n  -H \"Authorization: Bearer $HA_TOKEN\" \\\n  -d '{\"entity_id\": \"media_player.speaker\", \"media_content_id\": \"spotify:playlist:xxx\", \"media_content_type\": \"playlist\"}'\n\n# Wake-on-LAN\ncurl -s -X POST \"$HA_URL/api/services/wake_on_lan/send_magic_packet\" \\\n  -H \"Authorization: Bearer $HA_TOKEN\" \\\n  -d '{\"mac\": \"XX:XX:XX:XX:XX:XX\"}'\n\nQuick Commands\n\"lights off\" → turn off all lights\n\"dim the lights\" → all lights to 20%\n\"play some music\" → default to chill playlist\n\"it's cold\" → thermostat up 2°F\n\"turn on my PC\" → WOL packet\n\"goodnight\" → sleep mode\n\"I'm heading out\" → lights off, eco mode\n\"I'm home\" → scene based on time of day\nInstructions\nRead data/home-config.json for device mappings and scenes\nConfirm actions in ONE short message\nIf a device fails, report which one and suggest a fix\nNever execute \"turn off all devices\" without confirmation\nIf Home Assistant is unreachable, report and suggest checking connection\nDevice entity_ids must be configured by user — prompt if missing"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/harrey401/lofy-home",
    "publisherUrl": "https://clawhub.ai/harrey401/lofy-home",
    "owner": "harrey401",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/lofy-home",
    "downloadUrl": "https://openagent3.xyz/downloads/lofy-home",
    "agentUrl": "https://openagent3.xyz/skills/lofy-home/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lofy-home/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lofy-home/agent.md"
  }
}