1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# Option Type Inference Patterns
# CLI Testing Specialist v2.5.0
#
# This file defines patterns for inferring the type of CLI options
# based on their names and common conventions.
#
# Pattern matching is performed in priority order (higher priority first).
patterns:
# Numeric type options (integers, floats)
- type: numeric
priority: 10
keywords:
# Port numbers
- port
- http-port
- https-port
- tcp-port
- udp-port
- socks-port
# Time-related
- timeout
- wait
- delay
- duration
- interval
- ttl
# Size/Limit values
- max
- min
- limit
- size
- length
- count
- num
- number
# Performance/Concurrency
- threads
- workers
- jobs
- concurrency
- parallelism
# Retry/Attempts
- retry
- retries
- attempts
- tries
# Buffer/Memory
- buffer
- cache
- memory
- heap
# Percentage/Ratio
- percentage
- percent
- ratio
- rate
description: "Numeric options (integers, floats, percentages)"
examples:
- "--port 8080"
- "--timeout 30"
- "--max-size 1024"
- "--threads 4"
# File/Directory path options
- type: path
priority: 9
keywords:
# General paths
- path
- file
- filename
- filepath
# Input/Output
- input
- output
- source
- dest
- destination
- target
# Directories
- dir
- directory
- folder
- workdir
- homedir
- rootdir
# Configuration/Data
- config
- configuration
- data
- datadir
# Security/Certificates
- cert
- certificate
- key
- keyfile
- ca
- ca-file
# Logs
- log
- logfile
- log-file
description: "File and directory path options"
examples:
- "--input /path/to/file.txt"
- "--config ~/.myapp/config.yaml"
- "--cert /etc/ssl/cert.pem"
# Enumeration (fixed value set) options
- type: enum
priority: 8
keywords:
# Format/Type
- format
- type
- kind
- variant
# Mode/Style
- mode
- style
- theme
- skin
# Language/Locale
- lang
- language
- locale
- encoding
# Level/Priority
- level
- priority
- severity
# Method/Algorithm
- method
- algorithm
- strategy
- policy
# Protocol
- protocol
- scheme
description: "Enumeration options with a fixed set of allowed values"
examples:
- "--format json"
- "--log-level debug"
- "--lang en"
- "--protocol https"
# Boolean flag options
- type: boolean
priority: 7
keywords:
# Verbosity
- verbose
- quiet
- silent
- debug
# Force/Confirm
- force
- yes
- no
- confirm
- interactive
# Enable/Disable
- enable
- disable
- allow
- deny
# Feature flags
- color
- colors
- progress
- watch
- follow
- recursive
# Dry-run/Test
- dry-run
- dryrun
- test
- simulate
description: "Boolean flag options (true/false, on/off)"
examples:
- "--verbose"
- "--force"
- "--dry-run"
- "--no-color"
# Default type for unmatched options
default_type: string
# Inference settings
settings:
# Case sensitivity for pattern matching
case_sensitive: false
# Whether to match partial keywords (e.g., "max" matches "max-size")
partial_match: true
# Minimum keyword length for partial matching
min_keyword_length: 3