Documentation Index
Fetch the complete documentation index at: https://docs.kosli.com/llms.txt
Use this file to discover all available pages before exploring further.
Error
When capturing Kosli CLI output in a subshell variable in CI, the variable contains debug output mixed with the expected value:Solution
Explicitly set--debug=false when running Kosli CLI commands in a subshell:
Context
The Kosli CLI writes debug information tostderr and all other output to stdout. In a local terminal, a $(subshell) captures only stdout. However, in many CI workflows (including GitHub and GitLab), stdout and stderr are multiplexed together, causing debug output to leak into captured variables.