@mytegroupinc/myte-core 0.0.18 → 0.0.19
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 +1 -1
- package/cli.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -82,7 +82,7 @@ Notes:
|
|
|
82
82
|
- `sync-qaqc` keeps QAQC state in one deterministic file so the working set grows and shrinks with current active-mission reality.
|
|
83
83
|
- `sync-qaqc` fully rewrites `MyteCommandCenter/data/qaqc.yml` on every sync and does not delete `MyteCommandCenter/data/missions/*.yml`.
|
|
84
84
|
- `feedback-sync` writes one deterministic feedback snapshot under `MyteCommandCenter/data/feedback.yml`.
|
|
85
|
-
- `feedback-sync` defaults to
|
|
85
|
+
- `feedback-sync` defaults to pending feedback unless `--status` is provided.
|
|
86
86
|
- `feedback-sync` keeps feedback metadata plus comment turns in `MyteCommandCenter/data/feedback.yml`.
|
|
87
87
|
- `feedback-sync` writes full PRD context into `MyteCommandCenter/PRD/feedback-sync/*.md` and points to those files from `feedback.yml`.
|
|
88
88
|
- `feedback-sync` fully replaces the feedback-owned sync file to avoid stale local feedback noise.
|
package/cli.js
CHANGED
|
@@ -286,7 +286,7 @@ function printHelp() {
|
|
|
286
286
|
"",
|
|
287
287
|
"feedback-sync contract:",
|
|
288
288
|
" - Runs from the wrapper root that contains the project's configured repo folders",
|
|
289
|
-
" - Syncs
|
|
289
|
+
" - Syncs pending feedback by default so local Command Center data stays focused on active work",
|
|
290
290
|
" - Writes project feedback metadata and conversation turns into MyteCommandCenter/data/feedback.yml",
|
|
291
291
|
" - Stores full PRD context in MyteCommandCenter/PRD/feedback-sync/*.md and points to those files from feedback.yml",
|
|
292
292
|
"",
|
|
@@ -310,7 +310,7 @@ function printHelp() {
|
|
|
310
310
|
" --body-file <path> Read update-owner or update-client markdown body from a file",
|
|
311
311
|
" --target-contact-id Add one client contact ObjectId (repeatable)",
|
|
312
312
|
" --target-contact-ids Comma-separated client contact ObjectIds",
|
|
313
|
-
" --status <value> For mission status: required target status (todo|in_progress|done). For feedback-sync: optional filter.",
|
|
313
|
+
" --status <value> For mission status: required target status (todo|in_progress|done). For feedback-sync: optional filter (default: Pending).",
|
|
314
314
|
" --source <value> Feedback source filter for feedback-sync",
|
|
315
315
|
" --with-prd-text Include extracted PRD text so local PRD files are materialized during feedback-sync (default: on)",
|
|
316
316
|
" --no-with-prd-text Skip PRD text download and write only feedback metadata/comment turns",
|
|
@@ -3376,7 +3376,7 @@ async function runFeedbackSync(args) {
|
|
|
3376
3376
|
const apiBase = resolveApiBase(args);
|
|
3377
3377
|
const includePrdText = resolveBooleanFlag(args, "with-prd-text", true);
|
|
3378
3378
|
const filters = {
|
|
3379
|
-
status: firstNonEmptyString(args.status) || "",
|
|
3379
|
+
status: firstNonEmptyString(args.status) || "Pending",
|
|
3380
3380
|
source: firstNonEmptyString(args.source) || "",
|
|
3381
3381
|
includePrdText,
|
|
3382
3382
|
includeCommentTurns: true,
|