myte 0.0.56 → 0.0.57
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/README.md +7 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -104,8 +104,10 @@ The CLI searches for `.env` in the current folder and then up parent directories
|
|
|
104
104
|
guidance and add bounded jitter to prevent synchronized IDE poll bursts.
|
|
105
105
|
- Owner updates are accepted into a durable delivery outbox; a successful CLI
|
|
106
106
|
response means the update was queued, while delivery status remains server-owned.
|
|
107
|
-
- `bootstrap`, `sync-qaqc`, `feedback-sync`, and `suggestions sync` write project-scoped local context under `MyteCommandCenter` in the current workspace unless `--output-dir` is provided.
|
|
108
|
-
- `
|
|
107
|
+
- `bootstrap`, `sync-qaqc`, `feedback-sync`, and `suggestions sync` write project-scoped local context under `MyteCommandCenter` in the current workspace unless `--output-dir` is provided.
|
|
108
|
+
- Successful commands perform a cached, best-effort check for a newer `myte` package version. Notices are advisory, go to `stderr`, and do not break commands or JSON stdout. Disable with `--no-update-check` or `MYTE_PACKAGE_UPDATE_CHECK=0`.
|
|
109
|
+
- `bootstrap` writes mission cards and mission suggestion thread state together; agents should run it before looking for mission or suggestion ids.
|
|
110
|
+
- `build verify --json` is read-only. It checks that every active mission in the last bootstrap has a readable terminal QA/QC summary with no failed or pending cases, but it does not run QA/QC, repository tests, or semantic review.
|
|
109
111
|
- `mission status` is active-state only (`todo`, `in_progress`, `done`). Use `mission archive` for project-key lifecycle archival; restore archived missions from the web archived-board view.
|
|
110
112
|
- `mission status` and `mission archive` refresh local bootstrap + mission-ops state by default after a successful mutation. Use `--no-sync` only when you intentionally want to skip the local refresh.
|
|
111
113
|
- `feedback status|edit|assign|archive|refine` writes local review artifacts under `MyteCommandCenter/reviews/feedback`.
|
|
@@ -293,8 +295,9 @@ Feedback comments nuance:
|
|
|
293
295
|
package version. `mytecody update` updates the engine only. Use
|
|
294
296
|
`npm install -g myte@latest` to update the launcher and the Myte API CLI
|
|
295
297
|
commands shipped by npm.
|
|
296
|
-
- `create-prd`: upload deterministic PRD markdown as the stored renderable PRD document; use `description` only as the short card summary
|
|
297
|
-
- `update-team`, `update-owner`, `update-client`: send project updates through the project-key surface
|
|
298
|
+
- `create-prd`: upload deterministic PRD markdown as the stored renderable PRD document; use `description` only as the short card summary
|
|
299
|
+
- `update-team`, `update-owner`, `update-client`: send project updates through the project-key surface
|
|
300
|
+
- Successful `myte` commands check the npm registry at most once per day for a newer package version. Notices are advisory, go to `stderr`, and never block the command. Use `--no-update-check` or `MYTE_PACKAGE_UPDATE_CHECK=0` to disable them.
|
|
298
301
|
|
|
299
302
|
## Notes
|
|
300
303
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myte",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.57",
|
|
4
4
|
"description": "Myte developer CLI.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"node": ">=18.17"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@mytegroupinc/myte-core": "0.0.
|
|
22
|
+
"@mytegroupinc/myte-core": "0.0.57"
|
|
23
23
|
}
|
|
24
24
|
}
|