{"id":44651498,"url":"https://github.com/openclaw/casa","last_synced_at":"2026-02-14T21:00:57.856Z","repository":{"id":334982967,"uuid":"1128626279","full_name":"openclaw/casa","owner":"openclaw","description":"Exposing your home base to Clawdbot!","archived":false,"fork":false,"pushed_at":"2026-02-07T19:56:11.000Z","size":1013,"stargazers_count":19,"open_issues_count":0,"forks_count":8,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-08T04:35:42.893Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openclaw.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null},"funding":{"github":["moltbot"]}},"created_at":"2026-01-05T23:23:39.000Z","updated_at":"2026-02-08T00:57:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"2043b830-5954-430a-847a-5819f1e7adfb","html_url":"https://github.com/openclaw/casa","commit_stats":null,"previous_names":["moltbot/casa","openclaw/casa"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/openclaw/casa","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openclaw%2Fcasa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openclaw%2Fcasa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openclaw%2Fcasa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openclaw%2Fcasa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openclaw","download_url":"https://codeload.github.com/openclaw/casa/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openclaw%2Fcasa/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29455595,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-14T21:00:17.110Z","updated_at":"2026-02-14T21:00:57.851Z","avatar_url":"https://github.com/openclaw.png","language":"Swift","funding_links":["https://github.com/sponsors/moltbot"],"categories":["Integrations \u0026 Features"],"sub_categories":["Home Automation"],"readme":"# Casa\n\n![Casa](Casa/Assets.xcassets/AppIcon.appiconset/AppIcon1024.png)\n\nCasa is a Mac Catalyst app that exposes your local HomeKit data as a localhost-only REST API, plus a CLI for scripting. It is designed for automation, agents, and power users who want a fast, reliable bridge into HomeKit on their own machine.\n\n## Highlights\n\n- Local-only API (loopback, no remote access)\n- HomeKit module is opt-in and off by default\n- Built-in CLI for fast scripting and automation\n- Onboarding flow for permissions and setup\n- Works with existing Home and accessories\n\n## Quick start\n\n1) Open `Casa.xcodeproj` in Xcode.\n2) Select your Team and enable the HomeKit capability.\n3) Build and run the app.\n4) Complete onboarding (enable HomeKit and install CLI).\n\nBuild from the terminal:\n\n```\n./scripts/restart-mac.sh\n```\n\n## Using the API\n\nDefault base URL:\n\n```\nhttp://127.0.0.1:14663\n```\n\nIf you set an auth token in the app, pass `X-Casa-Token: \u003ctoken\u003e`.\n\nCommon endpoints:\n\n- `GET /health`\n- `GET /homekit/accessories`\n- `GET /homekit/accessories/:id`\n- `GET /homekit/rooms`\n- `GET /homekit/services`\n- `GET /homekit/characteristics/:id`\n- `PUT /homekit/characteristics/:id`\n- `GET /homekit/schema`\n- `GET /homekit/cameras`\n- `GET /homekit/cameras/:id`\n\n## CLI\n\nThe CLI is embedded into the app at build time and can be installed from Settings or onboarding.\n\nExamples:\n\n```\n# Health check\ncasa health\n\n# Browse HomeKit\ncasa devices\ncasa rooms\ncasa services\n\n# Read/write a characteristic\ncasa characteristics get \u003cuuid\u003e\ncasa characteristics set \u003cuuid\u003e true\n\n# Custom URL/token\nCASA_URL=http://127.0.0.1:14663 CASA_TOKEN=token casa devices\n```\n\n## Development notes\n\n- The server only binds to loopback (`127.0.0.1`).\n- HomeKit access requires the entitlement; the module stays off until enabled in the app.\n- If you change the port or auth token, update your CLI environment variables.\n\n## Troubleshooting\n\n- No accessories: confirm you have a Home in the Home app and grant HomeKit access in System Settings.\n- Server not running: verify the port is free and check the app status badge.\n- Missing CLI: use the Install CLI action in onboarding or Settings.\n\n## Sparkle updates\n\nCasa uses Sparkle for app updates. Set these build settings or environment values:\n\n- `SPARKLE_FEED_URL` (appcast URL)\n- `SPARKLE_PUBLIC_KEY` (Sparkle EdDSA public key)\n\nThe release workflow expects these secrets:\n\n- `APPLE_CERT_BASE64`\n- `APPLE_CERT_PASSWORD`\n- `APPLE_TEAM_ID`\n- `APPLE_SIGNING_IDENTITY`\n- `APPLE_PROVISION_PROFILE_BASE64`\n- `KEYCHAIN_PASSWORD`\n- `SPARKLE_PRIVATE_KEY`\n- `SPARKLE_PUBLIC_KEY`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenclaw%2Fcasa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenclaw%2Fcasa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenclaw%2Fcasa/lists"}