vtcode 0.123.7

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
id: prefer-action-over-filter
valid:
  - |
      before_action :require_login
  - |
      after_action :log_activity
  - |
      around_action :wrap_in_transaction
invalid:
  - |
      before_filter :require_login
  - |
      after_filter :log_activity
  - |
      around_filter :wrap_in_transaction