myte 0.0.26 → 0.0.28

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 -8
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -56,7 +56,6 @@ The CLI searches for `.env` in the current folder and then up parent directories
56
56
  - `npx myte feedback apply --file ./MyteCommandCenter/reviews/feedback/<id>-edit.yml`
57
57
  - `npx myte suggestions sync`
58
58
  - `npx myte mission archive --mission-ids "M001" --reason "Duplicate disposable mission"`
59
- - `npx myte mission restore --mission-ids "M001" --status todo --reason "Restore after review"`
60
59
  - `npx myte query "Summarize the current branch changes" --with-diff`
61
60
  - `npx myte create-prd ./drafts/auth-prd.md`
62
61
  - `npx myte update-team "Backend deploy completed."`
@@ -67,7 +66,8 @@ The CLI searches for `.env` in the current folder and then up parent directories
67
66
 
68
67
  - `bootstrap`, `sync-qaqc`, `feedback-sync`, and `suggestions sync` write project-scoped local context under `MyteCommandCenter` in the current workspace unless `--output-dir` is provided.
69
68
  - `bootstrap` writes mission cards and mission suggestion thread state together; agents should run it before looking for mission or suggestion ids.
70
- - `mission status` is active-state only (`todo`, `in_progress`, `done`). Use `mission archive` and `mission restore` for lifecycle archival.
69
+ - `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.
70
+ - `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.
71
71
  - `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.
72
72
  - `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.
73
73
  - `feedback validate|apply` remains available for validation and owner-direct apply paths.
@@ -94,7 +94,7 @@ Recommended agent flow:
94
94
  5. Use `myte feedback status|edit|assign|archive` to create reviewable local artifacts, then `feedback submit` and `feedback review` for the owner-review membrane.
95
95
  6. Use `myte feedback move` only for direct board movement that is intentionally audited, with a clear `--reason`.
96
96
  7. Use `myte suggestions create|revise|review` for mission review threads. Valid create `change_type` values are exactly `update` and `create`; revisions keep the existing thread type and must not include `change_type`.
97
- 8. Use `myte mission archive` and `myte mission restore` for mission lifecycle archive/restore. Archive/restore require Project Owner or elevated delegate capability.
97
+ 8. Use `myte mission archive` for project-key mission lifecycle archival. Archive requires Project Owner or elevated delegate capability; restore is web-only from the archived missions board.
98
98
  9. Use `myte update-team "<content>"` for project/team comments through `/api/project-assistant/project-comment`.
99
99
 
100
100
  PRD document contract:
@@ -137,7 +137,6 @@ Feedback comments nuance:
137
137
  - `run-qaqc`: queue QAQC for explicit mission ids
138
138
  - `mission status`: update active mission state
139
139
  - `mission archive`: archive missions without hard delete
140
- - `mission restore`: restore archived missions to an active state
141
140
  - `sync-qaqc`: refresh active mission QAQC context locally
142
141
  - `feedback-sync`: refresh feedback and PRD context locally
143
142
  - `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
@@ -162,9 +161,8 @@ Feedback comments nuance:
162
161
  | Suggest new mission | `myte suggestions create` with `change_type: create` | Requires `change_set.title` and `change_set.description`; mission card is created only after approval. |
163
162
  | Revise a suggestion | `myte suggestions revise` with `suggestion_id` | Adds another revision to the same thread. Do not include `change_type`. |
164
163
  | Review a suggestion | `myte suggestions review` with `review_action: approve|request_changes|reject` | Project Owner or elevated mission-review delegate required. |
165
- | Update mission status | `myte mission status --mission-ids "M001" --status todo|in_progress|done` | Active status update only. |
166
- | Archive mission | `myte mission archive --mission-ids "M001" --reason "..."` | Project Owner or elevated delegate required. Keeps the mission record and hides it from normal board/bootstrap state. |
167
- | Restore mission | `myte mission restore --mission-ids "M001" --status todo|in_progress|done --reason "..."` | Project Owner or elevated delegate required. Restores archived cards to an active state. |
164
+ | Update mission status | `myte mission status --mission-ids "M001" --status todo|in_progress|done` | Active status update only; refreshes local bootstrap + mission-ops by default. |
165
+ | Archive mission | `myte mission archive --mission-ids "M001" --reason "..."` | Project Owner or elevated delegate required. Keeps the mission record, hides it from normal board/bootstrap state, and refreshes local bootstrap + mission-ops by default. |
168
166
 
169
167
  After `bootstrap`, find ids locally:
170
168
 
@@ -222,7 +220,6 @@ Mutation routes:
222
220
  - `POST /api/project-assistant/run-qaqc`
223
221
  - `POST /api/project-assistant/mission-status-update`
224
222
  - `POST /api/project-assistant/mission-archive`
225
- - `POST /api/project-assistant/mission-restore`
226
223
  - `POST /api/project-assistant/project-comment`
227
224
  - `POST /api/project-assistant/update-owner`
228
225
  - `POST /api/project-assistant/client-update-drafts`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myte",
3
- "version": "0.0.26",
3
+ "version": "0.0.28",
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.26"
19
+ "@mytegroupinc/myte-core": "0.0.28"
20
20
  }
21
21
  }