myte 0.0.17 → 0.0.18
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 +19 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,6 +13,7 @@ Use one of these flows:
|
|
|
13
13
|
- then run `npx myte config --json`
|
|
14
14
|
- then run `npx myte bootstrap`
|
|
15
15
|
- then run `npx myte run-qaqc --mission-ids M001 --wait --sync`
|
|
16
|
+
- then run `npx myte mission status --mission-ids M001 --status done`
|
|
16
17
|
- then run `npx myte sync-qaqc`
|
|
17
18
|
- then run `npx myte feedback-sync`
|
|
18
19
|
- then run `npx myte suggestions sync`
|
|
@@ -29,6 +30,7 @@ Use one of these flows:
|
|
|
29
30
|
- then run `myte ai "Explain this repository"`
|
|
30
31
|
- then run `myte bootstrap`
|
|
31
32
|
- then run `myte run-qaqc --mission-ids M001 --wait --sync`
|
|
33
|
+
- then run `myte mission status --mission-ids M001 --status done`
|
|
32
34
|
- then run `myte sync-qaqc`
|
|
33
35
|
- then run `myte feedback-sync`
|
|
34
36
|
- then run `myte suggestions sync`
|
|
@@ -43,6 +45,7 @@ Use one of these flows:
|
|
|
43
45
|
- `npx myte@latest ai "Explain this repository"`
|
|
44
46
|
- `npx myte@latest bootstrap`
|
|
45
47
|
- `npx myte@latest run-qaqc --mission-ids M001 --wait --sync`
|
|
48
|
+
- `npx myte@latest mission status --mission-ids M001 --status done`
|
|
46
49
|
- `npx myte@latest sync-qaqc`
|
|
47
50
|
- `npx myte@latest feedback-sync`
|
|
48
51
|
- `npx myte@latest suggestions sync`
|
|
@@ -153,6 +156,19 @@ Useful forms:
|
|
|
153
156
|
- `npx myte run-qaqc --mission-ids "M001,M002" --wait`
|
|
154
157
|
- `npx myte run-qaqc --mission-ids "M001,M002" --wait --sync --json`
|
|
155
158
|
|
|
159
|
+
## Update mission status from the IDE
|
|
160
|
+
|
|
161
|
+
- `npx myte mission status --mission-ids "M001,M002" --status done`
|
|
162
|
+
- or `npm exec myte -- mission status --mission-ids "M001,M002" --status done`
|
|
163
|
+
- or `myte mission status --mission-ids "M001,M002" --status done`
|
|
164
|
+
|
|
165
|
+
What it does:
|
|
166
|
+
- updates one or many mission business ids through the project-key API
|
|
167
|
+
- updates the same mission `status` field used by the app board and mission routes
|
|
168
|
+
- accepts `todo`, `in_progress`, and `done` aliases and normalizes them before sending
|
|
169
|
+
- sends the canonical backend mission statuses: `Todo`, `In Progress`, or `Done`
|
|
170
|
+
- only changes mission state; it does not queue QAQC and it does not sync `MyteCommandCenter/data/qaqc.yml`
|
|
171
|
+
|
|
156
172
|
## Sync active mission QAQC context
|
|
157
173
|
|
|
158
174
|
Run this from the wrapper root that contains the project's repo folders:
|
|
@@ -179,7 +195,7 @@ Useful forms:
|
|
|
179
195
|
- `npx myte sync-qaqc --dry-run --json`
|
|
180
196
|
- `npx myte sync-qaqc --output-dir ./MyteCommandCenter`
|
|
181
197
|
|
|
182
|
-
## Sync
|
|
198
|
+
## Sync feedback and PRD context
|
|
183
199
|
|
|
184
200
|
Run this from the wrapper root that contains the project's repo folders:
|
|
185
201
|
|
|
@@ -189,7 +205,7 @@ Run this from the wrapper root that contains the project's repo folders:
|
|
|
189
205
|
|
|
190
206
|
What it does:
|
|
191
207
|
- fetches a project-scoped feedback snapshot from the API using your project key
|
|
192
|
-
- defaults to
|
|
208
|
+
- defaults to all non-archived feedback; use `--status` when you want a narrower slice
|
|
193
209
|
- writes one deterministic feedback snapshot under `MyteCommandCenter/data/feedback.yml`
|
|
194
210
|
- keeps feedback metadata plus conversation turns in `feedback.yml`
|
|
195
211
|
- writes full PRD markdown/text into `MyteCommandCenter/PRD/feedback-sync/*.md` and stores a pointer in `feedback.yml`
|
|
@@ -395,6 +411,7 @@ Notes:
|
|
|
395
411
|
|
|
396
412
|
- `npm install myte`
|
|
397
413
|
- `npx myte bootstrap`
|
|
414
|
+
- `npx myte mission status --mission-ids "M001,M002" --status done`
|
|
398
415
|
- `npx myte sync-qaqc`
|
|
399
416
|
- `npx myte feedback-sync`
|
|
400
417
|
- `npx myte suggestions sync`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myte",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "Myte developer CLI (Project Assistant + Myte AI gateway).",
|
|
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.
|
|
19
|
+
"@mytegroupinc/myte-core": "0.0.18"
|
|
20
20
|
}
|
|
21
21
|
}
|