agentxchain 2.26.0 → 2.27.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentxchain",
3
- "version": "2.26.0",
3
+ "version": "2.27.0",
4
4
  "description": "CLI for AgentXchain — governed multi-agent software delivery",
5
5
  "type": "module",
6
6
  "bin": {
@@ -557,9 +557,20 @@ function buildScaffoldConfigFromTemplate(template, localDevRuntime, workflowKitC
557
557
  };
558
558
  }
559
559
 
560
+ const PHASE_DISPLAY_NAMES = Object.freeze({
561
+ qa: 'QA',
562
+ });
563
+
564
+ function formatPhaseDisplayName(phaseKey) {
565
+ if (PHASE_DISPLAY_NAMES[phaseKey]) {
566
+ return PHASE_DISPLAY_NAMES[phaseKey];
567
+ }
568
+ return phaseKey.replace(/_/g, ' ').replace(/\b\w/g, (c) => c.toUpperCase());
569
+ }
570
+
560
571
  function buildRoadmapPhaseTable(routing, roles) {
561
572
  const rows = Object.entries(routing).map(([phaseKey, phaseConfig]) => {
562
- const phaseName = phaseKey.replace(/_/g, ' ').replace(/\b\w/g, (c) => c.toUpperCase());
573
+ const phaseName = formatPhaseDisplayName(phaseKey);
563
574
  const entryRole = phaseConfig.entry_role;
564
575
  const role = roles[entryRole];
565
576
  const goal = role?.mandate || phaseName;
@@ -105,7 +105,7 @@ function getPhaseGateHints(phase, roleId, config) {
105
105
  hints.push('.planning/IMPLEMENTATION_NOTES.md — record what you built and how to verify');
106
106
  } else if (phase === 'qa' && (roleId === 'qa' || roleId === 'human')) {
107
107
  hints.push('.planning/acceptance-matrix.md — mark each requirement PASS/FAIL');
108
- hints.push('.planning/ship-verdict.md — change "## Verdict: PENDING" → "## Verdict: SHIP"');
108
+ hints.push('.planning/ship-verdict.md — change "## Verdict: PENDING" → "## Verdict: YES"');
109
109
  hints.push('.planning/RELEASE_NOTES.md — user impact, verification summary, upgrade notes');
110
110
  }
111
111