myte 0.0.36 → 0.0.37

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -164,6 +164,10 @@ Feedback comments nuance:
164
164
  release manifest into a user-local Myte cache after signature/hash checks.
165
165
  Coding execution requires that engine, a reachable Myte AI Cody gateway, and
166
166
  `MYTEAI_API_KEY`.
167
+ - `mytecody doctor` reports both the signed MyteCody engine state and this npm
168
+ package version. `mytecody update` updates the engine only. Use
169
+ `npm install -g myte@latest` to update the launcher and the Myte API CLI
170
+ commands shipped by npm.
167
171
  - `create-prd`: upload deterministic PRD markdown as the stored renderable PRD document; use `description` only as the short card summary
168
172
  - `update-team`, `update-owner`, `update-client`: send project updates through the project-key surface
169
173
 
@@ -172,6 +176,8 @@ Feedback comments nuance:
172
176
  - The package ships the CLI only. Internal rollout notes, validation logs, and project-specific operating docs are not part of the public npm contract.
173
177
  - The package does not bundle the large MyteCody engine binary. The `mytecody`
174
178
  launcher installs or updates it through the Myte release manifest.
179
+ - `mytecody update` is intentionally engine-scoped. npm package updates use
180
+ `npm install -g myte@latest`.
175
181
  - The public `myte` package is the supported entrypoint. The scoped `@mytegroupinc/myte-core` package is the implementation dependency used by the wrapper.
176
182
  - See `THIRD_PARTY_NOTICES.md` and `TRADEMARKS.md` for Codex lineage and Myte
177
183
  brand notices.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myte",
3
- "version": "0.0.36",
3
+ "version": "0.0.37",
4
4
  "description": "Myte developer CLI.",
5
5
  "type": "commonjs",
6
6
  "license": "MIT",
@@ -19,6 +19,6 @@
19
19
  "node": ">=18"
20
20
  },
21
21
  "dependencies": {
22
- "@mytegroupinc/myte-core": "0.0.36"
22
+ "@mytegroupinc/myte-core": "0.0.37"
23
23
  }
24
24
  }