Skip to content

Latest commit

 

History

History
117 lines (89 loc) · 2.96 KB

File metadata and controls

117 lines (89 loc) · 2.96 KB

Command-Line Client

wfcli parses commands, submits typed requests to wfdaemon, and formats replies. Fetching, persistence, query execution, and planning remain daemon-owned.

Commands

Focused commands provide common Warframe views without query syntax:

wfcli fissures
wfcli alerts --watch
wfcli sorties
wfcli baro inventory
wfcli teshin
wfcli archimedea

Catalog and account commands search one domain with domain-specific output:

wfcli mods toxin
wfcli items braton
wfcli codex 'critical chance'
wfcli enemies corrupted
wfcli drops serration
wfcli market 'saryn prime set'
wfcli player
wfcli diagnostics unresolved

Advanced operations have dedicated guides:

Run wfcli help commands for every focused worldstate command.

Help

Help is contextual; these forms are equivalent:

wfcli help daemon autostart
wfcli daemon autostart help
wfcli daemon autostart --help
wfcli daemon autostart -h

Commands narrow an operation. Options modify it. Where both forms improve shell use, both are accepted:

wfcli baro inventory
wfcli baro --inventory
wfcli archimedea deep
wfcli archimedea --deep

Bash Completion

Staged and packaged builds include lazy bash-completion files. Install a user copy when running the escript directly or overriding a packaged completion:

wfcli completion install
wfcli completion status
wfcli completion uninstall

Use --dir PATH for another completion directory. Bash 5.3 or newer and bash-completion are required. Rerun install after updating a direct escript. For one shell:

source <(wfcli completion bash)

The generated function contains all candidates. Shell startup and Tab completion do not start an Erlang VM.

Application Paths

wfcli paths
wfcli paths --apps
wfcli paths wfdaemon
wfcli paths wfgui
wfcli companion paths

The default report merges all managed XDG directories into one filesystem tree without creating them. A symlink is rendered as name -> target, with logical descendants nested below it. Use --apps to group paths by owning application, or name one application to inspect it alone.

Fissure Notifications

wfcli notifications status
wfcli notifications off
wfcli notifications on
wfcli notifications persistent

on watches while at least one wfgui connection is open. persistent watches whenever wfdaemon is running. The setting is shared with the desktop GUI and persists across restarts.

Related Guides