From 8da81e42c65b359c95c6ad81eae6b4493e7b4c56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Pr=C3=A9?= Date: Thu, 23 Apr 2026 14:47:30 -0700 Subject: [PATCH 1/2] Remove incorrect example.com domain note from ecobee and TTLock sandbox pages These two providers only accept jane@example.com, not arbitrary @example.com emails. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../sandbox-and-sample-data/ecobee-sample-data.md | 6 +++--- .../sandbox-and-sample-data/ttlock-sample-data.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/guides/developer-tools/sandbox-and-sample-data/ecobee-sample-data.md b/docs/guides/developer-tools/sandbox-and-sample-data/ecobee-sample-data.md index 60e9ef49e..5b35c409e 100644 --- a/docs/guides/developer-tools/sandbox-and-sample-data/ecobee-sample-data.md +++ b/docs/guides/developer-tools/sandbox-and-sample-data/ecobee-sample-data.md @@ -2,6 +2,6 @@ Use the following set of credentials to add virtual [ecobee thermostats](https://docs.seam.co/latest/device-and-system-integration-guides/ecobee-thermostats) to your Seam [sandbox workspace](../../core-concepts/workspaces/#sandbox-workspaces): -| Email Address | Password | -| --------------------------------------------------------------- | -------- | -| jane@example.com or any email address in the example.com domain | 1234 | +| Email Address | Password | +| ---------------- | -------- | +| jane@example.com | 1234 | diff --git a/docs/guides/developer-tools/sandbox-and-sample-data/ttlock-sample-data.md b/docs/guides/developer-tools/sandbox-and-sample-data/ttlock-sample-data.md index 3dbd638d8..ac18ecc18 100644 --- a/docs/guides/developer-tools/sandbox-and-sample-data/ttlock-sample-data.md +++ b/docs/guides/developer-tools/sandbox-and-sample-data/ttlock-sample-data.md @@ -2,6 +2,6 @@ Use the following set of credentials to add virtual [TTLock locks](https://docs.seam.co/latest/device-and-system-integration-guides/ttlock-locks) to your Seam [sandbox workspace](../../core-concepts/workspaces/#sandbox-workspaces): -| Email Address | Password | -| --------------------------------------------------------------- | -------- | -| jane@example.com or any email address in the example.com domain | 1234 | +| Email Address | Password | +| ---------------- | -------- | +| jane@example.com | 1234 | From fc4eeacfd1866044bdde0e9f079baadad74ce99e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Pr=C3=A9?= Date: Thu, 23 Apr 2026 14:49:23 -0700 Subject: [PATCH 2/2] docs: Add semantic naming guideline for commits, branches, and PRs Co-Authored-By: Claude Opus 4.6 (1M context) --- CLAUDE.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 523806cff..bb3fbbf85 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -22,6 +22,8 @@ npm run validate-redirects # Validate .gitbook.yaml redirects **Always run `npm run format` before committing.** CI auto-commits formatting fixes on non-main branches, but formatting locally avoids noise. +**Use semantic naming for commits, branches, and PRs.** Prefix commit messages with a type (`feat:`, `fix:`, `docs:`, `chore:`, `ci:`, `refactor:`, `test:`). Use the same style for branch names (e.g., `docs/update-sandbox-credentials`) and PR titles. + Optional external tools used during `npm run generate` for code sample formatting: `ruff` (Python), `shfmt` (shell), `gofmt` (Go), `stree` from `syntax_tree` gem (Ruby). ## Architecture