agileflow 4.0.0-alpha.15 → 4.0.0-alpha.16

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": "agileflow",
3
- "version": "4.0.0-alpha.15",
3
+ "version": "4.0.0-alpha.16",
4
4
  "description": "AI-driven agile development toolkit for Claude Code — skills-first architecture with opt-in plugins (v4)",
5
5
  "keywords": [
6
6
  "agile",
@@ -223,11 +223,15 @@ function applyTabFormat(sessionName, runner, opts = {}) {
223
223
  const ACCENT = theme.activeBg;
224
224
  const FG = theme.activeNameFg;
225
225
 
226
- const inactiveFormat = ` #I#[fg=${ACCENT}]:#[fg=default]#W `;
226
+ // Active tab uses the BRAND ACCENT (orange) as its pill background
227
+ // with the strip's dark color as text — maximum contrast against
228
+ // the muted inactive tabs so the user always knows which tab is
229
+ // focused after Alt+1..9 / Alt+Tab.
230
+ const inactiveFormat = ` #I:#W `;
227
231
  const activeFormat =
228
- `#[fg=${PILL_BG},bg=${BG}]${HALF_ROUND_OPEN}` +
229
- `#[bg=${PILL_BG},fg=${FG},bold]#I#[fg=${ACCENT}]:#[fg=${FG},nobold]#W` +
230
- `#[fg=${PILL_BG},bg=${BG}]${HALF_ROUND_CLOSE}`;
232
+ `#[fg=${ACCENT},bg=${BG}]${HALF_ROUND_OPEN}` +
233
+ `#[bg=${ACCENT},fg=${theme.activeFg},bold] #I:#W ` +
234
+ `#[fg=${ACCENT},bg=${BG}]${HALF_ROUND_CLOSE}`;
231
235
  const statusLeft =
232
236
  `#[fg=${PILL_BG},bg=${BG}]${HALF_ROUND_OPEN}` +
233
237
  `#[bg=${PILL_BG},fg=${ACCENT}] #S ` +