agileflow 4.0.0-alpha.19 → 4.0.0-alpha.20

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.19",
3
+ "version": "4.0.0-alpha.20",
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",
@@ -308,13 +308,13 @@ const TAB_KEYBINDS = [
308
308
  action: ["select-window", "-t", `:${n}`],
309
309
  hint: `Alt+${n} → switch to tab ${n}`,
310
310
  })),
311
- // Alt+0 jumps to the LAST tab — matches Chrome's Ctrl+9 muscle
312
- // memory (the 0 key sits naturally to the right of 9). tmux's
313
- // `:$` is the alias for the last window in the session.
311
+ // Alt+0 jumps to the FIRST tab. tmux's `:$` (last window) requires
312
+ // shell escaping in some terminal setups and is non-standard; "0
313
+ // means first" is more universal across editors/terminals.
314
314
  {
315
315
  key: "M-0",
316
- action: ["select-window", "-t", ":$"],
317
- hint: "Alt+0 → switch to last tab",
316
+ action: ["select-window", "-t", ":1"],
317
+ hint: "Alt+0 → switch to first tab",
318
318
  },
319
319
  // Browser-style cycling. Bind M-S-Tab AND M-BTab — terminals split
320
320
  // on which escape sequence they emit for Shift+Tab, so binding both