{
  "schemaVersion": "1.0",
  "item": {
    "slug": "skylight-skill",
    "name": "Skylight",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/riyadchowdhury/skylight-skill",
    "canonicalUrl": "https://clawhub.ai/riyadchowdhury/skylight-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/skylight-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skylight-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/skylight-skill"
    },
    "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/skylight-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/skylight-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skylight-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skylight-skill/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Skylight Calendar",
        "body": "Control Skylight Calendar frame via the unofficial API."
      },
      {
        "title": "Setup",
        "body": "Set environment variables:\n\nSKYLIGHT_URL: Base URL (default: https://app.ourskylight.com)\nSKYLIGHT_FRAME_ID: Your frame (household) ID — find this by logging into ourskylight.com, clicking your calendar, and copying the number from the URL (e.g., 4197102 from https://ourskylight.com/calendar/4197102)\n\nAuthentication (choose one):\n\nOption A - Email/Password (recommended):\n\nSKYLIGHT_EMAIL: Your Skylight account email\nSKYLIGHT_PASSWORD: Your Skylight account password\n\nOption B - Pre-captured token:\n\nSKYLIGHT_TOKEN: Full Authorization header value (e.g., Basic abc123...)"
      },
      {
        "title": "Option A: Login with Email/Password (Recommended)",
        "body": "Generate a token by logging in with email and password:\n\n# Login and get user credentials\nLOGIN_RESPONSE=$(curl -s -X POST \"$SKYLIGHT_URL/api/sessions\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"email\": \"'\"$SKYLIGHT_EMAIL\"'\",\n    \"password\": \"'\"$SKYLIGHT_PASSWORD\"'\",\n    \"name\": \"\",\n    \"phone\": \"\",\n    \"resettingPassword\": \"false\",\n    \"textMeTheApp\": \"true\",\n    \"agreedToMarketing\": \"true\"\n  }')\n\n# Extract user_id and user_token from response\nUSER_ID=$(echo \"$LOGIN_RESPONSE\" | jq -r '.data.id')\nUSER_TOKEN=$(echo \"$LOGIN_RESPONSE\" | jq -r '.data.attributes.token')\n\n# Generate Basic auth token (base64 of user_id:user_token)\nSKYLIGHT_TOKEN=\"Basic $(echo -n \"${USER_ID}:${USER_TOKEN}\" | base64)\"\n\n# Now use $SKYLIGHT_TOKEN for all API requests\n\nThe login endpoint returns:\n\ndata.id: User ID\ndata.attributes.token: User token\n\nCombine as {user_id}:{user_token} and base64 encode for Basic auth."
      },
      {
        "title": "Option B: Capture Token via Proxy",
        "body": "If you prefer to capture a token manually:\n\nInstall Proxyman/Charles/mitmproxy and trust root certificate\nEnable SSL proxying for app.ourskylight.com\nLog into Skylight app and capture any API request\nCopy Authorization header value (e.g., Basic <token>)\n\nTokens rotate on logout; recapture after re-login."
      },
      {
        "title": "API Format",
        "body": "Responses use JSON:API format with data, included, and relationships fields."
      },
      {
        "title": "List events",
        "body": "curl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/calendar_events?date_min=2025-01-27&date_max=2025-01-31\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\" \\\n  -H \"Accept: application/json\"\n\nQuery params:\n\ndate_min (required): Start date YYYY-MM-DD\ndate_max (required): End date YYYY-MM-DD\ntimezone: Timezone string (optional)\ninclude: CSV of related resources (categories,calendar_account,event_notification_setting)"
      },
      {
        "title": "List source calendars",
        "body": "curl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/source_calendars\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\""
      },
      {
        "title": "List chores",
        "body": "curl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/chores?after=2025-01-27&before=2025-01-31\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\nQuery params:\n\nafter: Start date YYYY-MM-DD\nbefore: End date YYYY-MM-DD\ninclude_late: Include overdue chores (bool)\nfilter: Filter by linked_to_profile"
      },
      {
        "title": "Create chore",
        "body": "curl -s -X POST \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/chores\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"data\": {\n      \"type\": \"chore\",\n      \"attributes\": {\n        \"summary\": \"Take out trash\",\n        \"status\": \"pending\",\n        \"start\": \"2025-01-28\",\n        \"start_time\": \"08:00\",\n        \"recurring\": false\n      },\n      \"relationships\": {\n        \"category\": {\n          \"data\": {\"type\": \"category\", \"id\": \"CATEGORY_ID\"}\n        }\n      }\n    }\n  }'\n\nChore attributes:\n\nsummary: Chore title\nstatus: pending or completed\nstart: Date YYYY-MM-DD\nstart_time: Time HH:MM (optional)\nrecurring: Boolean\nrecurrence_set: RRULE string for recurring chores\nreward_points: Integer (optional)\nemoji_icon: Emoji (optional)"
      },
      {
        "title": "List all lists",
        "body": "curl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/lists\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\""
      },
      {
        "title": "Get list with items",
        "body": "curl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/lists/{listId}\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\nResponse includes data.attributes.kind (shopping or to_do) and included array with list items.\n\nList item attributes:\n\nlabel: Item text\nstatus: pending or completed\nsection: Section name (optional)\nposition: Sort order"
      },
      {
        "title": "Create task box item",
        "body": "curl -s -X POST \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/task_box/items\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"data\": {\n      \"type\": \"task_box_item\",\n      \"attributes\": {\n        \"summary\": \"Pack lunches\"\n      }\n    }\n  }'\n\nTask box attributes:\n\nsummary: Task title\nemoji_icon: Emoji (optional)\nroutine: Boolean (optional)\nreward_points: Integer (optional)"
      },
      {
        "title": "List categories",
        "body": "curl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/categories\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\nCategories are used to assign chores to family members. Attributes include:\n\nlabel: Category name (e.g., \"Mom\", \"Dad\", \"Kids\")\ncolor: Hex color #RRGGBB\nprofile_pic_url: Avatar URL"
      },
      {
        "title": "List rewards",
        "body": "curl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/rewards\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\nOptional query: redeemed_at_min (datetime) to filter by redemption date."
      },
      {
        "title": "List reward points",
        "body": "curl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/reward_points\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\""
      },
      {
        "title": "Get frame details",
        "body": "curl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\""
      },
      {
        "title": "List devices",
        "body": "curl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/devices\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\""
      },
      {
        "title": "Notes",
        "body": "API is unofficial and reverse-engineered; endpoints may change\nTokens expire on logout; recapture as needed\nResponses return 304 Not Modified when data unchanged\nUse jq to parse JSON:API responses\nFrame ID is your household identifier; all resources are scoped to it"
      }
    ],
    "body": "Skylight Calendar\n\nControl Skylight Calendar frame via the unofficial API.\n\nSetup\n\nSet environment variables:\n\nSKYLIGHT_URL: Base URL (default: https://app.ourskylight.com)\nSKYLIGHT_FRAME_ID: Your frame (household) ID — find this by logging into ourskylight.com, clicking your calendar, and copying the number from the URL (e.g., 4197102 from https://ourskylight.com/calendar/4197102)\n\nAuthentication (choose one):\n\nOption A - Email/Password (recommended):\n\nSKYLIGHT_EMAIL: Your Skylight account email\nSKYLIGHT_PASSWORD: Your Skylight account password\n\nOption B - Pre-captured token:\n\nSKYLIGHT_TOKEN: Full Authorization header value (e.g., Basic abc123...)\nAuthentication\nOption A: Login with Email/Password (Recommended)\n\nGenerate a token by logging in with email and password:\n\n# Login and get user credentials\nLOGIN_RESPONSE=$(curl -s -X POST \"$SKYLIGHT_URL/api/sessions\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"email\": \"'\"$SKYLIGHT_EMAIL\"'\",\n    \"password\": \"'\"$SKYLIGHT_PASSWORD\"'\",\n    \"name\": \"\",\n    \"phone\": \"\",\n    \"resettingPassword\": \"false\",\n    \"textMeTheApp\": \"true\",\n    \"agreedToMarketing\": \"true\"\n  }')\n\n# Extract user_id and user_token from response\nUSER_ID=$(echo \"$LOGIN_RESPONSE\" | jq -r '.data.id')\nUSER_TOKEN=$(echo \"$LOGIN_RESPONSE\" | jq -r '.data.attributes.token')\n\n# Generate Basic auth token (base64 of user_id:user_token)\nSKYLIGHT_TOKEN=\"Basic $(echo -n \"${USER_ID}:${USER_TOKEN}\" | base64)\"\n\n# Now use $SKYLIGHT_TOKEN for all API requests\n\n\nThe login endpoint returns:\n\ndata.id: User ID\ndata.attributes.token: User token\n\nCombine as {user_id}:{user_token} and base64 encode for Basic auth.\n\nOption B: Capture Token via Proxy\n\nIf you prefer to capture a token manually:\n\nInstall Proxyman/Charles/mitmproxy and trust root certificate\nEnable SSL proxying for app.ourskylight.com\nLog into Skylight app and capture any API request\nCopy Authorization header value (e.g., Basic <token>)\n\nTokens rotate on logout; recapture after re-login.\n\nAPI Format\n\nResponses use JSON:API format with data, included, and relationships fields.\n\nCalendar Events\nList events\ncurl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/calendar_events?date_min=2025-01-27&date_max=2025-01-31\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\" \\\n  -H \"Accept: application/json\"\n\n\nQuery params:\n\ndate_min (required): Start date YYYY-MM-DD\ndate_max (required): End date YYYY-MM-DD\ntimezone: Timezone string (optional)\ninclude: CSV of related resources (categories,calendar_account,event_notification_setting)\nList source calendars\ncurl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/source_calendars\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\nChores\nList chores\ncurl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/chores?after=2025-01-27&before=2025-01-31\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\n\nQuery params:\n\nafter: Start date YYYY-MM-DD\nbefore: End date YYYY-MM-DD\ninclude_late: Include overdue chores (bool)\nfilter: Filter by linked_to_profile\nCreate chore\ncurl -s -X POST \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/chores\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"data\": {\n      \"type\": \"chore\",\n      \"attributes\": {\n        \"summary\": \"Take out trash\",\n        \"status\": \"pending\",\n        \"start\": \"2025-01-28\",\n        \"start_time\": \"08:00\",\n        \"recurring\": false\n      },\n      \"relationships\": {\n        \"category\": {\n          \"data\": {\"type\": \"category\", \"id\": \"CATEGORY_ID\"}\n        }\n      }\n    }\n  }'\n\n\nChore attributes:\n\nsummary: Chore title\nstatus: pending or completed\nstart: Date YYYY-MM-DD\nstart_time: Time HH:MM (optional)\nrecurring: Boolean\nrecurrence_set: RRULE string for recurring chores\nreward_points: Integer (optional)\nemoji_icon: Emoji (optional)\nLists (Shopping/To-Do)\nList all lists\ncurl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/lists\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\nGet list with items\ncurl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/lists/{listId}\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\n\nResponse includes data.attributes.kind (shopping or to_do) and included array with list items.\n\nList item attributes:\n\nlabel: Item text\nstatus: pending or completed\nsection: Section name (optional)\nposition: Sort order\nTask Box\nCreate task box item\ncurl -s -X POST \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/task_box/items\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"data\": {\n      \"type\": \"task_box_item\",\n      \"attributes\": {\n        \"summary\": \"Pack lunches\"\n      }\n    }\n  }'\n\n\nTask box attributes:\n\nsummary: Task title\nemoji_icon: Emoji (optional)\nroutine: Boolean (optional)\nreward_points: Integer (optional)\nCategories\nList categories\ncurl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/categories\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\n\nCategories are used to assign chores to family members. Attributes include:\n\nlabel: Category name (e.g., \"Mom\", \"Dad\", \"Kids\")\ncolor: Hex color #RRGGBB\nprofile_pic_url: Avatar URL\nRewards\nList rewards\ncurl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/rewards\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\n\nOptional query: redeemed_at_min (datetime) to filter by redemption date.\n\nList reward points\ncurl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/reward_points\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\nFrame Info\nGet frame details\ncurl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\nList devices\ncurl -s \"$SKYLIGHT_URL/api/frames/$SKYLIGHT_FRAME_ID/devices\" \\\n  -H \"Authorization: $SKYLIGHT_TOKEN\"\n\nNotes\nAPI is unofficial and reverse-engineered; endpoints may change\nTokens expire on logout; recapture as needed\nResponses return 304 Not Modified when data unchanged\nUse jq to parse JSON:API responses\nFrame ID is your household identifier; all resources are scoped to it"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/riyadchowdhury/skylight-skill",
    "publisherUrl": "https://clawhub.ai/riyadchowdhury/skylight-skill",
    "owner": "riyadchowdhury",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/skylight-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/skylight-skill",
    "agentUrl": "https://openagent3.xyz/skills/skylight-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skylight-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skylight-skill/agent.md"
  }
}