myte 0.0.20 → 0.0.21

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 +5 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -37,6 +37,9 @@ The CLI searches for `.env` in the current folder and then up parent directories
37
37
  - `npx myte bootstrap`
38
38
  - `npx myte sync-qaqc`
39
39
  - `npx myte feedback-sync`
40
+ - `npx myte feedback status --feedback-id <id> --status in_review --reason "Ready for review"`
41
+ - `npx myte feedback validate --file ./MyteCommandCenter/reviews/feedback/<id>-status.yml`
42
+ - `npx myte feedback apply --file ./MyteCommandCenter/reviews/feedback/<id>-status.yml`
40
43
  - `npx myte suggestions sync`
41
44
  - `npx myte query "Summarize the current branch changes" --with-diff`
42
45
  - `npx myte create-prd ./drafts/auth-prd.md`
@@ -47,6 +50,7 @@ The CLI searches for `.env` in the current folder and then up parent directories
47
50
  ## Behavior
48
51
 
49
52
  - `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.
50
54
  - `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.
51
55
  - 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.
52
56
  - 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.
@@ -59,6 +63,7 @@ The CLI searches for `.env` in the current folder and then up parent directories
59
63
  - `mission status`: update mission state
60
64
  - `sync-qaqc`: refresh active mission QAQC context locally
61
65
  - `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
62
67
  - `suggestions sync|create|revise|review`: work with mission suggestion workflow state
63
68
  - `query`: ask the project assistant, optionally with local diff context
64
69
  - `ai`: use the Myte AI gateway
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myte",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
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.20"
19
+ "@mytegroupinc/myte-core": "0.0.21"
20
20
  }
21
21
  }