Skip to content

Commit c7eba09

Browse files
jrvb-rlAgent Flowclaude
authored
fix: widen VERSION column in agent list to prevent truncation (#190)
## Summary - Increased `COL_VERSION` from 14 to 18 characters in `src/commands/agent/list.ts` - Prevents version strings from being truncated in `rli agent list` output ## Test plan - [ ] Run `rli agent list` and verify VERSION column displays full version strings without truncation - [ ] Verify table layout remains properly aligned at various terminal widths 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Agent Flow <agent@agentflow.dev> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 1a92f5f commit c7eba09

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/agent/list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface ListOptions {
1717
}
1818

1919
// Column widths (NAME is dynamic, takes remaining space)
20-
const COL_VERSION = 14;
20+
const COL_VERSION = 18;
2121
const COL_VISIBILITY = 10;
2222
const COL_ID = 30;
2323
const COL_CREATED = 10;

0 commit comments

Comments
 (0)