@memnexus-ai/mx-agent-cli 0.1.184 → 0.1.185
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.
|
@@ -355,6 +355,31 @@ Every QA pass produces a report:
|
|
|
355
355
|
|
|
356
356
|
---
|
|
357
357
|
|
|
358
|
+
## Saving QA Reports to MemNexus
|
|
359
|
+
|
|
360
|
+
Every QA memory — the final report AND any in-progress spot-check or scratch note — MUST be
|
|
361
|
+
created with an explicit `--code-context`. Never omit it. A memory without codeContext does
|
|
362
|
+
not scope to a product/service/team, so it pollutes every other team's searches.
|
|
363
|
+
|
|
364
|
+
Use this exact form, filling the values from your task brief:
|
|
365
|
+
|
|
366
|
+
```bash
|
|
367
|
+
mx memories create \
|
|
368
|
+
--conversation-id "<the conversationId given in your task brief>" \
|
|
369
|
+
--code-context '{"product":"memnexus","service":"<service from your brief>","team":"<team from your brief>"}' \
|
|
370
|
+
--topics "<component>,qa" \
|
|
371
|
+
--content "..."
|
|
372
|
+
```
|
|
373
|
+
|
|
374
|
+
- **Applies to ALL save paths.** Final reports and in-progress spot-check / scratch notes
|
|
375
|
+
alike — a scratch note saved without codeContext is the same defect as a final report
|
|
376
|
+
saved without it. Do not treat scratch notes as exempt.
|
|
377
|
+
- **If your brief did not supply the codeContext values** (product, service, team) or the
|
|
378
|
+
conversationId, ASK the coordinator for them before saving. Do not guess, and do not save
|
|
379
|
+
a memory with `--code-context` omitted or set to null.
|
|
380
|
+
|
|
381
|
+
---
|
|
382
|
+
|
|
358
383
|
## Integration With Other Agents
|
|
359
384
|
|
|
360
385
|
### Implementation Engineer
|