Commands
Input Patterns
Many of the commands take an input pattern as feedback from guessing a word.
- Miss → a lower case letter (eg "local")
- Misplaced → a lower case letter proceeded by a '.' (eg "l.ocal")
- Exact → an upper case letter (eg "LOcal")
Global Flags
Name | Aliases | EnvVars | Description |
---|---|---|---|
debug | enable debug log level | ||
monochrome | disable color output | ||
help | h | show help |
Commands
digits
Description
Play digits automatically
Syntax
Flags
Name | Aliases | EnvVars | Description |
---|---|---|---|
target | t | ||
count | N | ||
equation | e |
help
Description
Shows a list of commands or help for one command
Syntax
letterboxed
Description
Solve the NYT Letter Boxed puzzle
Syntax
Flags
Name | Aliases | EnvVars | Description |
---|---|---|---|
min | minimum word size | ||
max | maximum solution length | ||
concurrent | number of cpus to use for concurrent solving | ||
wordlist | w | use the specified embedded word list |
order
Description
Order the arguments per the strategy
Syntax
Flags
Name | Aliases | EnvVars | Description |
---|---|---|---|
strategy | s | use the specified strategy | |
speculate | S | speculate if necessary |
play
Description
Play wordle automatically
Syntax
Flags
Name | Aliases | EnvVars | Description |
---|---|---|---|
start | t | ||
progress | B | display a progress bar | |
rounds | r | max rounds not to exceed rounds * len(secret) |
|
wordlist | w | use the specified embedded word list | |
strategy | s | use the specified strategy | |
speculate | S | speculate if necessary |
ranks
Description
Detailed rank information from letter frequency tables
Syntax
Example
Sum all the percentages for letters in position 2
Compute the score for the words
$ qordle ranks brown | jq .words
{
"brown": {
"bigrams": {
"ranks": {
"br": 0.0022,
"ow": 0.0014,
"ro": 0.0112,
"wn": 0.0002
},
"total": 0.0750
},
"frequencies": {
"ranks": {
"0": 0.0183,
"1": 0.0704,
"2": 0.072,
"3": 0.0065,
"4": 0.0718
},
"total": 0.2390
},
"positions": {
"ranks": {
"0": 0.07,
"1": 0.0685,
"2": 0.0637,
"3": 0.0133,
"4": 0.0581
},
"total": 0.2736
}
}
}
score
Description
Score the guesses against the secret
Syntax
strategies
Description
List all available strategies
Syntax
suggest
Description
Suggest the next word to guess incorporating the already scored patterns
Syntax
Flags
Name | Aliases | EnvVars | Description |
---|---|---|---|
length | word length | ||
wordlist | w | use the specified embedded word list | |
strategy | s | use the specified strategy | |
speculate | S | speculate if necessary |
Example
This command uses the specified strategies and any information about prior guesses to sort the remaining words.
$ qordle suggest -s freq -s pos -S .rais.e to.nER | jq
[
"neper",
"nuder",
"never",
"ender",
"under",
"newer"
]
$ qordle suggest -s bigram .rais.e to.nER | jq
[
"neper",
"nuder",
"never",
"ender",
"under",
"newer"
]
validate
Description
Validate the word against the pattern
Syntax
Example
This command is useful for understanding why a guess was rejected against the secret. The
--debug
flag is your friend as it will show the first reason for a word to be rejected.
$ qordle --debug validate brown local
2023-04-10T08:01:42+02:00 DBG compile pattern=[^loca][^loca][^loca][^loca][^loca] required={}
2023-04-10T08:01:42+02:00 DBG filter found=o i=2 reason=invalid word=brown
{
"guess": "brown",
"ok": false,
"secrets": [
"local"
]
}
version
Description
Show the version information of the binary
Syntax
wordlists
Description
List all available wordlists
Syntax
Example