myte 0.0.21 → 0.0.23

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 +8 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -38,6 +38,10 @@ The CLI searches for `.env` in the current folder and then up parent directories
38
38
  - `npx myte sync-qaqc`
39
39
  - `npx myte feedback-sync`
40
40
  - `npx myte feedback status --feedback-id <id> --status in_review --reason "Ready for review"`
41
+ - `npx myte feedback submit --file ./MyteCommandCenter/reviews/feedback/<id>-edit.yml`
42
+ - `npx myte feedback reviews --status open`
43
+ - `npx myte feedback review --request-id <id> --action approve --reason "Looks correct"`
44
+ - `npx myte feedback move --feedback-id <id> --to-state in_progress --reason "Started"`
41
45
  - `npx myte feedback validate --file ./MyteCommandCenter/reviews/feedback/<id>-status.yml`
42
46
  - `npx myte feedback apply --file ./MyteCommandCenter/reviews/feedback/<id>-status.yml`
43
47
  - `npx myte suggestions sync`
@@ -50,7 +54,9 @@ The CLI searches for `.env` in the current folder and then up parent directories
50
54
  ## Behavior
51
55
 
52
56
  - `bootstrap`, `sync-qaqc`, `feedback-sync`, and `suggestions sync` write project-scoped local context under `MyteCommandCenter` in the current workspace unless `--output-dir` is provided.
53
- - `feedback status|edit|assign|archive` writes local review artifacts under `MyteCommandCenter/reviews/feedback`; `feedback validate|apply` sends those artifacts to the backend, where authorization, stale snapshot checks, allowed transitions, and history are enforced.
57
+ - `feedback status|edit|assign|archive` writes local review artifacts under `MyteCommandCenter/reviews/feedback`; `feedback submit|revise|reviews|review` routes proposed edits through the backend owner-review membrane.
58
+ - `feedback move|undo|prd-versions|prd-diff|history` calls the project-key Feedback API while authorization, stale snapshot checks, allowed transitions, and history remain enforced by the backend.
59
+ - `feedback validate|apply` remains available for validation and owner-direct apply paths.
54
60
  - `query --with-diff` is stricter than the snapshot commands. It requires project repositories to be configured by the project owner or builder, and it requires at least one matching local project repo to be resolved for diff collection.
55
61
  - If diff-scoped repo configuration is missing or no local project repo can be resolved, `query --with-diff` exits with an error instead of silently dropping diff context.
56
62
  - Most markdown files are excluded from diff context by default so code and runtime configuration changes dominate the payload. Key instruction files such as `README.md` and `AGENTS.md` remain eligible.
@@ -63,7 +69,7 @@ The CLI searches for `.env` in the current folder and then up parent directories
63
69
  - `mission status`: update mission state
64
70
  - `sync-qaqc`: refresh active mission QAQC context locally
65
71
  - `feedback-sync`: refresh feedback and PRD context locally
66
- - `feedback status|edit|assign|archive|validate|apply|history|get`: create reviewable feedback refinement artifacts and apply them through the project-key API
72
+ - `feedback status|edit|assign|archive|submit|revise|reviews|review|move|undo|prd-versions|prd-diff|validate|apply|history|get`: create reviewable feedback artifacts and operate the governed Feedback API
67
73
  - `suggestions sync|create|revise|review`: work with mission suggestion workflow state
68
74
  - `query`: ask the project assistant, optionally with local diff context
69
75
  - `ai`: use the Myte AI gateway
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myte",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "description": "Myte developer CLI.",
5
5
  "type": "commonjs",
6
6
  "license": "MIT",
@@ -16,6 +16,6 @@
16
16
  "node": ">=18"
17
17
  },
18
18
  "dependencies": {
19
- "@mytegroupinc/myte-core": "0.0.21"
19
+ "@mytegroupinc/myte-core": "0.0.23"
20
20
  }
21
21
  }