[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-deepgram-things-mac":3,"mdc-kjo85j-key":32,"related-org-deepgram-things-mac":617,"related-repo-deepgram-things-mac":771},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":30,"mdContent":31},"things-mac","manage Things 3 tasks","Manage Things 3 via the `things` CLI on macOS (add\u002Fupdate projects+todos via URL scheme; read\u002Fsearch\u002Flist from the local Things database). Use when a user asks OpenClaw to add a task to Things, list inbox\u002Ftoday\u002Fupcoming, search tasks, or inspect projects\u002Fareas\u002Ftags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"deepgram","Deepgram","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdeepgram.png",[12,16,19],{"name":13,"slug":14,"type":15},"macOS","macos","tag",{"name":17,"slug":18,"type":15},"CLI","cli",{"name":20,"slug":21,"type":15},"Task Management","task-management",23,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdglabs-deepclaw","2026-07-12T08:28:56.300954",null,9,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":25},[],"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdglabs-deepclaw\u002Ftree\u002FHEAD\u002Fskills\u002Fthings-mac","---\nname: things-mac\ndescription: Manage Things 3 via the `things` CLI on macOS (add\u002Fupdate projects+todos via URL scheme; read\u002Fsearch\u002Flist from the local Things database). Use when a user asks OpenClaw to add a task to Things, list inbox\u002Ftoday\u002Fupcoming, search tasks, or inspect projects\u002Fareas\u002Ftags.\nhomepage: https:\u002F\u002Fgithub.com\u002Fossianhempel\u002Fthings3-cli\nmetadata:\n  {\n    \"openclaw\":\n      {\n        \"emoji\": \"✅\",\n        \"os\": [\"darwin\"],\n        \"requires\": { \"bins\": [\"things\"] },\n        \"install\":\n          [\n            {\n              \"id\": \"go\",\n              \"kind\": \"go\",\n              \"module\": \"github.com\u002Fossianhempel\u002Fthings3-cli\u002Fcmd\u002Fthings@latest\",\n              \"bins\": [\"things\"],\n              \"label\": \"Install things3-cli (go)\",\n            },\n          ],\n      },\n  }\n---\n\n# Things 3 CLI\n\nUse `things` to read your local Things database (inbox\u002Ftoday\u002Fsearch\u002Fprojects\u002Fareas\u002Ftags) and to add\u002Fupdate todos via the Things URL scheme.\n\nSetup\n\n- Install (recommended, Apple Silicon): `GOBIN=\u002Fopt\u002Fhomebrew\u002Fbin go install github.com\u002Fossianhempel\u002Fthings3-cli\u002Fcmd\u002Fthings@latest`\n- If DB reads fail: grant **Full Disk Access** to the calling app (Terminal for manual runs; `OpenClaw.app` for gateway runs).\n- Optional: set `THINGSDB` (or pass `--db`) to point at your `ThingsData-*` folder.\n- Optional: set `THINGS_AUTH_TOKEN` to avoid passing `--auth-token` for update ops.\n\nRead-only (DB)\n\n- `things inbox --limit 50`\n- `things today`\n- `things upcoming`\n- `things search \"query\"`\n- `things projects` \u002F `things areas` \u002F `things tags`\n\nWrite (URL scheme)\n\n- Prefer safe preview: `things --dry-run add \"Title\"`\n- Add: `things add \"Title\" --notes \"...\" --when today --deadline 2026-01-02`\n- Bring Things to front: `things --foreground add \"Title\"`\n\nExamples: add a todo\n\n- Basic: `things add \"Buy milk\"`\n- With notes: `things add \"Buy milk\" --notes \"2% + bananas\"`\n- Into a project\u002Farea: `things add \"Book flights\" --list \"Travel\"`\n- Into a project heading: `things add \"Pack charger\" --list \"Travel\" --heading \"Before\"`\n- With tags: `things add \"Call dentist\" --tags \"health,phone\"`\n- Checklist: `things add \"Trip prep\" --checklist-item \"Passport\" --checklist-item \"Tickets\"`\n- From STDIN (multi-line => title + notes):\n  - `cat \u003C\u003C'EOF' | things add -`\n  - `Title line`\n  - `Notes line 1`\n  - `Notes line 2`\n  - `EOF`\n\nExamples: modify a todo (needs auth token)\n\n- First: get the ID (UUID column): `things search \"milk\" --limit 5`\n- Auth: set `THINGS_AUTH_TOKEN` or pass `--auth-token \u003CTOKEN>`\n- Title: `things update --id \u003CUUID> --auth-token \u003CTOKEN> \"New title\"`\n- Notes replace: `things update --id \u003CUUID> --auth-token \u003CTOKEN> --notes \"New notes\"`\n- Notes append\u002Fprepend: `things update --id \u003CUUID> --auth-token \u003CTOKEN> --append-notes \"...\"` \u002F `--prepend-notes \"...\"`\n- Move lists: `things update --id \u003CUUID> --auth-token \u003CTOKEN> --list \"Travel\" --heading \"Before\"`\n- Tags replace\u002Fadd: `things update --id \u003CUUID> --auth-token \u003CTOKEN> --tags \"a,b\"` \u002F `things update --id \u003CUUID> --auth-token \u003CTOKEN> --add-tags \"a,b\"`\n- Complete\u002Fcancel (soft-delete-ish): `things update --id \u003CUUID> --auth-token \u003CTOKEN> --completed` \u002F `--canceled`\n- Safe preview: `things --dry-run update --id \u003CUUID> --auth-token \u003CTOKEN> --completed`\n\nDelete a todo?\n\n- Not supported by `things3-cli` right now (no “delete\u002Fmove-to-trash” write command; `things trash` is read-only listing).\n- Options: use Things UI to delete\u002Ftrash, or mark as `--completed` \u002F `--canceled` via `things update`.\n\nNotes\n\n- macOS-only.\n- `--dry-run` prints the URL and does not open Things.\n",{"data":33,"body":49},{"name":4,"description":6,"homepage":34,"metadata":35},"https:\u002F\u002Fgithub.com\u002Fossianhempel\u002Fthings3-cli",{"openclaw":36},{"emoji":37,"os":38,"requires":40,"install":43},"✅",[39],"darwin",{"bins":41},[42],"things",[44],{"id":45,"kind":45,"module":46,"bins":47,"label":48},"go","github.com\u002Fossianhempel\u002Fthings3-cli\u002Fcmd\u002Fthings@latest",[42],"Install things3-cli (go)",{"type":50,"children":51},"root",[52,61,75,80,166,171,234,239,275,280,402,407,537,542,593,598],{"type":53,"tag":54,"props":55,"children":57},"element","h1",{"id":56},"things-3-cli",[58],{"type":59,"value":60},"text","Things 3 CLI",{"type":53,"tag":62,"props":63,"children":64},"p",{},[65,67,73],{"type":59,"value":66},"Use ",{"type":53,"tag":68,"props":69,"children":71},"code",{"className":70},[],[72],{"type":59,"value":42},{"type":59,"value":74}," to read your local Things database (inbox\u002Ftoday\u002Fsearch\u002Fprojects\u002Fareas\u002Ftags) and to add\u002Fupdate todos via the Things URL scheme.",{"type":53,"tag":62,"props":76,"children":77},{},[78],{"type":59,"value":79},"Setup",{"type":53,"tag":81,"props":82,"children":83},"ul",{},[84,96,117,146],{"type":53,"tag":85,"props":86,"children":87},"li",{},[88,90],{"type":59,"value":89},"Install (recommended, Apple Silicon): ",{"type":53,"tag":68,"props":91,"children":93},{"className":92},[],[94],{"type":59,"value":95},"GOBIN=\u002Fopt\u002Fhomebrew\u002Fbin go install github.com\u002Fossianhempel\u002Fthings3-cli\u002Fcmd\u002Fthings@latest",{"type":53,"tag":85,"props":97,"children":98},{},[99,101,107,109,115],{"type":59,"value":100},"If DB reads fail: grant ",{"type":53,"tag":102,"props":103,"children":104},"strong",{},[105],{"type":59,"value":106},"Full Disk Access",{"type":59,"value":108}," to the calling app (Terminal for manual runs; ",{"type":53,"tag":68,"props":110,"children":112},{"className":111},[],[113],{"type":59,"value":114},"OpenClaw.app",{"type":59,"value":116}," for gateway runs).",{"type":53,"tag":85,"props":118,"children":119},{},[120,122,128,130,136,138,144],{"type":59,"value":121},"Optional: set ",{"type":53,"tag":68,"props":123,"children":125},{"className":124},[],[126],{"type":59,"value":127},"THINGSDB",{"type":59,"value":129}," (or pass ",{"type":53,"tag":68,"props":131,"children":133},{"className":132},[],[134],{"type":59,"value":135},"--db",{"type":59,"value":137},") to point at your ",{"type":53,"tag":68,"props":139,"children":141},{"className":140},[],[142],{"type":59,"value":143},"ThingsData-*",{"type":59,"value":145}," folder.",{"type":53,"tag":85,"props":147,"children":148},{},[149,150,156,158,164],{"type":59,"value":121},{"type":53,"tag":68,"props":151,"children":153},{"className":152},[],[154],{"type":59,"value":155},"THINGS_AUTH_TOKEN",{"type":59,"value":157}," to avoid passing ",{"type":53,"tag":68,"props":159,"children":161},{"className":160},[],[162],{"type":59,"value":163},"--auth-token",{"type":59,"value":165}," for update ops.",{"type":53,"tag":62,"props":167,"children":168},{},[169],{"type":59,"value":170},"Read-only (DB)",{"type":53,"tag":81,"props":172,"children":173},{},[174,183,192,201,210],{"type":53,"tag":85,"props":175,"children":176},{},[177],{"type":53,"tag":68,"props":178,"children":180},{"className":179},[],[181],{"type":59,"value":182},"things inbox --limit 50",{"type":53,"tag":85,"props":184,"children":185},{},[186],{"type":53,"tag":68,"props":187,"children":189},{"className":188},[],[190],{"type":59,"value":191},"things today",{"type":53,"tag":85,"props":193,"children":194},{},[195],{"type":53,"tag":68,"props":196,"children":198},{"className":197},[],[199],{"type":59,"value":200},"things upcoming",{"type":53,"tag":85,"props":202,"children":203},{},[204],{"type":53,"tag":68,"props":205,"children":207},{"className":206},[],[208],{"type":59,"value":209},"things search \"query\"",{"type":53,"tag":85,"props":211,"children":212},{},[213,219,221,227,228],{"type":53,"tag":68,"props":214,"children":216},{"className":215},[],[217],{"type":59,"value":218},"things projects",{"type":59,"value":220}," \u002F ",{"type":53,"tag":68,"props":222,"children":224},{"className":223},[],[225],{"type":59,"value":226},"things areas",{"type":59,"value":220},{"type":53,"tag":68,"props":229,"children":231},{"className":230},[],[232],{"type":59,"value":233},"things tags",{"type":53,"tag":62,"props":235,"children":236},{},[237],{"type":59,"value":238},"Write (URL scheme)",{"type":53,"tag":81,"props":240,"children":241},{},[242,253,264],{"type":53,"tag":85,"props":243,"children":244},{},[245,247],{"type":59,"value":246},"Prefer safe preview: ",{"type":53,"tag":68,"props":248,"children":250},{"className":249},[],[251],{"type":59,"value":252},"things --dry-run add \"Title\"",{"type":53,"tag":85,"props":254,"children":255},{},[256,258],{"type":59,"value":257},"Add: ",{"type":53,"tag":68,"props":259,"children":261},{"className":260},[],[262],{"type":59,"value":263},"things add \"Title\" --notes \"...\" --when today --deadline 2026-01-02",{"type":53,"tag":85,"props":265,"children":266},{},[267,269],{"type":59,"value":268},"Bring Things to front: ",{"type":53,"tag":68,"props":270,"children":272},{"className":271},[],[273],{"type":59,"value":274},"things --foreground add \"Title\"",{"type":53,"tag":62,"props":276,"children":277},{},[278],{"type":59,"value":279},"Examples: add a todo",{"type":53,"tag":81,"props":281,"children":282},{},[283,294,305,316,327,338,349],{"type":53,"tag":85,"props":284,"children":285},{},[286,288],{"type":59,"value":287},"Basic: ",{"type":53,"tag":68,"props":289,"children":291},{"className":290},[],[292],{"type":59,"value":293},"things add \"Buy milk\"",{"type":53,"tag":85,"props":295,"children":296},{},[297,299],{"type":59,"value":298},"With notes: ",{"type":53,"tag":68,"props":300,"children":302},{"className":301},[],[303],{"type":59,"value":304},"things add \"Buy milk\" --notes \"2% + bananas\"",{"type":53,"tag":85,"props":306,"children":307},{},[308,310],{"type":59,"value":309},"Into a project\u002Farea: ",{"type":53,"tag":68,"props":311,"children":313},{"className":312},[],[314],{"type":59,"value":315},"things add \"Book flights\" --list \"Travel\"",{"type":53,"tag":85,"props":317,"children":318},{},[319,321],{"type":59,"value":320},"Into a project heading: ",{"type":53,"tag":68,"props":322,"children":324},{"className":323},[],[325],{"type":59,"value":326},"things add \"Pack charger\" --list \"Travel\" --heading \"Before\"",{"type":53,"tag":85,"props":328,"children":329},{},[330,332],{"type":59,"value":331},"With tags: ",{"type":53,"tag":68,"props":333,"children":335},{"className":334},[],[336],{"type":59,"value":337},"things add \"Call dentist\" --tags \"health,phone\"",{"type":53,"tag":85,"props":339,"children":340},{},[341,343],{"type":59,"value":342},"Checklist: ",{"type":53,"tag":68,"props":344,"children":346},{"className":345},[],[347],{"type":59,"value":348},"things add \"Trip prep\" --checklist-item \"Passport\" --checklist-item \"Tickets\"",{"type":53,"tag":85,"props":350,"children":351},{},[352,354],{"type":59,"value":353},"From STDIN (multi-line => title + notes):\n",{"type":53,"tag":81,"props":355,"children":356},{},[357,366,375,384,393],{"type":53,"tag":85,"props":358,"children":359},{},[360],{"type":53,"tag":68,"props":361,"children":363},{"className":362},[],[364],{"type":59,"value":365},"cat \u003C\u003C'EOF' | things add -",{"type":53,"tag":85,"props":367,"children":368},{},[369],{"type":53,"tag":68,"props":370,"children":372},{"className":371},[],[373],{"type":59,"value":374},"Title line",{"type":53,"tag":85,"props":376,"children":377},{},[378],{"type":53,"tag":68,"props":379,"children":381},{"className":380},[],[382],{"type":59,"value":383},"Notes line 1",{"type":53,"tag":85,"props":385,"children":386},{},[387],{"type":53,"tag":68,"props":388,"children":390},{"className":389},[],[391],{"type":59,"value":392},"Notes line 2",{"type":53,"tag":85,"props":394,"children":395},{},[396],{"type":53,"tag":68,"props":397,"children":399},{"className":398},[],[400],{"type":59,"value":401},"EOF",{"type":53,"tag":62,"props":403,"children":404},{},[405],{"type":59,"value":406},"Examples: modify a todo (needs auth token)",{"type":53,"tag":81,"props":408,"children":409},{},[410,421,439,450,461,479,490,508,526],{"type":53,"tag":85,"props":411,"children":412},{},[413,415],{"type":59,"value":414},"First: get the ID (UUID column): ",{"type":53,"tag":68,"props":416,"children":418},{"className":417},[],[419],{"type":59,"value":420},"things search \"milk\" --limit 5",{"type":53,"tag":85,"props":422,"children":423},{},[424,426,431,433],{"type":59,"value":425},"Auth: set ",{"type":53,"tag":68,"props":427,"children":429},{"className":428},[],[430],{"type":59,"value":155},{"type":59,"value":432}," or pass ",{"type":53,"tag":68,"props":434,"children":436},{"className":435},[],[437],{"type":59,"value":438},"--auth-token \u003CTOKEN>",{"type":53,"tag":85,"props":440,"children":441},{},[442,444],{"type":59,"value":443},"Title: ",{"type":53,"tag":68,"props":445,"children":447},{"className":446},[],[448],{"type":59,"value":449},"things update --id \u003CUUID> --auth-token \u003CTOKEN> \"New title\"",{"type":53,"tag":85,"props":451,"children":452},{},[453,455],{"type":59,"value":454},"Notes replace: ",{"type":53,"tag":68,"props":456,"children":458},{"className":457},[],[459],{"type":59,"value":460},"things update --id \u003CUUID> --auth-token \u003CTOKEN> --notes \"New notes\"",{"type":53,"tag":85,"props":462,"children":463},{},[464,466,472,473],{"type":59,"value":465},"Notes append\u002Fprepend: ",{"type":53,"tag":68,"props":467,"children":469},{"className":468},[],[470],{"type":59,"value":471},"things update --id \u003CUUID> --auth-token \u003CTOKEN> --append-notes \"...\"",{"type":59,"value":220},{"type":53,"tag":68,"props":474,"children":476},{"className":475},[],[477],{"type":59,"value":478},"--prepend-notes \"...\"",{"type":53,"tag":85,"props":480,"children":481},{},[482,484],{"type":59,"value":483},"Move lists: ",{"type":53,"tag":68,"props":485,"children":487},{"className":486},[],[488],{"type":59,"value":489},"things update --id \u003CUUID> --auth-token \u003CTOKEN> --list \"Travel\" --heading \"Before\"",{"type":53,"tag":85,"props":491,"children":492},{},[493,495,501,502],{"type":59,"value":494},"Tags replace\u002Fadd: ",{"type":53,"tag":68,"props":496,"children":498},{"className":497},[],[499],{"type":59,"value":500},"things update --id \u003CUUID> --auth-token \u003CTOKEN> --tags \"a,b\"",{"type":59,"value":220},{"type":53,"tag":68,"props":503,"children":505},{"className":504},[],[506],{"type":59,"value":507},"things update --id \u003CUUID> --auth-token \u003CTOKEN> --add-tags \"a,b\"",{"type":53,"tag":85,"props":509,"children":510},{},[511,513,519,520],{"type":59,"value":512},"Complete\u002Fcancel (soft-delete-ish): ",{"type":53,"tag":68,"props":514,"children":516},{"className":515},[],[517],{"type":59,"value":518},"things update --id \u003CUUID> --auth-token \u003CTOKEN> --completed",{"type":59,"value":220},{"type":53,"tag":68,"props":521,"children":523},{"className":522},[],[524],{"type":59,"value":525},"--canceled",{"type":53,"tag":85,"props":527,"children":528},{},[529,531],{"type":59,"value":530},"Safe preview: ",{"type":53,"tag":68,"props":532,"children":534},{"className":533},[],[535],{"type":59,"value":536},"things --dry-run update --id \u003CUUID> --auth-token \u003CTOKEN> --completed",{"type":53,"tag":62,"props":538,"children":539},{},[540],{"type":59,"value":541},"Delete a todo?",{"type":53,"tag":81,"props":543,"children":544},{},[545,566],{"type":53,"tag":85,"props":546,"children":547},{},[548,550,556,558,564],{"type":59,"value":549},"Not supported by ",{"type":53,"tag":68,"props":551,"children":553},{"className":552},[],[554],{"type":59,"value":555},"things3-cli",{"type":59,"value":557}," right now (no “delete\u002Fmove-to-trash” write command; ",{"type":53,"tag":68,"props":559,"children":561},{"className":560},[],[562],{"type":59,"value":563},"things trash",{"type":59,"value":565}," is read-only listing).",{"type":53,"tag":85,"props":567,"children":568},{},[569,571,577,578,583,585,591],{"type":59,"value":570},"Options: use Things UI to delete\u002Ftrash, or mark as ",{"type":53,"tag":68,"props":572,"children":574},{"className":573},[],[575],{"type":59,"value":576},"--completed",{"type":59,"value":220},{"type":53,"tag":68,"props":579,"children":581},{"className":580},[],[582],{"type":59,"value":525},{"type":59,"value":584}," via ",{"type":53,"tag":68,"props":586,"children":588},{"className":587},[],[589],{"type":59,"value":590},"things update",{"type":59,"value":592},".",{"type":53,"tag":62,"props":594,"children":595},{},[596],{"type":59,"value":597},"Notes",{"type":53,"tag":81,"props":599,"children":600},{},[601,606],{"type":53,"tag":85,"props":602,"children":603},{},[604],{"type":59,"value":605},"macOS-only.",{"type":53,"tag":85,"props":607,"children":608},{},[609,615],{"type":53,"tag":68,"props":610,"children":612},{"className":611},[],[613],{"type":59,"value":614},"--dry-run",{"type":59,"value":616}," prints the URL and does not open Things.",{"items":618,"total":770},[619,635,649,661,671,682,694,705,721,735,747,759],{"slug":620,"name":620,"fn":621,"description":622,"org":623,"tags":624,"stars":632,"repoUrl":633,"updatedAt":634},"deepclaw-voice","configure phone calls with Deepgram Voice","Set up phone calling to OpenClaw using Deepgram Voice Agent API",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[625,628,629],{"name":626,"slug":627,"type":15},"API Development","api-development",{"name":9,"slug":8,"type":15},{"name":630,"slug":631,"type":15},"Voice","voice",78,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdeepclaw","2026-07-12T08:29:25.371332",{"slug":636,"name":636,"fn":637,"description":638,"org":639,"tags":640,"stars":22,"repoUrl":23,"updatedAt":648},"1password","manage secrets with 1Password CLI","Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading\u002Finjecting\u002Frunning secrets via op.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[641,644,645],{"name":642,"slug":643,"type":15},"Automation","automation",{"name":17,"slug":18,"type":15},{"name":646,"slug":647,"type":15},"Security","security","2026-07-12T08:28:49.991939",{"slug":650,"name":650,"fn":651,"description":652,"org":653,"tags":654,"stars":22,"repoUrl":23,"updatedAt":660},"apple-notes","manage Apple Notes on macOS","Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[655,656,659],{"name":17,"slug":18,"type":15},{"name":657,"slug":658,"type":15},"Knowledge Management","knowledge-management",{"name":13,"slug":14,"type":15},"2026-07-12T08:29:01.538106",{"slug":662,"name":662,"fn":663,"description":664,"org":665,"tags":666,"stars":22,"repoUrl":23,"updatedAt":670},"apple-reminders","manage Apple Reminders via CLI","Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON\u002Fplain output.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[667,668,669],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-07-12T08:29:14.035414",{"slug":672,"name":672,"fn":673,"description":674,"org":675,"tags":676,"stars":22,"repoUrl":23,"updatedAt":681},"bear-notes","manage Bear notes via CLI","Create, search, and manage Bear notes via grizzly CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[677,678,679],{"name":17,"slug":18,"type":15},{"name":657,"slug":658,"type":15},{"name":597,"slug":680,"type":15},"notes","2026-07-12T08:28:51.246011",{"slug":683,"name":683,"fn":684,"description":685,"org":686,"tags":687,"stars":22,"repoUrl":23,"updatedAt":693},"blogwatcher","monitor blogs and RSS feeds","Monitor blogs and RSS\u002FAtom feeds for updates using the blogwatcher CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[688,689,690],{"name":642,"slug":643,"type":15},{"name":17,"slug":18,"type":15},{"name":691,"slug":692,"type":15},"Monitoring","monitoring","2026-07-12T08:29:02.762321",{"slug":695,"name":695,"fn":696,"description":697,"org":698,"tags":699,"stars":22,"repoUrl":23,"updatedAt":704},"blucli","control BluOS audio playback","BluOS CLI (blu) for discovery, playback, grouping, and volume.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[700,703],{"name":701,"slug":702,"type":15},"Audio","audio",{"name":17,"slug":18,"type":15},"2026-07-12T08:28:21.009637",{"slug":706,"name":706,"fn":707,"description":708,"org":709,"tags":710,"stars":22,"repoUrl":23,"updatedAt":720},"bluebubbles","send and manage iMessages","Use when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel=\"bluebubbles\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[711,714,717],{"name":712,"slug":713,"type":15},"Communications","communications",{"name":715,"slug":716,"type":15},"iMessage","imessage",{"name":718,"slug":719,"type":15},"Messaging","messaging","2026-07-12T08:28:57.517914",{"slug":722,"name":722,"fn":723,"description":724,"org":725,"tags":726,"stars":22,"repoUrl":23,"updatedAt":734},"camsnap","capture frames and clips from cameras","Capture frames or clips from RTSP\u002FONVIF cameras.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[727,728,731],{"name":642,"slug":643,"type":15},{"name":729,"slug":730,"type":15},"Camera","camera",{"name":732,"slug":733,"type":15},"Media","media","2026-07-12T08:28:28.096134",{"slug":736,"name":736,"fn":737,"description":738,"org":739,"tags":740,"stars":22,"repoUrl":23,"updatedAt":746},"clawhub","manage agent skills with ClawHub","Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new\u002Fupdated skill folders with the npm-installed clawhub CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[741,744,745],{"name":742,"slug":743,"type":15},"Agents","agents",{"name":642,"slug":643,"type":15},{"name":17,"slug":18,"type":15},"2026-07-12T08:28:30.589001",{"slug":748,"name":748,"fn":749,"description":750,"org":751,"tags":752,"stars":22,"repoUrl":23,"updatedAt":758},"coding-agent","run coding agents for programmatic control","Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[753,754,755],{"name":742,"slug":743,"type":15},{"name":642,"slug":643,"type":15},{"name":756,"slug":757,"type":15},"Coding","coding","2026-07-12T08:29:08.6658",{"slug":760,"name":760,"fn":761,"description":762,"org":763,"tags":764,"stars":22,"repoUrl":23,"updatedAt":769},"eightctl","control Eight Sleep pod settings","Control Eight Sleep pods (status, temperature, alarms, schedules).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[765,766],{"name":642,"slug":643,"type":15},{"name":767,"slug":768,"type":15},"Hardware","hardware","2026-07-12T08:28:39.322181",73,{"items":772,"total":814},[773,779,785,791,797,803,808],{"slug":636,"name":636,"fn":637,"description":638,"org":774,"tags":775,"stars":22,"repoUrl":23,"updatedAt":648},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[776,777,778],{"name":642,"slug":643,"type":15},{"name":17,"slug":18,"type":15},{"name":646,"slug":647,"type":15},{"slug":650,"name":650,"fn":651,"description":652,"org":780,"tags":781,"stars":22,"repoUrl":23,"updatedAt":660},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[782,783,784],{"name":17,"slug":18,"type":15},{"name":657,"slug":658,"type":15},{"name":13,"slug":14,"type":15},{"slug":662,"name":662,"fn":663,"description":664,"org":786,"tags":787,"stars":22,"repoUrl":23,"updatedAt":670},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[788,789,790],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"slug":672,"name":672,"fn":673,"description":674,"org":792,"tags":793,"stars":22,"repoUrl":23,"updatedAt":681},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[794,795,796],{"name":17,"slug":18,"type":15},{"name":657,"slug":658,"type":15},{"name":597,"slug":680,"type":15},{"slug":683,"name":683,"fn":684,"description":685,"org":798,"tags":799,"stars":22,"repoUrl":23,"updatedAt":693},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[800,801,802],{"name":642,"slug":643,"type":15},{"name":17,"slug":18,"type":15},{"name":691,"slug":692,"type":15},{"slug":695,"name":695,"fn":696,"description":697,"org":804,"tags":805,"stars":22,"repoUrl":23,"updatedAt":704},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[806,807],{"name":701,"slug":702,"type":15},{"name":17,"slug":18,"type":15},{"slug":706,"name":706,"fn":707,"description":708,"org":809,"tags":810,"stars":22,"repoUrl":23,"updatedAt":720},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[811,812,813],{"name":712,"slug":713,"type":15},{"name":715,"slug":716,"type":15},{"name":718,"slug":719,"type":15},54]