From b661f461410734aa32af3af6f2d314b0ce7f69f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Pr=C3=A9?= Date: Tue, 21 Apr 2026 19:24:30 -0700 Subject: [PATCH 1/5] feat: Add Brand Guides site section scaffold Create docs/brand-guides/ with README.md and SUMMARY.md. Content will be moved from docs/guides/device-and-system-integration-guides/ in a follow-up PR. Co-Authored-By: Claude Opus 4.6 (1M context) --- docs/brand-guides/README.md | 47 ++++++++++++++++++++++++++++++++++++ docs/brand-guides/SUMMARY.md | 3 +++ 2 files changed, 50 insertions(+) create mode 100644 docs/brand-guides/README.md create mode 100644 docs/brand-guides/SUMMARY.md diff --git a/docs/brand-guides/README.md b/docs/brand-guides/README.md new file mode 100644 index 000000000..71dcf3a26 --- /dev/null +++ b/docs/brand-guides/README.md @@ -0,0 +1,47 @@ +--- +description: >- + Learn about all the manufacturers, devices, and systems that you can control + with the Seam API, including how to set up your connections and any + manufacturer-specific requirements or restrictions. +--- + +# Overview + +Seam enables you to control a wide variety of devices and systems, from different manufacturers, using the universal Seam API. This section provides a set of device and system integration guides that show you which devices Seam supports from each manufacturer, explain how to set up these devices and systems, and provide any manufacturer-specific requirements or restrictions. + +To find the integration guide for each of your devices or systems, see the following categories: + +* [Smart locks](overview.md#smart-locks) +* [Access control systems](overview.md#access-control-systems) +* [Thermostats](overview.md#thermostats) +* [Noise sensors](overview.md#noise-sensors) + +*** + +## Smart Locks + +
2N Intercom Systems2n-logo.png2n-intercom-systems.md
33 Lock Devices33-lock-logo.png33-lock-devices
4SUITES Locks4suites-logo.png4suites-locks
Akiles Locksakiles-logo.pngakiles-locks
August Locksaugust-logo.pngaugust-locks.md
dormakaba Oracode Locksdormakaba-logo.pngdormakaba-oracode-locks.md
iglooHome Locksigloohome-logo.pngigloohome-locks.md
Kwikset Lockskwikset-logo.pngkwikset-locks.md
Lockly Lockslockly-logo.pnglockly-locks
Nuki Locksnuki-logo.pngnuki-locks.md
Salto KS Lockssalto-logo.pngsalto-locks.md
Schlage Locksschlage-logo.pngget-started-with-schlage-locks.md
SmartThings Hubs + Smart Lockssmartthings-logo.pngsmartthings-hubs-+-devices
Tedee Lockstedee-logo.pngtedee-locks
TTLock Locksttlock-logo.pngttlock-locks.md
Wyze Lockswyze-logo.pngwyze-locks.md
Yale Locksyale-logo.pngyale-locks.md
+ +*** + +## Access Control Systems + +
ASSA ABLOY Credential Servicesassa-abloy-logo.pngBroken link
ASSA ABLOY Visionline Access Control Systemassa-abloy-logo.pngassa-abloy-visionline-access-control-system
Avigilon Alta Access Systemavigilon-alta-logo.pngavigilon-alta-access-system.md
Brivo Accessbrivo-logo.pngbrivo-access
Latch Access Control Systemlatch-logo.pnglatch-access-control-system
PTI Storlogix Cloudpti-logo.pngpti-storlogix-cloud.md
Salto KS Access Control Systemsalto-ks-logo.pngsalto-ks-access-control-system
Salto ProAccess Space Access Systemsalto-space-logo.pngsalto-proaccess-space-access-system
+ +*** + +## Thermostats + +
ecobee Thermostatsecobee-logo.pngecobee-thermostats.md
Google Nest Thermostatsnest-logo.pnggoogle-nest-thermostats
Honeywell Resideo Thermostatshoneywell-logo.pnghoneywell-thermostats
Sensi Thermostatssensi-logo.pngsensi-thermostats
SmartThings Hubs + Thermostatssmartthings-logo.pngsmartthings-hubs-+-devices
+ +*** + +## Noise sensors + +
Minut Sensorsminut-logo.pngminut-sensors.md
NoiseAware Sensorsnoiseaware-logo.pngnoiseaware-sensors.md
+ +*** + +## Relays + +
ControlByWeb Relayscontrolbyweb-logo.pngget-started-with-controlbyweb-devices.md
diff --git a/docs/brand-guides/SUMMARY.md b/docs/brand-guides/SUMMARY.md new file mode 100644 index 000000000..2633551d3 --- /dev/null +++ b/docs/brand-guides/SUMMARY.md @@ -0,0 +1,3 @@ +# Brand Guides + +* [Brand Guides](README.md) From 22ffd0888388ab3a6cb9e756d4603f6e5183b63d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Pr=C3=A9?= Date: Tue, 21 Apr 2026 19:28:07 -0700 Subject: [PATCH 2/5] Fix self-referencing links in Brand Guides README The file was copied from overview.md but renamed to README.md, so internal anchor links need to reference README.md instead. Co-Authored-By: Claude Opus 4.6 (1M context) --- docs/brand-guides/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/brand-guides/README.md b/docs/brand-guides/README.md index 71dcf3a26..fff6e524b 100644 --- a/docs/brand-guides/README.md +++ b/docs/brand-guides/README.md @@ -11,10 +11,10 @@ Seam enables you to control a wide variety of devices and systems, from differen To find the integration guide for each of your devices or systems, see the following categories: -* [Smart locks](overview.md#smart-locks) -* [Access control systems](overview.md#access-control-systems) -* [Thermostats](overview.md#thermostats) -* [Noise sensors](overview.md#noise-sensors) +* [Smart locks](README.md#smart-locks) +* [Access control systems](README.md#access-control-systems) +* [Thermostats](README.md#thermostats) +* [Noise sensors](README.md#noise-sensors) *** From 397213e286c0ce495b9d4f8bb181e935763e8207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Pr=C3=A9?= Date: Tue, 21 Apr 2026 19:33:11 -0700 Subject: [PATCH 3/5] Add Brand Guides to site sections config Co-Authored-By: Claude Opus 4.6 (1M context) --- codegen/lib/config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/codegen/lib/config.ts b/codegen/lib/config.ts index 3c6e0f2bf..4419e8323 100644 --- a/codegen/lib/config.ts +++ b/codegen/lib/config.ts @@ -24,6 +24,11 @@ export const siteSections: SiteSection[] = [ root: join('docs', 'api-reference'), urlPrefix: '/api', }, + { + name: 'Brand Guides', + root: join('docs', 'brand-guides'), + urlPrefix: '/device-and-system-integration-guides', + }, { name: 'Guides', root: join('docs', 'guides'), urlPrefix: '' }, ] From f8323591fd76ac50503abcd48894da0a4b94f152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Pr=C3=A9?= Date: Tue, 21 Apr 2026 19:34:45 -0700 Subject: [PATCH 4/5] Fix asset paths in Brand Guides README Assets live under docs/guides/.gitbook/assets/, not docs/.gitbook/. Co-Authored-By: Claude Opus 4.6 (1M context) --- docs/brand-guides/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/brand-guides/README.md b/docs/brand-guides/README.md index fff6e524b..6a9819892 100644 --- a/docs/brand-guides/README.md +++ b/docs/brand-guides/README.md @@ -20,28 +20,28 @@ To find the integration guide for each of your devices or systems, see the follo ## Smart Locks -
2N Intercom Systems2n-logo.png2n-intercom-systems.md
33 Lock Devices33-lock-logo.png33-lock-devices
4SUITES Locks4suites-logo.png4suites-locks
Akiles Locksakiles-logo.pngakiles-locks
August Locksaugust-logo.pngaugust-locks.md
dormakaba Oracode Locksdormakaba-logo.pngdormakaba-oracode-locks.md
iglooHome Locksigloohome-logo.pngigloohome-locks.md
Kwikset Lockskwikset-logo.pngkwikset-locks.md
Lockly Lockslockly-logo.pnglockly-locks
Nuki Locksnuki-logo.pngnuki-locks.md
Salto KS Lockssalto-logo.pngsalto-locks.md
Schlage Locksschlage-logo.pngget-started-with-schlage-locks.md
SmartThings Hubs + Smart Lockssmartthings-logo.pngsmartthings-hubs-+-devices
Tedee Lockstedee-logo.pngtedee-locks
TTLock Locksttlock-logo.pngttlock-locks.md
Wyze Lockswyze-logo.pngwyze-locks.md
Yale Locksyale-logo.pngyale-locks.md
+
2N Intercom Systems2n-logo.png2n-intercom-systems.md
33 Lock Devices33-lock-logo.png33-lock-devices
4SUITES Locks4suites-logo.png4suites-locks
Akiles Locksakiles-logo.pngakiles-locks
August Locksaugust-logo.pngaugust-locks.md
dormakaba Oracode Locksdormakaba-logo.pngdormakaba-oracode-locks.md
iglooHome Locksigloohome-logo.pngigloohome-locks.md
Kwikset Lockskwikset-logo.pngkwikset-locks.md
Lockly Lockslockly-logo.pnglockly-locks
Nuki Locksnuki-logo.pngnuki-locks.md
Salto KS Lockssalto-logo.pngsalto-locks.md
Schlage Locksschlage-logo.pngget-started-with-schlage-locks.md
SmartThings Hubs + Smart Lockssmartthings-logo.pngsmartthings-hubs-+-devices
Tedee Lockstedee-logo.pngtedee-locks
TTLock Locksttlock-logo.pngttlock-locks.md
Wyze Lockswyze-logo.pngwyze-locks.md
Yale Locksyale-logo.pngyale-locks.md
*** ## Access Control Systems -
ASSA ABLOY Credential Servicesassa-abloy-logo.pngBroken link
ASSA ABLOY Visionline Access Control Systemassa-abloy-logo.pngassa-abloy-visionline-access-control-system
Avigilon Alta Access Systemavigilon-alta-logo.pngavigilon-alta-access-system.md
Brivo Accessbrivo-logo.pngbrivo-access
Latch Access Control Systemlatch-logo.pnglatch-access-control-system
PTI Storlogix Cloudpti-logo.pngpti-storlogix-cloud.md
Salto KS Access Control Systemsalto-ks-logo.pngsalto-ks-access-control-system
Salto ProAccess Space Access Systemsalto-space-logo.pngsalto-proaccess-space-access-system
+
ASSA ABLOY Credential Servicesassa-abloy-logo.pngBroken link
ASSA ABLOY Visionline Access Control Systemassa-abloy-logo.pngassa-abloy-visionline-access-control-system
Avigilon Alta Access Systemavigilon-alta-logo.pngavigilon-alta-access-system.md
Brivo Accessbrivo-logo.pngbrivo-access
Latch Access Control Systemlatch-logo.pnglatch-access-control-system
PTI Storlogix Cloudpti-logo.pngpti-storlogix-cloud.md
Salto KS Access Control Systemsalto-ks-logo.pngsalto-ks-access-control-system
Salto ProAccess Space Access Systemsalto-space-logo.pngsalto-proaccess-space-access-system
*** ## Thermostats -
ecobee Thermostatsecobee-logo.pngecobee-thermostats.md
Google Nest Thermostatsnest-logo.pnggoogle-nest-thermostats
Honeywell Resideo Thermostatshoneywell-logo.pnghoneywell-thermostats
Sensi Thermostatssensi-logo.pngsensi-thermostats
SmartThings Hubs + Thermostatssmartthings-logo.pngsmartthings-hubs-+-devices
+
ecobee Thermostatsecobee-logo.pngecobee-thermostats.md
Google Nest Thermostatsnest-logo.pnggoogle-nest-thermostats
Honeywell Resideo Thermostatshoneywell-logo.pnghoneywell-thermostats
Sensi Thermostatssensi-logo.pngsensi-thermostats
SmartThings Hubs + Thermostatssmartthings-logo.pngsmartthings-hubs-+-devices
*** ## Noise sensors -
Minut Sensorsminut-logo.pngminut-sensors.md
NoiseAware Sensorsnoiseaware-logo.pngnoiseaware-sensors.md
+
Minut Sensorsminut-logo.pngminut-sensors.md
NoiseAware Sensorsnoiseaware-logo.pngnoiseaware-sensors.md
*** ## Relays -
ControlByWeb Relayscontrolbyweb-logo.pngget-started-with-controlbyweb-devices.md
+
ControlByWeb Relayscontrolbyweb-logo.pngget-started-with-controlbyweb-devices.md
From c482e9e76dc69d8f47ada7cc585a9b20b45fdb0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Pr=C3=A9?= Date: Tue, 21 Apr 2026 19:38:53 -0700 Subject: [PATCH 5/5] Revert "Add Brand Guides to site sections config" This reverts commit 397213e286c0ce495b9d4f8bb181e935763e8207. --- codegen/lib/config.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/codegen/lib/config.ts b/codegen/lib/config.ts index 4419e8323..3c6e0f2bf 100644 --- a/codegen/lib/config.ts +++ b/codegen/lib/config.ts @@ -24,11 +24,6 @@ export const siteSections: SiteSection[] = [ root: join('docs', 'api-reference'), urlPrefix: '/api', }, - { - name: 'Brand Guides', - root: join('docs', 'brand-guides'), - urlPrefix: '/device-and-system-integration-guides', - }, { name: 'Guides', root: join('docs', 'guides'), urlPrefix: '' }, ]