matterbridge-example-accessory-platform 3.0.0-dev-20260619-4e7311b → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,3 @@
1
- <!-- eslint-disable markdown/no-missing-label-refs -->
2
-
3
1
  # <img src="https://matterbridge.io/assets/matterbridge.svg" alt="Matterbridge Logo" width="64px" height="64px">&nbsp;&nbsp;&nbsp;Matterbridge accessory platform example plugin changelog
4
2
 
5
3
  [![npm version](https://img.shields.io/npm/v/matterbridge-example-accessory-platform.svg)](https://www.npmjs.com/package/matterbridge-example-accessory-platform)
@@ -30,7 +28,7 @@ If you like this project and find it useful, please consider giving it a star on
30
28
 
31
29
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
32
30
 
33
- ## [3.0.0] - Dev branch
31
+ ## [3.0.0] - 2026-06-19
34
32
 
35
33
  ### Breaking changes
36
34
 
@@ -45,12 +43,14 @@ If you like this project and find it useful, please consider giving it a star on
45
43
  ### Changed
46
44
 
47
45
  - [package]: Update dependencies.
48
- - [package]: Bump package to `automator` v.3.1.12 and the new toolchain.
46
+ - [package]: Bump package to `automator` v.3.1.12 and the [new toolchain](README.md#repository-setup).
49
47
  - [workflow]: Bump `.github\workflows\build.yml` config to v.2.0.5.
50
48
  - [workflow]: Bump `.github\workflows\codecov.yml` config to v.2.0.6.
51
49
  - [workflow]: Bump `.github\workflows\publish.yml` config to v.2.0.5.
52
- - [oxlint]: Bump `oxlint` config to v.1.0.11.
50
+ - [oxlint]: Bump `oxlint` config to v.1.0.13.
53
51
  - [oxfmt]: Bump `oxfmt` config to v.1.0.3.
52
+ - [devcontainer]: Bump `.devcontainer/devcontainer.json` config to v.1.0.4.
53
+ - [package]: Bump `.vscode/extensions.json` config to v.1.0.4.
54
54
 
55
55
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
56
56
 
package/README.md CHANGED
@@ -45,7 +45,7 @@ See the guidelines on [Matterbridge](https://matterbridge.io) for more informati
45
45
  - **No `typescript` package** — replaced by [TypeScript Native](https://github.com/microsoft/typescript-go). The `typescript` package is kept only as a publish-time dependency while tsgo is still in preview.
46
46
  - **No ESLint, no Prettier** — replaced by the [oxc](https://oxc.rs) stack: [oxlint](https://oxc.rs/docs/guide/usage/linter.html) for linting and [oxfmt](https://oxc.rs/docs/guide/usage/formatter.html) for formatting.
47
47
  - **No Jest** — replaced by [Vitest](https://vitest.dev), which is much faster and natively supports ESM without extra configuration.
48
- - **Far fewer development dependencies** — the number of installed packages drops from **~600** to **~100**. A clean install is much faster.
48
+ - **Far fewer development dependencies** — the number of installed packages drops from **~600** to **~75**. A clean install is much faster.
49
49
  - **Much faster linting and formatting** — oxlint and oxfmt run in a fraction of the time required by the ESLint / Prettier pipeline.
50
50
  - **Much faster builds** — tsgo compiles the project in a fraction of the time required by the standard `tsc` build.
51
51
  - **Editor support** — use the VS Code extensions for tsgo and oxc to get the same experience in the editor.
@@ -53,3 +53,33 @@ See the guidelines on [Matterbridge](https://matterbridge.io) for more informati
53
53
  ## Style guide
54
54
 
55
55
  See also the [Style Guide](./STYLEGUIDE.md) for JSDoc, naming, and logging conventions used in this repository.
56
+
57
+ ## Copilot instructions
58
+
59
+ | File | Notes |
60
+ | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
61
+ | `.github/copilot-instructions.md` | Main project instructions — always loaded |
62
+ | `.github/instructions/matterbridge/matterbridge.instructions.md` | Matterbridge endpoint guide — dedicated Copilot instruction file |
63
+ | `.github/instructions/testing/unit-tests.instructions.md` | Testing standards — scoped to `**/*.test.ts` |
64
+
65
+ ## Claude instructions
66
+
67
+ | File | Notes |
68
+ | --------------------------------------------------------- | ----------------------------------------------------- |
69
+ | `CLAUDE.md` | Main project instructions — always loaded |
70
+ | `.claude/rules/matterbridge/matterbridge.instructions.md` | Matterbridge endpoint guide — loaded for all contexts |
71
+ | `.claude/rules/testing/unit-tests.instructions.md` | Testing standards — scoped to `**/*.test.ts` |
72
+
73
+ ## Codex/Agents instructions
74
+
75
+ | File | Notes |
76
+ | ---------------------------- | ------------------------------------------------- |
77
+ | `AGENTS.md` | Main project instructions |
78
+ | `.codex/config.toml` | Codex project permissions, approvals, and profile |
79
+ | `.codex/rules/default.rules` | Codex command allow, prompt, and deny rules |
80
+
81
+ ## Documentation
82
+
83
+ Refer to the Matterbridge [documentation](https://matterbridge.io) for other guidelines.
84
+
85
+ ---
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge-example-accessory-platform",
3
- "version": "3.0.0-dev-20260619-4e7311b",
3
+ "version": "3.0.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge-example-accessory-platform",
9
- "version": "3.0.0-dev-20260619-4e7311b",
9
+ "version": "3.0.0",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "node-ansi-logger": "3.2.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-example-accessory-platform",
3
- "version": "3.0.0-dev-20260619-4e7311b",
3
+ "version": "3.0.0",
4
4
  "description": "Matterbridge accessory plugin",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",