1 906 erreurs extraites du code source C. Codes de sortie, définitions d'erreurs internes, commandes de diagnostic et index des erreurs.
Process exit codes returned by scorpiox code binaries. Exit code 128+N indicates the process was killed by signal N.
| Code | Signification |
|---|---|
0 |
success |
1 |
general error |
2 |
usage/config error |
3 |
clone/operation failure (vault-git) |
4 |
export failure (vault-git) |
127 |
exec failed (child process could not execvp) |
128 |
signal base (128+N = killed by signal N) |
54 C preprocessor error defines across 11 header files. These are internal return codes used by scorpiox libraries.
| En-tête | Définition | Valeur |
|---|---|---|
scorpiox/libsxbridge/sx_bridge.h | SX_ERR_NOMEM |
-1 |
SX_ERR_NOT_FOUND |
-2 |
|
SX_ERR_DOWNLOAD_FAILED |
-3 |
|
SX_ERR_VERIFY_FAILED |
-4 |
|
SX_ERR_EXECUTE_FAILED |
-5 |
|
SX_ERR_INVALID_BRIDGE |
-6 |
|
scorpiox/libsxnet/sx_frp.h | SX_FRP_ERR_NOMEM |
-1 |
SX_FRP_ERR_CONNECT |
-2 |
|
SX_FRP_ERR_AUTH |
-3 |
|
SX_FRP_ERR_PROTOCOL |
-4 |
|
SX_FRP_ERR_PROXY |
-5 |
|
SX_FRP_ERR_IO |
-6 |
|
SX_FRP_ERR_TIMEOUT |
-7 |
|
SX_FRP_ERR_CONFIG |
-8 |
|
SX_FRP_ERR_SHUTDOWN |
-9 |
|
scorpiox/libsxnet/sx_http.h | SX_HTTP_ERR_NOMEM |
-1 |
SX_HTTP_ERR_INIT |
-2 |
|
SX_HTTP_ERR_NETWORK |
-3 |
|
SX_HTTP_ERR_TIMEOUT |
-4 |
|
SX_HTTP_ERR_CANCELLED |
-5 |
|
SX_HTTP_ERR_NOTSUP |
-6 |
|
scorpiox/libsxnet/sx_provider.h | SX_HTTP_INTERNAL_ERROR |
500 |
scorpiox/libsxutil/sx_exec.h | SX_EXEC_ERR_NOMEM |
-1 |
SX_EXEC_ERR_SPAWN |
-2 |
|
SX_EXEC_ERR_TIMEOUT |
-3 |
|
SX_EXEC_ERR_NOTSUP |
-4 |
|
scorpiox/libsxutil/sx_tcp_fetch.h | SX_TCP_ERR_CONNECT |
-1 |
SX_TCP_ERR_AUTH |
-2 |
|
SX_TCP_ERR_NODATA |
-3 |
|
SX_TCP_ERR_ALLHOSTS |
-4 |
|
SX_TCP_ERR_BADARG |
-5 |
|
scorpiox/libsxutil/sx_wsl.h | SX_WSL_ERR_NOT_SUPPORTED |
-1 |
SX_WSL_ERR_NOT_INSTALLED |
-2 |
|
SX_WSL_ERR_REGISTER |
-3 |
|
SX_WSL_ERR_UNREGISTER |
-4 |
|
SX_WSL_ERR_LAUNCH |
-5 |
|
SX_WSL_ERR_ALREADY_EXISTS |
-6 |
|
SX_WSL_ERR_NOT_FOUND |
-7 |
|
SX_WSL_ERR_INVALID_TAR |
-8 |
|
SX_WSL_ERR_TIMEOUT |
-9 |
|
SX_WSL_ERR_CANCELLED |
-10 |
|
SX_WSL_ERR_API_LOAD |
-11 |
|
scorpiox/scorpiox-dns.c | EXIT_OK |
0 |
EXIT_ERRORS |
1 |
|
EXIT_CONFIG_ERR |
2 |
|
scorpiox/scorpiox-mirror-git.c | EXIT_OK |
0 |
EXIT_ERRORS |
1 |
|
EXIT_CONFIG_ERR |
2 |
|
scorpiox/scorpiox-vault-git.c | EXIT_OK |
0 |
EXIT_ARGS |
1 |
|
EXIT_INSTALL |
2 |
|
EXIT_CLONE |
3 |
|
EXIT_EXPORT |
4 |
|
scorpiox/sx.c | SX_COLOR_ERROR |
0 |
Log levels: ERROR, WARN, INFO, DEBUG, TRACE · Config: LOG_LEVEL in scorpiox-env.txt · Verbose: --verbose
Verify the binary is installed and accessible.
sx --version which sx ls -la ~/.scorpiox/
Ensure scorpiox-env.txt exists and has valid entries.
cat ~/.scorpiox/scorpiox-env.txt sx config --list
Check network access to your configured AI provider.
curl -sI https://api.openai.com/v1/models curl -sI https://api.anthropic.com/v1/messages curl -sI https://api.scorpiox.net/router sx providers --test
Set LOG_LEVEL to see detailed internal output.
# In scorpiox-env.txt: LOG_LEVEL=DEBUG # Or for maximum verbosity: LOG_LEVEL=TRACE # Log macros: SX_ERROR(), SX_WARN(), SX_INFO(), SX_DEBUG(), SX_VTRACE()
Verify container runtime for sandboxed execution.
podman --version podman ps -a sx container --status
Diagnose tunnel and reverse proxy connectivity.
sx frp --status curl -sI https://dist.scorpiox.net curl -sI https://frp.scorpiox.net sx beam --ping
Frequently encountered issues with step-by-step resolutions.
AI provider tokens must be set in scorpiox-env.txt. Tokens can expire or be revoked.
# Check current token configuration grep -E "(TOKEN|KEY|AUTH)" ~/.scorpiox/scorpiox-env.txt # Update token echo "CLAUDE_CODE_TOKEN=sk-ant-..." >> ~/.scorpiox/scorpiox-env.txt # Verify provider connectivity sx providers --test
Scorpiox code requires the HOME environment variable to locate its configuration directory at ~/.scorpiox/.
# Set HOME explicitly (Linux/Mac) export HOME=/home/youruser # For containers / CI: docker run -e HOME=/root scorpiox/code # Verify: echo $HOME && sx --version
The ROUTER_URL must be set in scorpiox-env.txt for the provider routing layer to function.
# Add to configuration echo "ROUTER_URL=https://api.scorpiox.net/router" >> ~/.scorpiox/scorpiox-env.txt # Verify connectivity curl -sI https://api.scorpiox.net/router
Bridge or binary download failed integrity check. This can occur with unstable network connections or CDN issues.
# Clear download cache and retry rm -rf ~/.scorpiox/cache/downloads/ sx bridge --update # Manual verification sha256sum ~/.scorpiox/bin/sx # Check dist server curl -sI https://dist.scorpiox.net
Rootless containers require user namespace support in the kernel.
# Check kernel support cat /proc/sys/kernel/unprivileged_userns_clone # Enable if disabled (requires root) echo 1 | sudo tee /proc/sys/kernel/unprivileged_userns_clone # Alternatively, run with podman podman run --rm -it scorpiox/code sx --version
FRP authentication requires valid credentials and network access to the tunnel server at frp.scorpiox.net.
# Check FRP config grep FRP_ ~/.scorpiox/scorpiox-env.txt # Test connectivity curl -sI https://frp.scorpiox.net # Re-authenticate sx frp --login sx frp --status
The agent attempted to execute a tool binary (execvp) that is not installed or not in PATH.
# Check which tool failed in the logs LOG_LEVEL=DEBUG sx agent 2>&1 | grep "exec failed" # Verify common tools are installed which bash curl git podman # Check PATH echo $PATH
Ctrl+C during multi-step agent operations may leave partial state. Exit code 128+2=130 is normal for SIGINT.
# Check for orphan processes ps aux | grep scorpiox # Clean up any partial state rm -f ~/.scorpiox/locks/*.lock # Resume conversation sx agent --resume
The provider returned invalid JSON. This usually indicates a network intermediary (proxy, firewall) corrupted the response, or the provider is experiencing issues.
# Test provider directly
curl -s https://api.anthropic.com/v1/messages \
-H "x-api-key: $ANTHROPIC_API_KEY" \
-H "content-type: application/json" \
-d '{"model":"claude-sonnet-4-20250514","max_tokens":10,"messages":[{"role":"user","content":"test"}]}'
# Check for proxy interference
curl -v https://api.anthropic.com 2>&1 | head -30
# Enable trace logging
LOG_LEVEL=TRACE sx agent
1,906 errors extracted from the C source across 6 categories.
| Code | Message | Source | Résolution |
|---|---|---|---|
1 |
[frp] login failed: <string> |
scorpiox/libsxnet/sx_frp.c | Verify authentication credentials |
1 |
anthropic: load_env auth=<string> key=<string> url=<string> model=<string> streaming=<number> thinking=<number> tools=<number> |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify authentication credentials |
1 |
Failed to run fetchtoken command: <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify authentication credentials |
1 |
Failed to spawn fetchtoken: <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Check system resources (process limits) |
1 |
HTTP 401 after token refresh - authentication permanently failed |
scorpiox/libsxnet/sx_provider_claude_code.c | Re-authenticate to get a fresh token |
1 |
HTTP 401: OAuth token likely expired, refreshing and retrying... |
scorpiox/libsxnet/sx_provider_claude_code.c | Re-authenticate to get a fresh token |
1 |
HTTP 403: possible token issue, refreshing token before retry... |
scorpiox/libsxnet/sx_provider_claude_code.c | Re-authenticate to get a fresh token |
1 |
No access_token in fetchtoken output |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify authentication credentials |
1 |
No output from fetchtoken |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify authentication credentials |
1 |
No output from fetchtoken (exit=<number>) |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify authentication credentials |
1 |
claude_code: OAuth refresh failed, falling back to file read |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify authentication credentials |
1 |
claude_code: init token_mode=<number> exe_dir=<string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify authentication credentials |
1 |
claude_code: loading token (first API call) |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify authentication credentials |
1 |
claude_code: token loaded ok |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify authentication credentials |
1 |
claude_code: token refresh failed after 401 |
scorpiox/libsxnet/sx_provider_claude_code.c | Re-authenticate to get a fresh token |
1 |
claude_code: token refresh failed after 403, continuing normal retry |
scorpiox/libsxnet/sx_provider_claude_code.c | Re-authenticate to get a fresh token |
1 |
claude_code: token refresh failed after retries |
scorpiox/libsxnet/sx_provider_claude_code.c | Re-authenticate to get a fresh token |
1 |
claude_code: token refresh failed, retrying in 2s... |
scorpiox/libsxnet/sx_provider_claude_code.c | Re-authenticate to get a fresh token |
1 |
claude_code: token refreshed after 401, retrying request |
scorpiox/libsxnet/sx_provider_claude_code.c | Re-authenticate to get a fresh token |
1 |
claude_code: token refreshed after 403, retrying request |
scorpiox/libsxnet/sx_provider_claude_code.c | Re-authenticate to get a fresh token |
1 |
fetchtoken failed (exit=<number>): <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify authentication credentials |
1 |
claude_code_wasm: HTTP 401, refreshing token and retrying |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Re-authenticate to get a fresh token |
1 |
claude_code_wasm: empty response from token endpoint |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Verify authentication credentials |
1 |
claude_code_wasm: no access_token/accessToken in response: %.200s |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Verify authentication credentials |
1 |
claude_code_wasm: token endpoint HTTP <number>: <string> |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Verify authentication credentials |
1 |
claude_code_wasm: token fetch failed: <string> |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Verify authentication credentials |
1 |
claude_code_wasm: token fetched ok, len=<number> org=<string> expires=%lld |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Verify authentication credentials |
1 |
claude_code_wasm: token too long (<number>) |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Verify authentication credentials |
1 |
codex: failed to run fetchtoken: <string> |
scorpiox/libsxnet/sx_provider_codex.c | Verify authentication credentials |
1 |
codex: failed to spawn fetchtoken: <string> |
scorpiox/libsxnet/sx_provider_codex.c | Check system resources (process limits) |
1 |
codex: fetchtoken failed (exit=<number>): <string> |
scorpiox/libsxnet/sx_provider_codex.c | Verify authentication credentials |
1 |
codex: fetchtoken output has no JSON: %.200s |
scorpiox/libsxnet/sx_provider_codex.c | Verify authentication credentials |
1 |
codex: fetchtoken output is not valid JSON: %.200s |
scorpiox/libsxnet/sx_provider_codex.c | Verify authentication credentials |
1 |
codex: no access_token in fetchtoken output |
scorpiox/libsxnet/sx_provider_codex.c | Verify authentication credentials |
1 |
codex: skipped <number> bytes of non-JSON prefix in fetchtoken output |
scorpiox/libsxnet/sx_provider_codex.c | Verify authentication credentials |
1 |
google_claude: invalid token JSON |
scorpiox/libsxnet/sx_provider_google_claude.c | Re-authenticate to get a fresh token |
1 |
google_claude: token error: <string> |
scorpiox/libsxnet/sx_provider_google_claude.c | Verify authentication credentials |
1 |
google_claude: token fetch failed: <string> |
scorpiox/libsxnet/sx_provider_google_claude.c | Verify authentication credentials |
1 |
google_gemini: invalid token response JSON |
scorpiox/libsxnet/sx_provider_google_gemini.c | Re-authenticate to get a fresh token |
1 |
google_gemini: token error: <string> |
scorpiox/libsxnet/sx_provider_google_gemini.c | Verify authentication credentials |
1 |
google_gemini: token fetch failed: <string> |
scorpiox/libsxnet/sx_provider_google_gemini.c | Verify authentication credentials |
1 |
Using PAT authentication |
scorpiox/scorpiox-agent.c | Verify authentication credentials |
1 |
error: TCP auth rejected |
scorpiox/scorpiox-claudecode-fetchtoken.c | Verify authentication credentials |
1 |
error: no accessToken in credentials |
scorpiox/scorpiox-claudecode-fetchtoken.c | Verify authentication credentials |
1 |
error: no access_token or accessToken in JSON |
scorpiox/scorpiox-claudecode-fetchtoken.c | Verify authentication credentials |
1 |
error: fetchtoken failed (exit <number>) |
scorpiox/scorpiox-claudecode-models.c | Verify authentication credentials |
1 |
error: no access_token in fetchtoken output |
scorpiox/scorpiox-claudecode-models.c | Verify authentication credentials |
1 |
--force Refresh even if token is not expired |
scorpiox/scorpiox-claudecode-refreshtoken.c | Re-authenticate to get a fresh token |
1 |
error: HTTP <number> from OAuth endpoint |
scorpiox/scorpiox-claudecode-refreshtoken.c | Verify authentication credentials |
1 |
error: no access_token in refresh response |
scorpiox/scorpiox-claudecode-refreshtoken.c | Re-authenticate to get a fresh token |
1 |
error: no claudeAiOauth section in credentials |
scorpiox/scorpiox-claudecode-refreshtoken.c | Verify authentication credentials |
1 |
error: no refreshToken found in credentials |
scorpiox/scorpiox-claudecode-refreshtoken.c | Re-authenticate to get a fresh token |
1 |
❌ Failed to update credentials file |
scorpiox/scorpiox-claudecode-refreshtoken.c | Verify authentication credentials |
1 |
❌ Token refresh failed! |
scorpiox/scorpiox-claudecode-refreshtoken.c | Re-authenticate to get a fresh token |
1 |
error: TCP auth rejected |
scorpiox/scorpiox-codex-fetchtoken.c | Verify authentication credentials |
1 |
error: no access_token in JSON |
scorpiox/scorpiox-codex-fetchtoken.c | Verify authentication credentials |
1 |
error: fetchtoken failed (exit <number>) |
scorpiox/scorpiox-codex-models.c | Verify authentication credentials |
1 |
error: no access_token in fetchtoken output |
scorpiox/scorpiox-codex-models.c | Verify authentication credentials |
1 |
--force Refresh even if token is not expired |
scorpiox/scorpiox-codex-refreshtoken.c | Re-authenticate to get a fresh token |
1 |
error: HTTP <number> from OAuth endpoint |
scorpiox/scorpiox-codex-refreshtoken.c | Verify authentication credentials |
1 |
error: no access_token in refresh response |
scorpiox/scorpiox-codex-refreshtoken.c | Re-authenticate to get a fresh token |
1 |
error: no refresh_token found in auth.json |
scorpiox/scorpiox-codex-refreshtoken.c | Re-authenticate to get a fresh token |
1 |
❌ Failed to update auth.json |
scorpiox/scorpiox-codex-refreshtoken.c | Verify authentication credentials |
1 |
❌ Token refresh failed! |
scorpiox/scorpiox-codex-refreshtoken.c | Re-authenticate to get a fresh token |
1 |
WARNING: Sending SMTP credentials over plaintext (tls=none). Credentials may be intercepted. |
scorpiox/scorpiox-email.c | Verify authentication credentials |
1 |
scorpiox-gemini-vertex: VERTEX_API_KEY not set |
scorpiox/scorpiox-gemini-vertex.c | Set the appropriate API key in scorpiox-env.txt or environment |
1 |
scorpiox-google-claude: GOOGLE_ACCESS_TOKEN not set |
scorpiox/scorpiox-google-claude.c | Verify authentication credentials |
1 |
scorpiox-google-gemini: GOOGLE_ACCESS_TOKEN not set |
scorpiox/scorpiox-google-gemini.c | Verify authentication credentials |
1 |
error: invalid token response |
scorpiox/scorpiox-google-models.c | Re-authenticate to get a fresh token |
1 |
error: token fetch failed: <string> |
scorpiox/scorpiox-google-models.c | Verify authentication credentials |
1 |
error: token: <string> |
scorpiox/scorpiox-google-models.c | Verify authentication credentials |
1 |
maps: TCP token error: <string> |
scorpiox/scorpiox-googlemaps.c | Verify authentication credentials |
1 |
maps: empty response from token endpoint |
scorpiox/scorpiox-googlemaps.c | Verify authentication credentials |
1 |
maps: invalid JSON from TCP token endpoint |
scorpiox/scorpiox-googlemaps.c | Re-authenticate to get a fresh token |
1 |
maps: invalid JSON from token endpoint |
scorpiox/scorpiox-googlemaps.c | Re-authenticate to get a fresh token |
1 |
maps: no API key available (set MAPS_API_KEY or configure token source) |
scorpiox/scorpiox-googlemaps.c | Set the appropriate API key in scorpiox-env.txt or environment |
1 |
maps: token endpoint returned HTTP <number> |
scorpiox/scorpiox-googlemaps.c | Verify authentication credentials |
1 |
maps: token error: <string> |
scorpiox/scorpiox-googlemaps.c | Verify authentication credentials |
1 |
maps: token fetch failed: <string> |
scorpiox/scorpiox-googlemaps.c | Verify authentication credentials |
1 |
weather: token endpoint returned HTTP <number> |
scorpiox/scorpiox-googleweather.c | Verify authentication credentials |
1 |
weather: token fetch failed: <string> |
scorpiox/scorpiox-googleweather.c | Verify authentication credentials |
1 |
Auth init failed — all users will be rejected |
scorpiox/scorpiox-server-email.c | Verify authentication credentials |
1 |
DLL: Auth init failed — all users will be rejected |
scorpiox/scorpiox-server-email.c | Verify authentication credentials |
1 |
FETCHTOKEN_API_KEY_REQUIRED=0 # If 1, reject old-protocol clients too |
scorpiox/scorpiox-server-fetchtoken.c | Set the appropriate API key in scorpiox-env.txt or environment |
1 |
JWT: authenticated user_id=<string> email=<string> |
scorpiox/scorpiox-server.c | Verify authentication credentials |
1 |
JWT: blocked unauthenticated access to protected route '<string>' |
scorpiox/scorpiox-server.c | Verify authentication credentials |
1 |
error: -p requires a password argument |
scorpiox/scorpiox-sshpass.c | Verify authentication credentials |
1 |
error: password required — use -p <password> or set SSHPASS env var |
scorpiox/scorpiox-sshpass.c | Verify authentication credentials |
1 |
error: VERTEX_API_KEY not set |
scorpiox/scorpiox-vertex-models.c | Set the appropriate API key in scorpiox-env.txt or environment |
1 |
keepalive: max pings (<number>) reached — stopping to avoid wasting tokens |
scorpiox/sx_cache_keepalive.c | Verify authentication credentials |
1 |
[auth] cannot open accounts file: <string> |
scorpiox/sxmail_auth.c | Verify authentication credentials |
1 |
[auth] failed login for user: <string> |
scorpiox/sxmail_auth.c | Verify authentication credentials |
1 |
[auth] loaded <number> users from <string> |
scorpiox/sxmail_auth.c | Verify authentication credentials |
1 |
[auth] malformed line (no colon): %.40s |
scorpiox/sxmail_auth.c | Verify authentication credentials |
1 |
[auth] max users (<number>) reached, ignoring rest |
scorpiox/sxmail_auth.c | Verify authentication credentials |
1 |
[auth] no accounts loaded (file missing or empty) |
scorpiox/sxmail_auth.c | Verify authentication credentials |
1 |
[auth] out of memory |
scorpiox/sxmail_auth.c | Free up system memory or reduce workload |
1 |
[auth] unknown user: <string> |
scorpiox/sxmail_auth.c | Verify authentication credentials |
1 |
[imap] login failed for <string> from <string> |
scorpiox/sxmail_imap.c | Verify authentication credentials |
1 |
[relay] AUTH PLAIN failed with <string>: <number> <string> |
scorpiox/sxmail_queue.c | Verify authentication credentials |
1 |
[relay] authenticated as <string> |
scorpiox/sxmail_queue.c | Verify authentication credentials |
1 |
[relay] credentials too long |
scorpiox/sxmail_queue.c | Verify authentication credentials |
1 |
[smtp] <string> authenticated as <string> |
scorpiox/sxmail_smtp.c | Verify authentication credentials |
1 |
[smtp] <string> sender rejected: <string> (auth_user=<string>, domain=<string>) |
scorpiox/sxmail_smtp.c | Verify authentication credentials |
1 |
[smtp] CONNECTION ip=<string> ehlo=<string> tls=<string> auth=<string> from=<string> to=<string> subject=\ |
scorpiox/sxmail_smtp.c | Verify network connectivity and server availability |
1 |
[smtp] auth failed for <string> from <string> |
scorpiox/sxmail_smtp.c | Verify authentication credentials |
1 |
[smtp] relay denied for <string> from <string> (not authenticated) |
scorpiox/sxmail_smtp.c | Check file/directory permissions |
1 |
[smtp] too many auth failures from <string>, disconnecting |
scorpiox/sxmail_smtp.c | Verify network connectivity and server availability |
| Code | Message | Source | Résolution |
|---|---|---|---|
1 |
HOME env not set |
scorpiox/libsxbridge/sx_bridge.c | Review configuration settings |
1 |
agent: CONTEXT_AUTO_COMPACT=<number> (from config) |
scorpiox/libsxnet/sx_agent.c | Review scorpiox-env.txt configuration |
1 |
agent: CONTEXT_CLEAR_THRESHOLD=<number> (from config) |
scorpiox/libsxnet/sx_agent.c | Review scorpiox-env.txt configuration |
1 |
agent: CONTEXT_WARN_THRESHOLD=<number>%% (from config) |
scorpiox/libsxnet/sx_agent.c | Review scorpiox-env.txt configuration |
1 |
mcp: MCP_FILE=<string> (from config) |
scorpiox/libsxnet/sx_mcp.c | Review scorpiox-env.txt configuration |
1 |
mcp: MCP_FILE=<string> (from env) |
scorpiox/libsxnet/sx_mcp.c | Review configuration settings |
1 |
state: reloading config |
scorpiox/libsxnet/sx_state.c | Review scorpiox-env.txt configuration |
1 |
Resolved branch from index.txt: <string> |
scorpiox/libsxutil/sx_config.c | Review configuration settings |
1 |
config: cannot open <string> for reading |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: cannot open <string> for writing |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: cannot write \xe2\x80\x94 exe_dir not set |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: cannot write global \xe2\x80\x94 exe_dir not set |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: cannot write user \xe2\x80\x94 HOME not set |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: embedded config loaded, count=<number> |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: exe_dir=\ |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: initialized with <number> entries (embedded) |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: initialized with <number> entries from <string> |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: invalid level <number> |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: loading <number> embedded entries (compiled-in) |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: path too long for <string>/<string> |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: using SX_EXE_DIR override: <string> |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: wrote <string>=<string> to <string> |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
config: wrote <string>=<string> to <string> (level=<number>) |
scorpiox/libsxutil/sx_config.c | Review scorpiox-env.txt configuration |
1 |
sx_pty_start: invalid arguments |
scorpiox/libsxutil/sx_pty.c | Review configuration settings |
1 |
systemprompt: strdup failed for TZ env |
scorpiox/libsxutil/sx_systemprompt.c | Review configuration settings |
1 |
systemprompt: strdup failed for TZ env (win) |
scorpiox/libsxutil/sx_systemprompt.c | Review configuration settings |
1 |
systemprompt: strdup failed for timezone config |
scorpiox/libsxutil/sx_systemprompt.c | Review scorpiox-env.txt configuration |
1 |
WslConfigureDistribution failed: 0x%08lx |
scorpiox/libsxutil/sx_wsl.c | Review scorpiox-env.txt configuration |
-1 |
Unknown option: <string> |
scorpiox/scorpiox-agent.c | Review configuration settings |
1 |
--- Setting up instance config --- |
scorpiox/scorpiox-agent.c | Review scorpiox-env.txt configuration |
1 |
=== Installing env vars from <string> === |
scorpiox/scorpiox-agent.c | Review configuration settings |
1 |
Installed <number> env var(s) |
scorpiox/scorpiox-agent.c | Review configuration settings |
1 |
[FAIL] copy global config -> <string> |
scorpiox/scorpiox-agent.c | Review scorpiox-env.txt configuration |
1 |
[OK] config written: <string> |
scorpiox/scorpiox-agent.c | Review scorpiox-env.txt configuration |
1 |
[OK] copied global config -> <string> |
scorpiox/scorpiox-agent.c | Review scorpiox-env.txt configuration |
1 |
[VAR] _putenv_s failed for <string> |
scorpiox/scorpiox-agent.c | Review configuration settings |
1 |
[VAR] setenv failed for <string> |
scorpiox/scorpiox-agent.c | Review configuration settings |
1 |
global config fallback: <string> (found) |
scorpiox/scorpiox-agent.c | Review scorpiox-env.txt configuration |
1 |
global config: <string> (<string>) |
scorpiox/scorpiox-agent.c | Review scorpiox-env.txt configuration |
1 |
global config: not found anywhere |
scorpiox/scorpiox-agent.c | Verify the resource exists and the path is correct |
1 |
error: unknown option '<string>' |
scorpiox/scorpiox-bmp2png.c | Review configuration settings |
1 |
error: invalid character in SSH config value |
scorpiox/scorpiox-claudecode-fetchtoken.c | Review scorpiox-env.txt configuration |
0 |
error: unknown option: <string> |
scorpiox/scorpiox-claudecode-models.c | Review configuration settings |
1 |
error: too many arguments |
scorpiox/scorpiox-claudecode-models.c | Review configuration settings |
1 |
error: unknown option '<string>' |
scorpiox/scorpiox-claudecode-refreshtoken.c | Review configuration settings |
1 |
error: invalid character in SSH config value |
scorpiox/scorpiox-codex-fetchtoken.c | Review scorpiox-env.txt configuration |
0 |
error: unknown option: <string> |
scorpiox/scorpiox-codex-models.c | Review configuration settings |
1 |
error: unknown option '<string>' |
scorpiox/scorpiox-codex-refreshtoken.c | Review configuration settings |
-2 |
error: unknown level '<string>' (use: default|global|user|project or 0-3) |
scorpiox/scorpiox-config.c | Review configuration settings |
1 |
--get KEY -d VAL Print value or VAL if not set |
scorpiox/scorpiox-config.c | Set the required key/variable in scorpiox-env.txt or environment |
1 |
Error: No configuration loaded |
scorpiox/scorpiox-config.c | Review scorpiox-env.txt configuration |
1 |
Error: out of memory |
scorpiox/scorpiox-config.c | Free up system memory or reduce workload |
1 |
Warning: IDBFS init failed (config won't persist) |
scorpiox/scorpiox-config.c | Review scorpiox-env.txt configuration |
2 |
error: --get requires KEY argument |
scorpiox/scorpiox-config.c | Review configuration settings |
-1 |
Unknown option: <string> |
scorpiox/scorpiox-docs.c | Review configuration settings |
1 |
⚠ Failed to install html2text (optional) |
scorpiox/scorpiox-docs.c | Review configuration settings |
-1 |
ERROR: SMTP_FROM not set. Configure in scorpiox-env.txt |
scorpiox/scorpiox-email.c | Review scorpiox-env.txt configuration |
1 |
Unknown option: <string> |
scorpiox/scorpiox-emit-session.c | Review configuration settings |
-1 |
Unknown option: <string> |
scorpiox/scorpiox-fetch.c | Review configuration settings |
1 |
error: unknown argument: <string> |
scorpiox/scorpiox-frp.c | Review configuration settings |
1 |
error: unexpected argument: <string> |
scorpiox/scorpiox-google-models.c | Review configuration settings |
1 |
error: unknown option: <string> |
scorpiox/scorpiox-google-models.c | Review configuration settings |
2 |
scorpiox-grep: unknown option '-%c' |
scorpiox/scorpiox-grep.c | Review configuration settings |
1 |
Usage: scorpiox-imessage history <handle> [--limit N] |
scorpiox/scorpiox-imessage.c | Check command usage with --help |
-1 |
Unknown argument: <string> |
scorpiox/scorpiox-init.c | Review configuration settings |
1 |
Error: invalid JSON arguments: <string> |
scorpiox/scorpiox-mcp-httpclient.c | Review configuration settings |
1 |
SCORPIOX_REGISTRY not configured |
scorpiox/scorpiox-podman.c | Review scorpiox-env.txt configuration |
1 |
Unknown option: <string> |
scorpiox/scorpiox-rewind.c | Review configuration settings |
1 |
error: unknown option '<string>' |
scorpiox/scorpiox-screenshot.c | Review configuration settings |
1 |
Unknown option: <string> |
scorpiox/scorpiox-sdk.c | Review configuration settings |
-1 |
Unknown option: <string> |
scorpiox/scorpiox-search.c | Review configuration settings |
1 |
DLL: no queue configured for external delivery |
scorpiox/scorpiox-server-email.c | Review scorpiox-env.txt configuration |
1 |
Unknown option: <string> |
scorpiox/scorpiox-server-email.c | Review configuration settings |
1 |
error: unknown option '<string>' |
scorpiox/scorpiox-server-fetchtoken.c | Review configuration settings |
1 |
Config override: <string>=<string> |
scorpiox/scorpiox-server.c | Review scorpiox-env.txt configuration |
1 |
Error: No script directories configured |
scorpiox/scorpiox-server.c | Review scorpiox-env.txt configuration |
1 |
IP whitelist: <number> entry(s) configured (non-matching IPs blocked) |
scorpiox/scorpiox-server.c | Review scorpiox-env.txt configuration |
1 |
JWT validation disabled (no SERVER_JWT_SECRET configured) |
scorpiox/scorpiox-server.c | Review scorpiox-env.txt configuration |
1 |
JWT: <number> custom claim mapping(s) configured |
scorpiox/scorpiox-server.c | Review scorpiox-env.txt configuration |
1 |
JWT: <number> protected route prefix(es) configured |
scorpiox/scorpiox-server.c | Review scorpiox-env.txt configuration |
0 |
Unknown option: <string> |
scorpiox/scorpiox-systemprompt.c | Review configuration settings |
1 |
Error: --env requires KEY=VALUE format |
scorpiox/scorpiox-tmux.c | Review configuration settings |
1 |
Unknown option: <string> |
scorpiox/scorpiox-tmux.c | Review configuration settings |
1 |
Unknown option: <string> |
scorpiox/scorpiox-unshare.c | Review configuration settings |
1 |
WARNING: /proc unavailable — config detection will use $PATH fallback |
scorpiox/scorpiox-unshare.c | Review scorpiox-env.txt configuration |
1 |
Unknown option: <string> |
scorpiox/scorpiox-usage.c | Review configuration settings |
1 |
usage: JSON payload too large |
scorpiox/scorpiox-usage.c | Check command usage with --help |
1 |
usage: POST OK (<number>): <string> |
scorpiox/scorpiox-usage.c | Check command usage with --help |
1 |
usage: POST failed: <string> |
scorpiox/scorpiox-usage.c | Check command usage with --help |
1 |
Error: unknown argument '<string>' |
scorpiox/scorpiox-vault-git.c | Review configuration settings |
0 |
error: unknown option: <string> |
scorpiox/scorpiox-vertex-models.c | Review configuration settings |
1 |
error: too many arguments |
scorpiox/scorpiox-vertex-models.c | Review configuration settings |
1 |
RIP=0x%llx RSP=0x%llx RFLAGS=0x%llx |
scorpiox/scorpiox-vm.c | Review configuration settings |
1 |
Unknown option: <string> |
scorpiox/scorpiox-vm.c | Review configuration settings |
1 |
Unknown option: <string> |
scorpiox/scorpiox-wsl.c | Review configuration settings |
1 |
Config reloaded after chdir to: <string> |
scorpiox/sx.c | Review scorpiox-env.txt configuration |
1 |
Unknown option: <string> |
scorpiox/sx.c | Review configuration settings |
1 |
config: launching scorpiox-config |
scorpiox/sx.c | Review scorpiox-env.txt configuration |
1 |
config: settings reloaded |
scorpiox/sx.c | Review scorpiox-env.txt configuration |
1 |
main: --- end config --- |
scorpiox/sx.c | Review scorpiox-env.txt configuration |
1 |
main: --- loaded config --- |
scorpiox/sx.c | Review scorpiox-env.txt configuration |
1 |
main: config_path=<string> |
scorpiox/sx.c | Review scorpiox-env.txt configuration |
1 |
[maildir] set_flags_folder rename failed: <string> |
scorpiox/sxmail_maildir.c | Review configuration settings |
| Code | Message | Source | Résolution |
|---|---|---|---|
1 |
Failed to create tmp directory |
scorpiox/libsxbridge/sx_bridge.c | Check file paths and permissions |
1 |
Failed to open SHA256 checksum file |
scorpiox/libsxbridge/sx_bridge.c | Check file paths and permissions |
1 |
Failed to read SHA256 checksum file |
scorpiox/libsxbridge/sx_bridge.c | Check file paths and permissions |
1 |
Invalid path: <string> |
scorpiox/libsxbridge/sx_bridge.c | Check file paths and permissions |
1 |
mkdir failed: <string>: <string> |
scorpiox/libsxbridge/sx_bridge.c | Check file paths and permissions |
1 |
agent: ReadImage validation failed for '<string>' |
scorpiox/libsxnet/sx_agent.c | Check file paths and permissions |
1 |
agent: no provider available (sx_state not initialized?) |
scorpiox/libsxnet/sx_agent.c | Check file paths and permissions |
1 |
agent: plan mode exited, plan_just_exited=true, plan_file=<string> |
scorpiox/libsxnet/sx_agent.c | Check file paths and permissions |
1 |
agent: using provider '<string>' from sx_state |
scorpiox/libsxnet/sx_agent.c | Check file paths and permissions |
1 |
mcp: cannot create temp file: <string> |
scorpiox/libsxnet/sx_mcp.c | Check file paths and permissions |
1 |
mcp: run 'scorpiox-mcp --mcp-file <string> discover --json' to debug |
scorpiox/libsxnet/sx_mcp.c | Check file paths and permissions |
1 |
mcp: sx_popen_no_window failed: <string> |
scorpiox/libsxnet/sx_mcp.c | Check file paths and permissions |
1 |
using no-op provider (static, no heap allocation) |
scorpiox/libsxnet/sx_provider.c | Free up system memory or reduce workload |
1 |
openai-proxy: <string> |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
1 |
openai: failed to allocate provider data |
scorpiox/libsxnet/sx_provider_openai.c | Free up system memory or reduce workload |
1 |
openai: failed to parse JSON: %.200s |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
1 |
openai: fork() failed: <string> |
scorpiox/libsxnet/sx_provider_openai.c | Check system resources (process limits) |
1 |
openai: init ok exe=<string> |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
1 |
openai: no output from scorpiox-openai |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
1 |
openai: pipe(err) failed: <string> |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
1 |
openai: pipe(in) failed: <string> |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
1 |
openai: pipe(out) failed: <string> |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
1 |
openai: proxy binary not found: <string> |
scorpiox/libsxnet/sx_provider_openai.c | Verify the resource exists and the path is correct |
1 |
openai: proxy exec failed (rc=<number> exit=<number>) |
scorpiox/libsxnet/sx_provider_openai.c | Verify the executable exists and is in PATH |
1 |
openai: response has no JSON: %.200s |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
1 |
openai: retry <number>/<number> in <number>ms... |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
1 |
openai: retryable API error: <string> |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
1 |
openai: skipped <number> bytes of non-JSON prefix |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
1 |
openai: write to pipe failed: <string> |
scorpiox/libsxnet/sx_provider_openai.c | Check file paths and permissions |
127 |
openai: exec failed: <string>: <string> |
scorpiox/libsxnet/sx_provider_openai.c | Verify the executable exists and is in PATH |
1 |
openai_wasm: history required <number> fixes |
scorpiox/libsxnet/sx_provider_openai_wasm.c | Check file paths and permissions |
1 |
openai_wasm: init ok |
scorpiox/libsxnet/sx_provider_openai_wasm.c | Check file paths and permissions |
1 |
state: already initialized |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
state: cannot reload - not initialized |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
state: even no-op provider failed |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
state: exe_dir resolved to: <string> |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
state: failed to create provider '<string>' |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
state: failed to create provider '<string>', reverting |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
state: initialized with provider '<string>' |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
state: provider '<string>' unavailable in WASM, using no-op provider |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
state: provider change detected: <string> -> <string> |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
state: reload complete - provider=<string> model=<string> tools=<number> |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
state: switched to provider '<string>' |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
state: switching provider: <string> -> <string> |
scorpiox/libsxnet/sx_state.c | Check file paths and permissions |
1 |
conv: failed to open for writing: <string> |
scorpiox/libsxutil/sx_conversation.c | Check file paths and permissions |
1 |
conv: failed to open mirror path for writing: <string> |
scorpiox/libsxutil/sx_conversation.c | Check file paths and permissions |
1 |
conv: failed to write mirror copy to <string> |
scorpiox/libsxutil/sx_conversation.c | Check file paths and permissions |
1 |
conv: file not found <string> |
scorpiox/libsxutil/sx_conversation.c | Verify the resource exists and the path is correct |
1 |
sx_exec: sx_popen_no_window() failed: <string> |
scorpiox/libsxutil/sx_exec.c | Verify the executable exists and is in PATH |
1 |
sx_exec_stream_open: sx_popen_no_window() failed: <string> |
scorpiox/libsxutil/sx_exec.c | Verify the executable exists and is in PATH |
1 |
wasm_fs: IDBFS ready (auto-save enabled) |
scorpiox/libsxutil/sx_fs_wasm.c | Check file paths and permissions |
1 |
yy_write failed: code=<number> msg=<string> |
scorpiox/libsxutil/sx_json_yy.c | Check file paths and permissions |
1 |
procmon: HIGH active popens: <number> (possible popen leak!) |
scorpiox/libsxutil/sx_procmon.c | Check file paths and permissions |
1 |
procmon: HIGH open FDs: <number> (possible FD leak!) |
scorpiox/libsxutil/sx_procmon.c | Check file paths and permissions |
1 |
procmon: LEAK? <number> open FDs (expected < 100) |
scorpiox/libsxutil/sx_procmon.c | Check file paths and permissions |
1 |
procmon: LEAK? <number> unclosed popen handles |
scorpiox/libsxutil/sx_procmon.c | Check file paths and permissions |
1 |
procmon: forks=<number>/<number> (active=<number> peak=<number>) popens=<number>/<number> (active=<number>) |
scorpiox/libsxutil/sx_procmon.c | Check system resources (process limits) |
1 |
InitializeProcThreadAttributeList failed: <number> |
scorpiox/libsxutil/sx_pty.c | Check file paths and permissions |
1 |
UpdateProcThreadAttribute failed: <number> |
scorpiox/libsxutil/sx_pty.c | Check file paths and permissions |
1 |
fire_hooks_sync: event=<string> raw_status=<number> rc=<number> output=<number> bytes |
scorpiox/libsxutil/sx_session.c | Check file paths and permissions |
1 |
fire_hooks_sync: popen failed, falling back to system() |
scorpiox/libsxutil/sx_session.c | Check file paths and permissions |
1 |
slashcmd: failed to create temp file for built-in command '<string>': <string> |
scorpiox/libsxutil/sx_slashcmd.c | Check file paths and permissions |
1 |
slashcmd: failed to write built-in command '<string>' to <string> |
scorpiox/libsxutil/sx_slashcmd.c | Check file paths and permissions |
1 |
trace: failed to open <string> |
scorpiox/libsxutil/sx_trace.c | Check file paths and permissions |
1 |
Distribution '<string>' already registered |
scorpiox/libsxutil/sx_wsl.c | Check file paths and permissions |
1 |
(cannot open agent dir) |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
(cannot open output dir) |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
--- Copying agent files from <string> --- |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
=== Task instance ready: <string> === |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Agent directory not found: <string> |
scorpiox/scorpiox-agent.c | Verify the resource exists and the path is correct |
1 |
BUILD CACHE HIT — commit %.12s already built |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Cannot open .hooks file: <string> |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Cannot open .skills file: <string> |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Cannot open .templates file: <string> |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Cannot open .vars file: <string> |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Cannot open agents directory: <string> |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Command failed (raw wait status=0x%x) |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
FAILED: mkdir instance dir: <string> |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Generator CACHE HIT — commit %.12s already built |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Generator commit file exists but binary missing, rebuilding |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
No .csproj files reference scorpiox.agent.dotnet — nothing to swap |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
No .sln file found in <string> |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Restored original .csproj files |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
SOURCE CACHE HIT — already at %.12s |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Swapped <number> .csproj file(s) to use ProjectReference |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Unsafe template path, skipping: <string> |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
Working directory does not exist: <string> |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
[FAIL] fopen(<string>): <string> |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
[OK] MCP=1, MCP_FILE=<string> (points to agent source) |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
[VAR] <string> already set, skipping |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
[VERIFY] <string> MISSING after write! |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
mkdir OK: <string> |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
1 |
| ... (truncated) |
scorpiox/scorpiox-agent.c | Check file paths and permissions |
0 |
⛔ Denied: '<string>' matches PERMISSIONS_BASH_DENY |
scorpiox/scorpiox-askuserpermission.c | Check file/directory permissions |
1 |
Error: cannot open input file: <string> |
scorpiox/scorpiox-askuserpermission.c | Check file paths and permissions |
1 |
Error: Cannot open input file: <string> |
scorpiox/scorpiox-askuserquestion.c | Check file paths and permissions |
1 |
Error: Cannot write to output file: <string> |
scorpiox/scorpiox-askuserquestion.c | Check file paths and permissions |
1 |
Error: Invalid input file size |
scorpiox/scorpiox-askuserquestion.c | Check file paths and permissions |
1 |
beam: file may be corrupt: '<string>' |
scorpiox/scorpiox-beam.c | Check file paths and permissions |
1 |
beam: ✗ checksum MISMATCH — file may be corrupt! |
scorpiox/scorpiox-beam.c | Check file paths and permissions |
1 |
error: '<string>' is not a regular file |
scorpiox/scorpiox-beam.c | Check file paths and permissions |
1 |
error: cannot open '<string>': <string> |
scorpiox/scorpiox-beam.c | Check file paths and permissions |
1 |
error: empty filename after sanitization |
scorpiox/scorpiox-beam.c | Check file paths and permissions |
1 |
error: failed to receive file size |
scorpiox/scorpiox-beam.c | Check file paths and permissions |
1 |
error: failed to receive filename |
scorpiox/scorpiox-beam.c | Check file paths and permissions |
1 |
error: invalid filename |
scorpiox/scorpiox-beam.c | Check file paths and permissions |
1 |
error: invalid filename length <number> |
scorpiox/scorpiox-beam.c | Check file paths and permissions |
1 |
error: read failed at offset <number>: <string> |
scorpiox/scorpiox-beam.c | Check file paths and permissions |
1 |
error: write failed (disk full?): <string> |
scorpiox/scorpiox-beam.c | Check file paths and permissions |
1 |
error: cannot write '<string>' |
scorpiox/scorpiox-bmp2png.c | Check file paths and permissions |
1 |
error: no input file specified |
scorpiox/scorpiox-bmp2png.c | Check file paths and permissions |
1 |
error: cannot create directory '<string>' |
scorpiox/scorpiox-busybox.c | Check file paths and permissions |
1 |
error: cannot determine home directory |
scorpiox/scorpiox-claudecode-fetchtoken.c | Check file paths and permissions |
1 |
error: cannot open <string> |
scorpiox/scorpiox-claudecode-fetchtoken.c | Check file paths and permissions |
-1 |
error: cannot determine home directory |
scorpiox/scorpiox-claudecode-refreshtoken.c | Check file paths and permissions |
1 |
error: cannot read <string> |
scorpiox/scorpiox-claudecode-refreshtoken.c | Check file paths and permissions |
1 |
error: cannot determine home directory |
scorpiox/scorpiox-codex-fetchtoken.c | Check file paths and permissions |
1 |
error: cannot open <string>: <string> |
scorpiox/scorpiox-codex-fetchtoken.c | Check file paths and permissions |
1 |
error: invalid file size (<number> bytes) |
scorpiox/scorpiox-codex-fetchtoken.c | Check file paths and permissions |
-1 |
error: cannot determine home directory |
scorpiox/scorpiox-codex-refreshtoken.c | Check file paths and permissions |
1 |
error: cannot read <string> |
scorpiox/scorpiox-codex-refreshtoken.c | Check file paths and permissions |
1 |
Error: cannot get current directory |
scorpiox/scorpiox-conv.c | Check file paths and permissions |
-1 |
<string>error:<string> failed to open crontab for writing: <string> |
scorpiox/scorpiox-cron.c | Check file paths and permissions |
1 |
<string>error:<string> crontab write failed (exit <number>) |
scorpiox/scorpiox-cron.c | Check file paths and permissions |
1 |
<string>warn:<string> scorpiox-tmux not found in PATH, |
scorpiox/scorpiox-cron.c | Verify the resource exists and the path is correct |
-1 |
error: cannot open domain list: <string> (<string>) |
scorpiox/scorpiox-dns.c | Check file paths and permissions |
1 |
active-cache: cannot write <string>: <string> |
scorpiox/scorpiox-dns.c | Check file paths and permissions |
1 |
audit: ERROR — cannot write to <string>: <string> |
scorpiox/scorpiox-dns.c | Check file paths and permissions |
1 |
audit: cannot open <string>: <string> |
scorpiox/scorpiox-dns.c | Check file paths and permissions |
1 |
audit: cannot write to <string>: <string> |
scorpiox/scorpiox-dns.c | Check file paths and permissions |
1 |
audit: write failed: <string> |
scorpiox/scorpiox-dns.c | Check file paths and permissions |
1 |
cannot write zone file: <string> (<string>) |
scorpiox/scorpiox-dns.c | Check file paths and permissions |
1 |
no zone file loaded; only upstream forwarding active |
scorpiox/scorpiox-dns.c | Check file paths and permissions |
1 |
precache: cannot write <string>: <string> |
scorpiox/scorpiox-dns.c | Check file paths and permissions |
1 |
Error: both target file and replacements file required |
scorpiox/scorpiox-editfile.c | Check file paths and permissions |
1 |
Error: cannot read replacements file '<string>': <string> |
scorpiox/scorpiox-editfile.c | Check file paths and permissions |
1 |
Error: cannot read target file '<string>': <string> |
scorpiox/scorpiox-editfile.c | Check file paths and permissions |
1 |
Error: cannot write file '<string>': <string> |
scorpiox/scorpiox-editfile.c | Check file paths and permissions |
1 |
Error: failed to parse replacements file |
scorpiox/scorpiox-editfile.c | Check file paths and permissions |
1 |
Error: out of memory splitting target file |
scorpiox/scorpiox-editfile.c | Free up system memory or reduce workload |
1 |
Error: start line <number> exceeds file length (<number> lines) |
scorpiox/scorpiox-editfile.c | Check file paths and permissions |
1 |
ERROR: cannot read <string> |
scorpiox/scorpiox-email.c | Check file paths and permissions |
1 |
emit-session: cannot read file '<string>', sending without text |
scorpiox/scorpiox-emit-session.c | Check file paths and permissions |
-1 |
Cannot resolve path: <string>: <string> |
scorpiox/scorpiox-executecurl.c | Check file paths and permissions |
-1 |
Error: failed to create temp directory |
scorpiox/scorpiox-executecurl.c | Check file paths and permissions |
0 |
Cannot open <string>: <string> |
scorpiox/scorpiox-executecurl.c | Check file paths and permissions |
1 |
Error: Cannot open output file: <string> |
scorpiox/scorpiox-fetch.c | Check file paths and permissions |
1 |
Error: cannot read <string>: <string> |
scorpiox/scorpiox-hook.c | Check file paths and permissions |
1 |
Error: cannot write <string>: <string> |
scorpiox/scorpiox-hook.c | Check file paths and permissions |
1 |
Error: event name and script path required |
scorpiox/scorpiox-hook.c | Check file paths and permissions |
1 |
Error: file not found: <string> |
scorpiox/scorpiox-hook.c | Verify the resource exists and the path is correct |
1 |
Error: no hooks directory for event '<string>' |
scorpiox/scorpiox-hook.c | Check file paths and permissions |
1 |
Error: script path required |
scorpiox/scorpiox-hook.c | Check file paths and permissions |
1 |
Error: write failed |
scorpiox/scorpiox-hook.c | Check file paths and permissions |
1 |
Error: no scan directory specified |
scorpiox/scorpiox-init.c | Check file paths and permissions |
1 |
INIT_TOOLS verify: <string> NOT FOUND in PATH |
scorpiox/scorpiox-init.c | Verify the resource exists and the path is correct |
1 |
cannot open <string>: <string> |
scorpiox/scorpiox-init.c | Check file paths and permissions |
1 |
failed to create log directory |
scorpiox/scorpiox-logger.c | Check file paths and permissions |
1 |
failed to create log file |
scorpiox/scorpiox-logger.c | Check file paths and permissions |
1 |
scorpiox-openai: INVALID JSON at pos <number>: <string> |
scorpiox/scorpiox-openai.c | Check file paths and permissions |
-1 |
Error: Cannot write to <string> |
scorpiox/scorpiox-planmode.c | Check file paths and permissions |
-1 |
Warning: Cannot write to session: <string> |
scorpiox/scorpiox-planmode.c | Check file paths and permissions |
1 |
Error: Already in plan mode |
scorpiox/scorpiox-planmode.c | Check file paths and permissions |
1 |
Error: Plan file not found: <string> |
scorpiox/scorpiox-planmode.c | Verify the resource exists and the path is correct |
1 |
Warning: Plan file should be markdown (.md) |
scorpiox/scorpiox-planmode.c | Check file paths and permissions |
1 |
Directory does not exist: <string> |
scorpiox/scorpiox-podman.c | Check file paths and permissions |
1 |
Failed to get current directory |
scorpiox/scorpiox-podman.c | Check file paths and permissions |
-1 |
Error: Cannot create destination directory |
scorpiox/scorpiox-printlogs.c | Check file paths and permissions |
-1 |
Error: Cannot open source: <string> |
scorpiox/scorpiox-printlogs.c | Check file paths and permissions |
1 |
Error: cannot read file '<string>': <string> |
scorpiox/scorpiox-readfile.c | Check file paths and permissions |
1 |
Error: file has only <number> lines, requested start at line <number> |
scorpiox/scorpiox-readfile.c | Check file paths and permissions |
1 |
Error: cannot create temp file: <string> |
scorpiox/scorpiox-rewind.c | Check file paths and permissions |
1 |
Error: cannot open <string> for writing |
scorpiox/scorpiox-rewind.c | Check file paths and permissions |
1 |
Error: cannot open temp file for writing |
scorpiox/scorpiox-rewind.c | Check file paths and permissions |
1 |
Error: cannot read stdin |
scorpiox/scorpiox-rewind.c | Check file paths and permissions |
1 |
Error: cannot write <string> |
scorpiox/scorpiox-rewind.c | Check file paths and permissions |
0 |
Cannot open <string>: <string> |
scorpiox/scorpiox-runtest.c | Check file paths and permissions |
-1 |
error: cannot open '<string>' for writing |
scorpiox/scorpiox-screenshot.c | Check file paths and permissions |
-1 |
error: cannot open X11 display |
scorpiox/scorpiox-screenshot.c | Check file paths and permissions |
-1 |
error: cannot open X11 display (is $DISPLAY set?) |
scorpiox/scorpiox-screenshot.c | Check file paths and permissions |
-1 |
error: failed to write BMP header |
scorpiox/scorpiox-screenshot.c | Check file paths and permissions |
-1 |
error: failed to write pixel data |
scorpiox/scorpiox-screenshot.c | Check file paths and permissions |
1 |
Error: Cannot change to directory '<string>': <string> |
scorpiox/scorpiox-sdk.c | Check file paths and permissions |
1 |
DLL: email server already running |
scorpiox/scorpiox-server-email.c | Check file paths and permissions |
1 |
DLL: email server thread exiting |
scorpiox/scorpiox-server-email.c | Check file paths and permissions |
1 |
DLL: email server thread started |
scorpiox/scorpiox-server-email.c | Check file paths and permissions |
1 |
DLL: failed to create server thread |
scorpiox/scorpiox-server-email.c | Check file paths and permissions |
1 |
DLL: CreateThread failed |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
DLL: accept thread exiting |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
DLL: pthread_create failed: <string> |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
DLL: server already running |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
Failed to write POST body to <string>: <string> |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
Favicon: cannot open file '<string>': <string> |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
Favicon: file too large or empty (<number> bytes, max 1MB) |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
JWT: failed to read secret file '<string>': <string> |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
JWT: loaded secret from file '<string>' (<number> bytes) |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
Path traversal attempt blocked in name: <string> |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
Path traversal blocked: <string> escapes <string> |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
Script directory not accessible: <string> |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
Streaming: client read failed (remaining=% |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
Streaming: read child stdout failed: <string> |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
Streaming: write to child stdin failed: <string> |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
[deploy] failed to create poll thread |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
[deploy] failed to create poll thread: <string> |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
[deploy] poll thread exiting |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
[deploy] poll thread started (interval: <number>s, branch: <string>) |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
_beginthreadex failed |
scorpiox/scorpiox-server.c | Check file paths and permissions |
1 |
Error: cannot write to <string> |
scorpiox/scorpiox-skills.c | Check file paths and permissions |
-1 |
Error: Cannot write to <string> |
scorpiox/scorpiox-tasks.c | Check file paths and permissions |
-1 |
error: cannot open /dev/bpf* (are you root?) |
scorpiox/scorpiox-thunderbolt4.c | Check file paths and permissions |
1 |
error: cannot stat '<string>': <string> |
scorpiox/scorpiox-thunderbolt4.c | Check file paths and permissions |
1 |
error: open: <string> |
scorpiox/scorpiox-thunderbolt4.c | Check file paths and permissions |
1 |
error: read: <string> |
scorpiox/scorpiox-thunderbolt4.c | Check file paths and permissions |
1 |
error: write: <string> |
scorpiox/scorpiox-thunderbolt4.c | Check file paths and permissions |
1 |
Error: session '<string>' already exists |
scorpiox/scorpiox-tmux.c | Check file paths and permissions |
1 |
error: project directory not found for '<string>' |
scorpiox/scorpiox-tmux.c | Verify the resource exists and the path is correct |
1 |
project '<string>' not found in any TMUX_REMOTE_BASE path, using '<string>' |
scorpiox/scorpiox-tmux.c | Verify the resource exists and the path is correct |
1 |
session '<string>' falling back to main directory |
scorpiox/scorpiox-tmux.c | Check file paths and permissions |
1 |
Failed to open log file: <string> |
scorpiox/scorpiox-traffic.c | Check file paths and permissions |
1 |
Cannot access cache directory |
scorpiox/scorpiox-unshare.c | Check file paths and permissions |
1 |
Cannot access rootfs directory |
scorpiox/scorpiox-unshare.c | Check file paths and permissions |
1 |
Cannot create work directory |
scorpiox/scorpiox-unshare.c | Check file paths and permissions |
1 |
Cannot read <string> |
scorpiox/scorpiox-unshare.c | Check file paths and permissions |
1 |
Cannot read manifest: <string> |
scorpiox/scorpiox-unshare.c | Check file paths and permissions |
1 |
Downloaded file too small (invalid image?) |
scorpiox/scorpiox-unshare.c | Check file paths and permissions |
1 |
Error: Cannot create temp file |
scorpiox/scorpiox-unshare.c | Check file paths and permissions |
1 |
Error: Cannot read index |
scorpiox/scorpiox-unshare.c | Check file paths and permissions |
1 |
Failed to write <string>: <string> |
scorpiox/scorpiox-unshare.c | Check file paths and permissions |
1 |
Failed to write gid_map: <string> |
scorpiox/scorpiox-unshare.c | Check file paths and permissions |
1 |
Failed to write uid_map: <string> |
scorpiox/scorpiox-unshare.c | Check file paths and permissions |
1 |
File not found: <string> |
scorpiox/scorpiox-unshare.c | Verify the resource exists and the path is correct |
1 |
Error: mkdir <string> failed |
scorpiox/scorpiox-vault-git.c | Check file paths and permissions |
1 |
Cannot open /dev/kvm: <string> |
scorpiox/scorpiox-vm.c | Check file paths and permissions |
1 |
Cannot open /dev/net/tun: <string> |
scorpiox/scorpiox-vm.c | Check file paths and permissions |
1 |
Cannot open disk: <string>: <string> |
scorpiox/scorpiox-vm.c | Check file paths and permissions |
1 |
Cannot read BIOS: <string> |
scorpiox/scorpiox-vm.c | Check file paths and permissions |
1 |
Cannot read kernel: <string> |
scorpiox/scorpiox-vm.c | Check file paths and permissions |
1 |
Cannot read tar: <string> |
scorpiox/scorpiox-vm.c | Check file paths and permissions |
1 |
Failed to open TAP device |
scorpiox/scorpiox-vm.c | Check file paths and permissions |
1 |
Error: cannot create temp directory: <string> |
scorpiox/scorpiox-voice.c | Check file paths and permissions |
1 |
Error: Cannot open output file: <string> |
scorpiox/scorpiox-websearch.c | Check file paths and permissions |
1 |
Error: media file not found: <string> |
scorpiox/scorpiox-whatsapp.c | Verify the resource exists and the path is correct |
-1 |
Error: Cannot access cache directory |
scorpiox/scorpiox-wsl.c | Check file paths and permissions |
-1 |
failed (invalid file) |
scorpiox/scorpiox-wsl.c | Check file paths and permissions |
1 |
Cannot access WSL directory |
scorpiox/scorpiox-wsl.c | Check file paths and permissions |
1 |
Cannot access cache directory |
scorpiox/scorpiox-wsl.c | Check file paths and permissions |
1 |
Cannot open tar file: <string> |
scorpiox/scorpiox-wsl.c | Check file paths and permissions |
1 |
Tar file too small (%lld bytes) - likely corrupt or failed download |
scorpiox/scorpiox-wsl.c | Check file paths and permissions |
1 |
Error: Cannot change to directory '<string>': <string> |
scorpiox/sx.c | Check file paths and permissions |
1 |
Error: Unknown provider '<string>' (use: scorpiox, claude_code, gemini, openai, anthropic) |
scorpiox/sx.c | Check file paths and permissions |
1 |
Failed to initialize state |
scorpiox/sx.c | Check file paths and permissions |
1 |
Warning: Cannot open /dev/tty for interactive input |
scorpiox/sx.c | Check file paths and permissions |
1 |
editor: EDITOR path contains unsafe characters: %.100s |
scorpiox/sx.c | Check file paths and permissions |
1 |
emit-session: cannot create temp file: <string> |
scorpiox/sx.c | Check file paths and permissions |
1 |
emit-session: cannot write temp file '<string>' |
scorpiox/sx.c | Check file paths and permissions |
1 |
main: agent thread completed |
scorpiox/sx.c | Check file paths and permissions |
1 |
main: agent thread started, msg='%.80s' |
scorpiox/sx.c | Check file paths and permissions |
1 |
main: callback failed to start agent thread |
scorpiox/sx.c | Check file paths and permissions |
1 |
main: calloc AgentThread failed! |
scorpiox/sx.c | Free up system memory or reduce workload |
1 |
main: keepalive failed to start agent thread |
scorpiox/sx.c | Check file paths and permissions |
1 |
main: log_level=<string> log_file=<string> |
scorpiox/sx.c | Check file paths and permissions |
1 |
main: static copy, msg='%.80s' len=<number> |
scorpiox/sx.c | Check file paths and permissions |
1 |
permissions: added session allow prefix '<string>' |
scorpiox/sx.c | Check file/directory permissions |
1 |
permissions: executing approved command: %.100s |
scorpiox/sx.c | Check file/directory permissions |
1 |
voice: cannot create temp file: <string> |
scorpiox/sx.c | Check file paths and permissions |
1 |
keepalive: already disabled |
scorpiox/sx_cache_keepalive.c | Check file paths and permissions |
1 |
keepalive: already enabled (state=<number>) |
scorpiox/sx_cache_keepalive.c | Check file paths and permissions |
1 |
keepalive: failed to create thread |
scorpiox/sx_cache_keepalive.c | Check file paths and permissions |
1 |
keepalive: thread exiting (pings=<number>, hits=<number>, misses=<number>) |
scorpiox/sx_cache_keepalive.c | Check file paths and permissions |
1 |
keepalive: thread started (trigger=<number>s, max_tries=<number>) |
scorpiox/sx_cache_keepalive.c | Check file paths and permissions |
1 |
sx_dll: cannot read image file: <string> |
scorpiox/sx_dll.c | Check file paths and permissions |
1 |
sx_dll: failed to create worker thread |
scorpiox/sx_dll.c | Check file paths and permissions |
1 |
sx_dll: failed to initialize state |
scorpiox/sx_dll.c | Check file paths and permissions |
1 |
sx_dll: state initialized, exe_dir=<string> |
scorpiox/sx_dll.c | Check file paths and permissions |
1 |
sx_dll: status thread exiting |
scorpiox/sx_dll.c | Check file paths and permissions |
1 |
sx_dll: status thread metrics initialized |
scorpiox/sx_dll.c | Check file paths and permissions |
1 |
sx_dll: status thread started |
scorpiox/sx_dll.c | Check file paths and permissions |
1 |
sx_dll: sx_send_image called: msg=%.80s path=<string> |
scorpiox/sx_dll.c | Check file paths and permissions |
1 |
sx_dll: worker thread exiting |
scorpiox/sx_dll.c | Check file paths and permissions |
1 |
sx_dll: worker thread received shutdown signal |
scorpiox/sx_dll.c | Check file paths and permissions |
1 |
sx_dll: worker thread started |
scorpiox/sx_dll.c | Check file paths and permissions |
1 |
sx_wasm: failed to initialize state |
scorpiox/sx_dll_wasm.c | Check file paths and permissions |
1 |
term: using static cell bufs (<number> cells) |
scorpiox/sx_term.c | Check file paths and permissions |
1 |
term: using static output buf (<number> bytes) |
scorpiox/sx_term.c | Check file paths and permissions |
1 |
[alias] cannot open aliases file: <string> |
scorpiox/sxmail_alias.c | Check file paths and permissions |
1 |
[maildir] cannot create tmp file: <string> (<string>) |
scorpiox/sxmail_maildir.c | Check file paths and permissions |
1 |
[maildir] failed to create temp file: <string> |
scorpiox/sxmail_maildir.c | Check file paths and permissions |
1 |
[maildir] invalid file size: <number> |
scorpiox/sxmail_maildir.c | Check file paths and permissions |
1 |
[maildir] rejected username with path traversal: <string> |
scorpiox/sxmail_maildir.c | Check file paths and permissions |
1 |
[maildir] rename <string> → <string> failed: <string> |
scorpiox/sxmail_maildir.c | Check file paths and permissions |
1 |
[maildir] rename failed: <string> → <string> (<string>) |
scorpiox/sxmail_maildir.c | Check file paths and permissions |
1 |
[maildir] renamed <string> → <string> for <string> |
scorpiox/sxmail_maildir.c | Check file paths and permissions |
1 |
[maildir] short write: <number>/<number> |
scorpiox/sxmail_maildir.c | Check file paths and permissions |
1 |
[queue] bad queue file: <string> |
scorpiox/sxmail_queue.c | Check file paths and permissions |
1 |
[queue] cannot read data from: <string> |
scorpiox/sxmail_queue.c | Check file paths and permissions |
1 |
[queue] failed to write queue file: <string> |
scorpiox/sxmail_queue.c | Check file paths and permissions |
-1 |
Invalid PID file for session: <string> |
scorpiox/sxmux_session.c | Check file paths and permissions |
| Code | Message | Source | Résolution |
|---|---|---|---|
1 |
error: -d requires HOST:PORT |
bridge/ws2tcp.c | Check network connectivity and server availability |
1 |
Bridge execution not yet supported on Windows |
scorpiox/libsxbridge/sx_bridge.c | Check network connectivity and server availability |
1 |
Download URL: <string>/<string> |
scorpiox/libsxbridge/sx_bridge.c | Check network connectivity and server availability |
1 |
wasm_tools: ReadDocs url=<string> format=<string> |
scorpiox/libsxnet/sx_agent_tools_wasm.c | Check network connectivity and server availability |
1 |
HTTP <number> (retryable), retry <number>/<number> in <number>ms... |
scorpiox/libsxnet/sx_claude.c | Check network connectivity and server availability |
1 |
claude: HTTP error <number> after <number> attempts |
scorpiox/libsxnet/sx_claude.c | Check network connectivity and server availability |
1 |
claude: HTTP error: <string> |
scorpiox/libsxnet/sx_claude.c | Check network connectivity and server availability |
1 |
claude: ROUTER_URL not configured (set in scorpiox-env.txt) |
scorpiox/libsxnet/sx_claude.c | Review scorpiox-env.txt configuration |
1 |
[frp] TLS handshake failed: <string> |
scorpiox/libsxnet/sx_frp.c | Check network connectivity and server availability |
1 |
[frp] TLS: warning: no system CA bundle found |
scorpiox/libsxnet/sx_frp.c | Check network connectivity and server availability |
1 |
[frp] connect failed: <string> |
scorpiox/libsxnet/sx_frp.c | Verify network connectivity and server availability |
1 |
[frp] crypto init failed: <string> |
scorpiox/libsxnet/sx_frp.c | Check network connectivity and server availability |
1 |
[frp] disconnected: <string> |
scorpiox/libsxnet/sx_frp.c | Verify network connectivity and server availability |
1 |
[frp] failed to read StartWorkConn (slot <number>, type=0x<hex> rc=<number>) |
scorpiox/libsxnet/sx_frp.c | Check network connectivity and server availability |
1 |
[frp] local closed (slot <number>) |
scorpiox/libsxnet/sx_frp.c | Check network connectivity and server availability |
1 |
[frp] proxy registration failed: <string> |
scorpiox/libsxnet/sx_frp.c | Check network connectivity and server availability |
1 |
[frp] remote read failed (slot <number>) |
scorpiox/libsxnet/sx_frp.c | Check network connectivity and server availability |
1 |
[frp] remote send failed (slot <number>) |
scorpiox/libsxnet/sx_frp.c | Check network connectivity and server availability |
1 |
[frp] work conn rejected: <string> |
scorpiox/libsxnet/sx_frp.c | Check network connectivity and server availability |
1 |
[frp] work conn: local connect <string>:<number> failed |
scorpiox/libsxnet/sx_frp.c | Verify network connectivity and server availability |
1 |
[frp] work connection failed: <string> |
scorpiox/libsxnet/sx_frp.c | Verify network connectivity and server availability |
1 |
[frp] yamux handshake failed |
scorpiox/libsxnet/sx_frp.c | Check network connectivity and server availability |
1 |
[frp] ← unknown msg type: 0x<hex> (<number> bytes) |
scorpiox/libsxnet/sx_frp.c | Check network connectivity and server availability |
1 |
[host-poll] message queue full, dropping message |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host-poll] message received: '%.80s<string>' |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host-poll] received <number> message(s) from host |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host-poll] thread started, url=<string> id=<string> interval=<number>ms |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host-poll] thread stopped (polls=<number> messages=<number> errors=<number>) |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host] failed to create pull thread: <string> |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host] init: url=<string> id=<string> enabled=<number> |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host] message injected into main loop: '%.80s<string>' |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host] pull thread started |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host] pull thread stopped |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host] registering with host: <string> (session=<string>) |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host] registration failed (rc=<number>, http=<number>) |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host] registration success: <string> |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
[host] stopping pull thread... |
scorpiox/libsxnet/sx_host.c | Check network connectivity and server availability |
1 |
sx_http: curl error: <string> |
scorpiox/libsxnet/sx_http.c | Check network connectivity and server availability |
1 |
http_relay: body too large: <number> bytes |
scorpiox/libsxnet/sx_http_relay.c | Check network connectivity and server availability |
1 |
http_relay: connect(<string>:<string>) failed |
scorpiox/libsxnet/sx_http_relay.c | Verify network connectivity and server availability |
1 |
http_relay: enabled -> <string>:<string> |
scorpiox/libsxnet/sx_http_relay.c | Check network connectivity and server availability |
1 |
http_relay: error string too large: <number> bytes |
scorpiox/libsxnet/sx_http_relay.c | Check network connectivity and server availability |
1 |
http_relay: getaddrinfo(<string>:<string>) failed |
scorpiox/libsxnet/sx_http_relay.c | Check network connectivity and server availability |
1 |
sx_http: fetch error: <string> |
scorpiox/libsxnet/sx_http_wasm.c | Check network connectivity and server availability |
1 |
sx_http_sse: fetch error: <string> |
scorpiox/libsxnet/sx_http_wasm.c | Check network connectivity and server availability |
1 |
anthropic: ANTHROPIC_ANTIGRAVITY_URL not configured |
scorpiox/libsxnet/sx_provider_anthropic.c | Review scorpiox-env.txt configuration |
1 |
anthropic: HTTP <number>, retry <number>/<number> in <number>ms... |
scorpiox/libsxnet/sx_provider_anthropic.c | Check network connectivity and server availability |
1 |
anthropic_wasm: HTTP <number>, retry <number>/<number> in <number>ms... |
scorpiox/libsxnet/sx_provider_anthropic.c | Check network connectivity and server availability |
1 |
anthropic_wasm: HTTP error: <string> |
scorpiox/libsxnet/sx_provider_anthropic.c | Check network connectivity and server availability |
1 |
anthropic_wasm: load_env key=<string> url=<string> model=<string> streaming=<number> thinking=<number> tools=<number> |
scorpiox/libsxnet/sx_provider_anthropic.c | Check network connectivity and server availability |
1 |
HTTP <number> (retryable), retry <number>/<number> in <number>ms... |
scorpiox/libsxnet/sx_provider_claude_code.c | Check network connectivity and server availability |
1 |
claude_code: proxy connection failed, falling back to direct API: <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify network connectivity and server availability |
1 |
claude_code: proxy failed (HTTP <number>), falling back to direct API: <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Check network connectivity and server availability |
1 |
claude_code: restoring proxy URL for next request: <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Check network connectivity and server availability |
1 |
curl: cancel requested via progress callback |
scorpiox/libsxnet/sx_provider_claude_code.c | Check network connectivity and server availability |
1 |
claude_code_wasm: CLAUDE_CODE_REMOTE_URL not configured |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Review scorpiox-env.txt configuration |
1 |
claude_code_wasm: HTTP <number>, retry <number>/<number> in <number>ms... |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Check network connectivity and server availability |
1 |
claude_code_wasm: HTTP error: <string> |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Check network connectivity and server availability |
1 |
claude_code_wasm: load_env remote_url=<string> model=<string> thinking=<number>/<number> tools=<number> |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Check network connectivity and server availability |
1 |
codex: HTTP <number>, retrying in <number> ms (attempt <number>/<number>) |
scorpiox/libsxnet/sx_provider_codex.c | Check network connectivity and server availability |
1 |
codex: HTTP error: <string> |
scorpiox/libsxnet/sx_provider_codex.c | Check network connectivity and server availability |
1 |
google_claude: TCP fetch failed: <string> |
scorpiox/libsxnet/sx_provider_google_claude.c | Check network connectivity and server availability |
1 |
google_claude: TCP not configured |
scorpiox/libsxnet/sx_provider_google_claude.c | Review scorpiox-env.txt configuration |
1 |
google_claude: invalid TCP response |
scorpiox/libsxnet/sx_provider_google_claude.c | Check network connectivity and server availability |
1 |
google_gemini: TCP fetch failed: <string> |
scorpiox/libsxnet/sx_provider_google_gemini.c | Check network connectivity and server availability |
1 |
google_gemini: TCP_HOST/TCP_PORT not configured |
scorpiox/libsxnet/sx_provider_google_gemini.c | Review scorpiox-env.txt configuration |
1 |
google_gemini: invalid TCP response |
scorpiox/libsxnet/sx_provider_google_gemini.c | Check network connectivity and server availability |
1 |
openai: load_env key=<string> url=<string> model=<string> |
scorpiox/libsxnet/sx_provider_openai.c | Check network connectivity and server availability |
1 |
openai: proxy exec not supported in WASM build |
scorpiox/libsxnet/sx_provider_openai.c | Check network connectivity and server availability |
1 |
openai_wasm: HTTP <number>, retry <number>/<number> in <number>ms... |
scorpiox/libsxnet/sx_provider_openai_wasm.c | Check network connectivity and server availability |
1 |
openai_wasm: load_env key=<string> url=<string> model=<string> streaming=<number> |
scorpiox/libsxnet/sx_provider_openai_wasm.c | Check network connectivity and server availability |
1 |
bgtask: not supported on this platform |
scorpiox/libsxutil/sx_bgtask.c | Check network connectivity and server availability |
1 |
Failed to fetch index.txt, using fallback branch: sx |
scorpiox/libsxutil/sx_config.c | Check network connectivity and server availability |
1 |
Resolved dist URL: <string> (branch=<string>, file=<string>) |
scorpiox/libsxutil/sx_config.c | Check network connectivity and server availability |
1 |
SCORPIOX_DIST_BASE_URL not set |
scorpiox/libsxutil/sx_config.c | Check network connectivity and server availability |
1 |
sx_exec: timeout after <number>ms: %.100s |
scorpiox/libsxutil/sx_exec.c | Check network connectivity, increase timeout, or retry |
1 |
sx_exec[wasm]: unsupported command: '%.100s' |
scorpiox/libsxutil/sx_exec_wasm.c | Check network connectivity and server availability |
1 |
ca_bundle: not found (SSL will fail) |
scorpiox/libsxutil/sx_platform.c | Verify the resource exists and the path is correct |
1 |
ensure_tool: <string> not found (auto-install not supported on this OS) |
scorpiox/libsxutil/sx_platform.c | Verify the resource exists and the path is correct |
1 |
WARNING: TLS certificate verification is DISABLED (SX_TLS_VERIFY=0). |
scorpiox/libsxutil/sx_tls.h | Check network connectivity and server availability |
1 |
client disconnected |
scorpiox/libtb4/tb4_test.c | Verify network connectivity and server availability |
1 |
connect failed |
scorpiox/libtb4/tb4_test.c | Verify network connectivity and server availability |
1 |
PAT injection only works with https:// URLs, using URL as-is |
scorpiox/scorpiox-agent.c | Check network connectivity and server availability |
1 |
Repository URL required (use -r or set AGENTS_REPO_URL) |
scorpiox/scorpiox-agent.c | Check network connectivity and server availability |
1 |
Usage: <string> <input.json> <output.json> [timeout_seconds] |
scorpiox/scorpiox-askuserquestion.c | Check network connectivity, increase timeout, or retry |
1 |
error: bind to port <number> failed: <string> |
scorpiox/scorpiox-beam.c | Check network connectivity and server availability |
1 |
error: connect to <string>:<number> failed: <string> |
scorpiox/scorpiox-beam.c | Verify network connectivity and server availability |
1 |
error: connection lost at offset <number>/<number> |
scorpiox/scorpiox-beam.c | Verify network connectivity and server availability |
1 |
error: invalid port |
scorpiox/scorpiox-beam.c | Check network connectivity and server availability |
1 |
error: socket() failed |
scorpiox/scorpiox-beam.c | Verify network connectivity and server availability |
1 |
TCP_HOST=host1,host2 # comma-separated for failover |
scorpiox/scorpiox-claudecode-fetchtoken.c | Check network connectivity and server availability |
1 |
error: CLAUDE_CODE_REMOTE_URL required in config |
scorpiox/scorpiox-claudecode-fetchtoken.c | Review scorpiox-env.txt configuration |
1 |
error: CLAUDE_CODE_SSH_HOST and CLAUDE_CODE_SSH_USER required in config |
scorpiox/scorpiox-claudecode-fetchtoken.c | Review scorpiox-env.txt configuration |
1 |
error: HTTP <number> |
scorpiox/scorpiox-claudecode-fetchtoken.c | Check network connectivity and server availability |
1 |
error: TCP fetch failed (err=<number>) |
scorpiox/scorpiox-claudecode-fetchtoken.c | Check network connectivity and server availability |
1 |
error: TCP_HOST required in config |
scorpiox/scorpiox-claudecode-fetchtoken.c | Review scorpiox-env.txt configuration |
1 |
error: curl init failed |
scorpiox/scorpiox-claudecode-fetchtoken.c | Check network connectivity and server availability |
1 |
error: API returned HTTP <number> |
scorpiox/scorpiox-claudecode-models.c | Check network connectivity and server availability |
1 |
error: curl_easy_init failed |
scorpiox/scorpiox-claudecode-models.c | Check network connectivity and server availability |
1 |
error: curl init failed |
scorpiox/scorpiox-claudecode-refreshtoken.c | Check network connectivity and server availability |
1 |
TCP_HOST=host1,host2 # comma-separated for failover |
scorpiox/scorpiox-codex-fetchtoken.c | Check network connectivity and server availability |
1 |
error: HTTP <number> from <string> |
scorpiox/scorpiox-codex-fetchtoken.c | Check network connectivity and server availability |
1 |
error: TCP fetch failed (err=<number>) |
scorpiox/scorpiox-codex-fetchtoken.c | Check network connectivity and server availability |
1 |
error: TCP_HOST required in config |
scorpiox/scorpiox-codex-fetchtoken.c | Review scorpiox-env.txt configuration |
1 |
error: curl: <string> |
scorpiox/scorpiox-codex-fetchtoken.c | Check network connectivity and server availability |
1 |
error: curl_easy_init failed |
scorpiox/scorpiox-codex-fetchtoken.c | Check network connectivity and server availability |
1 |
error: API returned HTTP <number> |
scorpiox/scorpiox-codex-models.c | Check network connectivity and server availability |
1 |
error: curl_easy_init failed |
scorpiox/scorpiox-codex-models.c | Check network connectivity and server availability |
1 |
error: curl init failed |
scorpiox/scorpiox-codex-refreshtoken.c | Check network connectivity and server availability |
1 |
-> NXDOMAIN (our domain, no record) |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
-> SERVFAIL (all upstreams failed for <string>) |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
-> local: <string> (<string><string><string>) |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
-> precache fallback: <string> (resolved <number> ago) |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
<string>error:<string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
DNS server shutting down (served <number> queries) |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
DNS server started on <string>:<number> (domain=<string>, zones=<number>, upstreams=<number>) |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
active-cache: evicted <number> stale entries (><number> days old) |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
active-cache: failed to allocate memory |
scorpiox/scorpiox-dns.c | Free up system memory or reduce workload |
1 |
active-cache: loaded <number> entries from <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
audit: ERROR — malloc failed, disabling |
scorpiox/scorpiox-dns.c | Free up system memory or reduce workload |
1 |
audit: alloc failed, disabling |
scorpiox/scorpiox-dns.c | Free up system memory or reduce workload |
1 |
audit: cannot create fallback temp dir: <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
audit: closed |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
audit: enabled, dir=<string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
audit: falling back to <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
audit: logging to <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
cannot create runtime dir <string>: <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
error: cannot delete <string>: <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
invalid upstream DNS: <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
loaded <number> zone records from <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
precache: failed to allocate memory |
scorpiox/scorpiox-dns.c | Free up system memory or reduce workload |
1 |
precache: full (<number> entries), cannot add <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
precache: loaded <number> entries from <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
query: <string> <string> (type=<number>) from <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
runtime dir: <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
saved <number> zone records to <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
select failed: <string> |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
unsupported record type '<string>' for <string>, skipping |
scorpiox/scorpiox-dns.c | Check network connectivity and server availability |
1 |
Error: URL is required |
scorpiox/scorpiox-docs.c | Check network connectivity and server availability |
1 |
[scorpiox-docs] Failed to fetch URL |
scorpiox/scorpiox-docs.c | Check network connectivity and server availability |
-1 |
ERROR: SMTP_HOST not set. Configure in scorpiox-env.txt |
scorpiox/scorpiox-email.c | Review scorpiox-env.txt configuration |
-1 |
ERROR: curl_easy_init failed |
scorpiox/scorpiox-email.c | Check network connectivity and server availability |
1 |
emit-session: POST HTTP <number>: <string> |
scorpiox/scorpiox-emit-session.c | Check network connectivity and server availability |
-1 |
Error: Cannot connect to <string>:<number> |
scorpiox/scorpiox-fetch.c | Verify network connectivity and server availability |
-1 |
Error: Chrome CDP did not start within <number> seconds |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
-1 |
Error: Chrome/Chromium not found.Install Chrome or Chromium and try again. |
scorpiox/scorpiox-fetch.c | Verify the resource exists and the path is correct |
-1 |
Error: Could not extract page HTML |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
-1 |
Error: Could not get WebSocket debug URL |
scorpiox/scorpiox-fetch.c | Verify network connectivity and server availability |
-1 |
Error: Failed to get page content |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
-1 |
Error: Failed to launch Chrome |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
-1 |
Error: HTML to markdown conversion failed |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
-1 |
Error: HTML to text conversion failed |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
-1 |
Error: HTTP <number> for <string> |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
-1 |
Error: HTTP request failed: <string> |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
-1 |
Error: URL required |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
-1 |
Error: WebSocket upgrade failed |
scorpiox/scorpiox-fetch.c | Verify network connectivity and server availability |
-1 |
Error: fork() failed: <string> |
scorpiox/scorpiox-fetch.c | Check system resources (process limits) |
0 |
Chrome not found |
scorpiox/scorpiox-fetch.c | Verify the resource exists and the path is correct |
0 |
Error: Too many redirects (max <number>) |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
1 |
Error: Failed to send CDP command: <string> |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
1 |
Error: Invalid format '<string>'. Use: text, html, markdown |
scorpiox/scorpiox-fetch.c | Check network connectivity and server availability |
-1 |
error: invalid local port in '<string>' |
scorpiox/scorpiox-frp.c | Check network connectivity and server availability |
-1 |
error: invalid port in '<string>' |
scorpiox/scorpiox-frp.c | Check network connectivity and server availability |
1 |
error: --remote PORT is required for <string> proxy type |
scorpiox/scorpiox-frp.c | Check network connectivity and server availability |
1 |
error: failed to create FRP client: <number> |
scorpiox/scorpiox-frp.c | Check network connectivity and server availability |
1 |
scorpiox-gemini-vertex: curl error: <string> |
scorpiox/scorpiox-gemini-vertex.c | Check network connectivity and server availability |
1 |
scorpiox-gemini-vertex: retry <number>/<number> after <number>ms (HTTP <number>) |
scorpiox/scorpiox-gemini-vertex.c | Check network connectivity and server availability |
1 |
scorpiox-google-claude: curl error: <string> |
scorpiox/scorpiox-google-claude.c | Check network connectivity and server availability |
0 |
error: unknown mode '<string>' |
scorpiox/scorpiox-google-fetchtoken.c | Check network connectivity and server availability |
1 |
TCP_HOST=host1,host2 # comma-separated for failover |
scorpiox/scorpiox-google-fetchtoken.c | Check network connectivity and server availability |
1 |
error: <string> |
scorpiox/scorpiox-google-fetchtoken.c | Check network connectivity and server availability |
1 |
error: HTTP <number> from <string> |
scorpiox/scorpiox-google-fetchtoken.c | Check network connectivity and server availability |
1 |
error: TCP fetch failed (code <number>) |
scorpiox/scorpiox-google-fetchtoken.c | Check network connectivity and server availability |
1 |
error: TCP_HOST not configured |
scorpiox/scorpiox-google-fetchtoken.c | Review scorpiox-env.txt configuration |
1 |
error: curl init failed |
scorpiox/scorpiox-google-fetchtoken.c | Check network connectivity and server availability |
1 |
error: empty response |
scorpiox/scorpiox-google-fetchtoken.c | Check network connectivity and server availability |
1 |
error: invalid response (not JSON) |
scorpiox/scorpiox-google-fetchtoken.c | Check network connectivity and server availability |
1 |
scorpiox-google-gemini: curl error: <string> |
scorpiox/scorpiox-google-gemini.c | Check network connectivity and server availability |
1 |
error: GOOGLE_REMOTE_URL not configured |
scorpiox/scorpiox-google-models.c | Review scorpiox-env.txt configuration |
1 |
error: all endpoints failed (last HTTP <number>) |
scorpiox/scorpiox-google-models.c | Check network connectivity and server availability |
1 |
error: curl init failed |
scorpiox/scorpiox-google-models.c | Check network connectivity and server availability |
1 |
warning: HTTP <number> from <string> |
scorpiox/scorpiox-google-models.c | Check network connectivity and server availability |
1 |
maps: TCP fetch failed |
scorpiox/scorpiox-googlemaps.c | Check network connectivity and server availability |
1 |
maps: TCP_HOST/TCP_PORT not configured |
scorpiox/scorpiox-googlemaps.c | Review scorpiox-env.txt configuration |
1 |
<string>Error:<string> cannot bind to port <number> — <string> |
scorpiox/scorpiox-host.c | Check network connectivity and server availability |
1 |
<string>Error:<string> cannot connect to localhost:<number> — <string> |
scorpiox/scorpiox-host.c | Verify network connectivity and server availability |
1 |
<string>Error:<string> cannot create socket |
scorpiox/scorpiox-host.c | Verify network connectivity and server availability |
1 |
<string>Error:<string> invalid port |
scorpiox/scorpiox-host.c | Check network connectivity and server availability |
1 |
<string>Error:<string> scorpiox-host not running (stale pid file). Start with: scorpiox-host serve |
scorpiox/scorpiox-host.c | Check network connectivity and server availability |
1 |
<string>Error:<string> scorpiox-host not running. Start with: scorpiox-host serve |
scorpiox/scorpiox-host.c | Check network connectivity and server availability |
1 |
Error: HTTP <number> |
scorpiox/scorpiox-mcp-httpclient.c | Check network connectivity and server availability |
1 |
Error: HTTP request failed (code <number>) |
scorpiox/scorpiox-mcp-httpclient.c | Check network connectivity and server availability |
1 |
Error: HTTP request failed: <string> |
scorpiox/scorpiox-mcp-httpclient.c | Check network connectivity and server availability |
1 |
Error: first argument must be an HTTP(S) URL |
scorpiox/scorpiox-mcp-httpclient.c | Check network connectivity and server availability |
1 |
<string>✗ <string> — connection failed<string> |
scorpiox/scorpiox-mcp.c | Verify network connectivity and server availability |
1 |
Cannot connect to session '<string>' — is it running? |
scorpiox/scorpiox-multiplexer.c | Verify network connectivity and server availability |
1 |
error: OPENAI_BASE_URL not configured |
scorpiox/scorpiox-openai.c | Review scorpiox-env.txt configuration |
1 |
scorpiox-openai: HTTP error: <string> |
scorpiox/scorpiox-openai.c | Check network connectivity and server availability |
1 |
scorpiox-openai: retry <number>/<number> after <number>ms (HTTP <number>) |
scorpiox/scorpiox-openai.c | Check network connectivity and server availability |
1 |
scorpiox-openai: retryable HTTP <number> |
scorpiox/scorpiox-openai.c | Check network connectivity and server availability |
1 |
SCORPIOX_DIST_BASE_URL not configured (could not resolve dist URL) |
scorpiox/scorpiox-podman.c | Review scorpiox-env.txt configuration |
1 |
error: bind() failed on port <number> |
scorpiox/scorpiox-pwshovertcp.c | Check network connectivity and server availability |
1 |
error: socket() failed |
scorpiox/scorpiox-pwshovertcp.c | Verify network connectivity and server availability |
-1 |
\033[31m[serve]\033[0m Failed to start host: <number> |
scorpiox/scorpiox-sdk.c | Check network connectivity and server availability |
-1 |
\033[31m[serve]\033[0m Host failed to start within <number> ms |
scorpiox/scorpiox-sdk.c | Check network connectivity and server availability |
1 |
Error: --agent requires -r <repo> or AGENTS_REPO_URL env |
scorpiox/scorpiox-sdk.c | Check network connectivity and server availability |
1 |
Error: Timeout waiting for messages dir: <string> |
scorpiox/scorpiox-sdk.c | Check network connectivity, increase timeout, or retry |
1 |
\033[33m[warn]\033[0m Container networking flags ignored in --local mode |
scorpiox/scorpiox-sdk.c | Check network connectivity and server availability |
1 |
DLL: TLS init failed — running without TLS |
scorpiox/scorpiox-server-email.c | Check network connectivity and server availability |
1 |
Daemon mode not supported on Windows (running foreground) |
scorpiox/scorpiox-server-email.c | Check network connectivity and server availability |
1 |
No TLS cert/key configured — running without TLS |
scorpiox/scorpiox-server-email.c | Review scorpiox-env.txt configuration |
1 |
Relay configured: <string>:<number> (user=<string>, tls=<string>, require_tls=<string>) |
scorpiox/scorpiox-server-email.c | Review scorpiox-env.txt configuration |
1 |
SMTP port: <number>, submission: <number>, IMAP: <number> |
scorpiox/scorpiox-server-email.c | Check network connectivity and server availability |
1 |
TLS init failed — running without TLS |
scorpiox/scorpiox-server-email.c | Check network connectivity and server availability |
1 |
TLS: <string> |
scorpiox/scorpiox-server-email.c | Check network connectivity and server availability |
1 |
# Empty = allow all (default) |
scorpiox/scorpiox-server-fetchtoken.c | Check network connectivity and server availability |
1 |
DLL: accept thread started (fd=<number>, port=<number>) |
scorpiox/scorpiox-server.c | Check network connectivity and server availability |
1 |
DLL: bind() port <number> failed |
scorpiox/scorpiox-server.c | Check network connectivity and server availability |
1 |
DLL: server started on port <number>, <number> script dir(s), prefix='<string>' |
scorpiox/scorpiox-server.c | Check network connectivity and server availability |
1 |
DLL: socket() failed |
scorpiox/scorpiox-server.c | Verify network connectivity and server availability |
1 |
Error: Cannot bind to port <number> |
scorpiox/scorpiox-server.c | Check network connectivity and server availability |
1 |
Error: cannot extract repo name from URL: <string> |
scorpiox/scorpiox-server.c | Check network connectivity and server availability |
1 |
SSE stream '<string>' idle timeout after <number>s |
scorpiox/scorpiox-server.c | Check network connectivity, increase timeout, or retry |
1 |
Script '<string>' idle timeout after <number>s (no output), killing pid <number> |
scorpiox/scorpiox-server.c | Check network connectivity, increase timeout, or retry |
1 |
Server started on port <number> with <number> script dir(s), limits req=<number>MB resp=<number>MB |
scorpiox/scorpiox-server.c | Check network connectivity and server availability |
1 |
Streaming: idle timeout for '<string>' |
scorpiox/scorpiox-server.c | Check network connectivity, increase timeout, or retry |
1 |
bind() port <number> failed |
scorpiox/scorpiox-server.c | Check network connectivity and server availability |
1 |
socket() failed |
scorpiox/scorpiox-server.c | Verify network connectivity and server availability |
1 |
seq=<number> timeout |
scorpiox/scorpiox-thunderbolt4.c | Check network connectivity, increase timeout, or retry |
1 |
warn: 10s timeout |
scorpiox/scorpiox-thunderbolt4.c | Check network connectivity, increase timeout, or retry |
1 |
Download failed — neither curl nor wget succeeded |
scorpiox/scorpiox-unshare.c | Check network connectivity and server availability |
1 |
Invalid port mapping: <string> |
scorpiox/scorpiox-unshare.c | Check network connectivity and server availability |
1 |
Required for container networking. Cannot launch container without it. |
scorpiox/scorpiox-unshare.c | Check network connectivity and server availability |
1 |
Unknown --net mode: <string> (use: host) |
scorpiox/scorpiox-unshare.c | Check network connectivity and server availability |
1 |
pipe() for network sync failed |
scorpiox/scorpiox-unshare.c | Check network connectivity and server availability |
1 |
tap0 never appeared after 3 seconds. Network broken, aborting. |
scorpiox/scorpiox-unshare.c | Check network connectivity and server availability |
1 |
usage: POST HTTP <number>: <string> |
scorpiox/scorpiox-usage.c | Check command usage with --help |
1 |
Error: --pat, --url, and -o are required |
scorpiox/scorpiox-vault-git.c | Check network connectivity and server availability |
1 |
Error: export failed (exit <number>) |
scorpiox/scorpiox-vault-git.c | Check network connectivity and server availability |
1 |
error: HTTP <number> |
scorpiox/scorpiox-vertex-models.c | Check network connectivity and server availability |
1 |
error: curl init failed |
scorpiox/scorpiox-vertex-models.c | Check network connectivity and server availability |
1 |
Download failed — neither curl nor wget succeeded |
scorpiox/scorpiox-vm.c | Check network connectivity and server availability |
1 |
KVM_GET_SUPPORTED_CPUID failed: <string> |
scorpiox/scorpiox-vm.c | Check network connectivity and server availability |
1 |
[websearch] Brave: fetch failed |
scorpiox/scorpiox-websearch.c | Check network connectivity and server availability |
1 |
[websearch] Mojeek: fetch failed |
scorpiox/scorpiox-websearch.c | Check network connectivity and server availability |
1 |
Bridge disconnected. |
scorpiox/scorpiox-whatsapp.c | Verify network connectivity and server availability |
1 |
⚠ WhatsApp disconnected. Bridge will reconnect... |
scorpiox/scorpiox-whatsapp.c | Verify network connectivity and server availability |
1 |
✗ Failed to connect |
scorpiox/scorpiox-whatsapp.c | Verify network connectivity and server availability |
1 |
✗ Failed to connect to WhatsApp |
scorpiox/scorpiox-whatsapp.c | Verify network connectivity and server availability |
-1 |
Error: <string> not found (HTTP <number>) |
scorpiox/scorpiox-wsl.c | Verify the resource exists and the path is correct |
1 |
Base distro import failed (rc=<number>) |
scorpiox/scorpiox-wsl.c | Check network connectivity and server availability |
1 |
Failed to execute wsl.exe --import (popen failed) |
scorpiox/scorpiox-wsl.c | Verify the executable exists and is in PATH |
1 |
Import failed (exit <number>) |
scorpiox/scorpiox-wsl.c | Check network connectivity and server availability |
1 |
Invalid auto-port: <string> |
scorpiox/scorpiox-wsl.c | Check network connectivity and server availability |
1 |
MCP configured (<string>) but 0 tools discovered — check server connectivity |
scorpiox/sx.c | Verify network connectivity and server availability |
1 |
main: host integration failed to start |
scorpiox/sx.c | Check network connectivity and server availability |
1 |
main: host integration started, url=<string> |
scorpiox/sx.c | Check network connectivity and server availability |
1 |
main: host message received, injecting into agent loop |
scorpiox/sx.c | Check network connectivity and server availability |
1 |
sx_dll: not a supported image file: <string> |
scorpiox/sx_dll.c | Check network connectivity and server availability |
1 |
[imap] TLS handshake failed from <string> |
scorpiox/sxmail_imap.c | Check network connectivity and server availability |
1 |
[imap] closing connection from <string> |
scorpiox/sxmail_imap.c | Verify network connectivity and server availability |
1 |
[imap] failed to bind port <number> |
scorpiox/sxmail_imap.c | Check network connectivity and server availability |
1 |
[imap] listening on port <number> |
scorpiox/sxmail_imap.c | Check network connectivity and server availability |
1 |
[imap] new connection from <string> |
scorpiox/sxmail_imap.c | Verify network connectivity and server availability |
1 |
[imap] socket() failed: <string> |
scorpiox/sxmail_imap.c | Verify network connectivity and server availability |
1 |
[queue] DNS resolution failed for <string>: <string> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[queue] MX <string> advertises STARTTLS, upgrading |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[queue] STARTTLS active with MX <string> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[queue] STARTTLS handshake failed with MX <string>, continuing plaintext |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[queue] STARTTLS rejected by MX <string> (code <number>), continuing plaintext |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[queue] connect to <string>:25 failed: <string> |
scorpiox/sxmail_queue.c | Verify network connectivity and server availability |
1 |
[queue] connecting to MX <string> for <string> |
scorpiox/sxmail_queue.c | Verify network connectivity and server availability |
1 |
[queue] post-STARTTLS EHLO failed with <string>: <number> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[queue] relay configured: <string>:<number> (user=<string>, tls=<string>) |
scorpiox/sxmail_queue.c | Review scorpiox-env.txt configuration |
1 |
[relay-tls] CA bundle failed to load and verification is REQUIRED -- aborting (fail closed) |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay-tls] TLS handshake complete with <string> (verify=<string>) |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay-tls] ctr_drbg_seed failed: -0x%04X |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay-tls] failed to parse CA bundle <string>: <string> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay-tls] handshake failed: <string> (-0x%04X) |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay-tls] no CA bundle available and verification is REQUIRED -- aborting (fail closed) |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay-tls] no system CA bundle found |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay-tls] ssl_config_defaults failed: -0x%04X |
scorpiox/sxmail_queue.c | Review scorpiox-env.txt configuration |
1 |
[relay-tls] ssl_setup failed: -0x%04X |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] DATA not accepted: <number> <string> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] DNS resolution failed for <string>: <string> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] EHLO/HELO rejected by <string>: <number> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] MAIL FROM rejected: <number> <string> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] RCPT TO rejected: <number> <string> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] STARTTLS handshake failed with <string> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] STARTTLS not supported by <string> (code <number>) and SMTP_REQUIRE_TLS is set -- refusing to send |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] STARTTLS not supported by <string> (code <number>), continuing plaintext |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] bad greeting from <string>: <number> <string> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] base64 encode failed |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] connect to <string>:<number> failed: <string> |
scorpiox/sxmail_queue.c | Verify network connectivity and server availability |
1 |
[relay] connecting to <string>:<number> for <string> (tls=<string>) |
scorpiox/sxmail_queue.c | Verify network connectivity and server availability |
1 |
[relay] delivered to <string> via relay <string>:<number> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] implicit TLS handshake failed with <string>:<number> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[relay] post-STARTTLS EHLO failed: <number> |
scorpiox/sxmail_queue.c | Check network connectivity and server availability |
1 |
[smtp] STARTTLS active for <string> |
scorpiox/sxmail_smtp.c | Check network connectivity and server availability |
1 |
[smtp] STARTTLS upgrade failed for <string> |
scorpiox/sxmail_smtp.c | Check network connectivity and server availability |
1 |
[smtp] client <string> disconnected |
scorpiox/sxmail_smtp.c | Verify network connectivity and server availability |
1 |
[smtp] closing connection from <string> |
scorpiox/sxmail_smtp.c | Verify network connectivity and server availability |
1 |
[smtp] failed to bind port <number> |
scorpiox/sxmail_smtp.c | Check network connectivity and server availability |
1 |
[smtp] failed to bind port <number> (need root?) |
scorpiox/sxmail_smtp.c | Check network connectivity and server availability |
1 |
[smtp] idle timeout for <string> (><number>s) |
scorpiox/sxmail_smtp.c | Check network connectivity, increase timeout, or retry |
1 |
[smtp] listening on port <number> |
scorpiox/sxmail_smtp.c | Check network connectivity and server availability |
1 |
[smtp] max clients reached, rejecting connection |
scorpiox/sxmail_smtp.c | Verify network connectivity and server availability |
1 |
[smtp] new connection from <string> (port <string>) |
scorpiox/sxmail_smtp.c | Verify network connectivity and server availability |
1 |
[smtp] socket() failed: <string> |
scorpiox/sxmail_smtp.c | Verify network connectivity and server availability |
1 |
[tls] <string>: <string> (-0x%04X) |
scorpiox/sxmail_tls.c | Check network connectivity and server availability |
1 |
[tls] context initialized (cert=<string>) |
scorpiox/sxmail_tls.c | Check network connectivity and server availability |
1 |
[tls] failed to load cert: <string> |
scorpiox/sxmail_tls.c | Check network connectivity and server availability |
1 |
[tls] failed to load key: <string> |
scorpiox/sxmail_tls.c | Check network connectivity and server availability |
1 |
[tls] out of memory |
scorpiox/sxmail_tls.c | Free up system memory or reduce workload |
| Code | Message | Source | Résolution |
|---|---|---|---|
1 |
claude: INVALID JSON at byte <number>/<number>: <string> |
scorpiox/libsxnet/sx_claude.c | Verify provider configuration and API credentials |
1 |
claude: failed to build JSON request |
scorpiox/libsxnet/sx_claude.c | Verify provider configuration and API credentials |
1 |
claude: failed to parse response JSON |
scorpiox/libsxnet/sx_claude.c | Verify provider configuration and API credentials |
1 |
claude: json context: <string> |
scorpiox/libsxnet/sx_claude.c | Verify provider configuration and API credentials |
1 |
claude: request cancelled by user |
scorpiox/libsxnet/sx_claude.c | Verify provider configuration and API credentials |
1 |
claude: send started, model=<string> history=<number> |
scorpiox/libsxnet/sx_claude.c | Verify provider configuration and API credentials |
1 |
failed to allocate provider |
scorpiox/libsxnet/sx_provider.c | Free up system memory or reduce workload |
1 |
provider init failed for '<string>' |
scorpiox/libsxnet/sx_provider.c | Verify provider configuration and API credentials |
1 |
unknown provider type: <number> |
scorpiox/libsxnet/sx_provider.c | Verify provider configuration and API credentials |
1 |
unknown provider: <string> |
scorpiox/libsxnet/sx_provider.c | Verify provider configuration and API credentials |
1 |
anthropic: INVALID JSON at byte <number>/<number>: <string> |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify provider configuration and API credentials |
1 |
anthropic: antigravity model mapping: <string> -> <string> |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify provider configuration and API credentials |
1 |
anthropic: failed to allocate provider data |
scorpiox/libsxnet/sx_provider_anthropic.c | Free up system memory or reduce workload |
1 |
anthropic: history required <number> fixes before send |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify provider configuration and API credentials |
1 |
anthropic: init ok exe_dir=<string> |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify provider configuration and API credentials |
1 |
anthropic: request cancelled by user |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify provider configuration and API credentials |
1 |
anthropic: send started, history=<number> msgs |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify provider configuration and API credentials |
1 |
anthropic: zai model mapping: <string> -> <string> |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify provider configuration and API credentials |
1 |
anthropic_wasm: INVALID JSON at byte <number>: <string> |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify provider configuration and API credentials |
1 |
anthropic_wasm: history required <number> fixes |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify provider configuration and API credentials |
1 |
anthropic_wasm: init ok |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify provider configuration and API credentials |
1 |
anthropic_wasm: send started, history=<number> msgs |
scorpiox/libsxnet/sx_provider_anthropic.c | Verify provider configuration and API credentials |
1 |
build_json_req: yyjson_mut_doc_new returned NULL! malloc is broken |
scorpiox/libsxnet/sx_provider_claude_code.c | Free up system memory or reduce workload |
1 |
claude_code: INVALID JSON at byte <number>/<number>: <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
claude_code: direct -> <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
claude_code: failed to parse response JSON: %.200s |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
claude_code: history required <number> fixes before send |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
claude_code: invalid JSON saved to <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
claude_code: json context: <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
claude_code: proxy enabled -> <string> (strict=<number>) |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
claude_code: request cancelled by user |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
claude_code: response has no JSON: %.200s |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
claude_code: send started, history=<number> msgs |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
claude_code: skipped <number> bytes of non-JSON prefix |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
claude_code: unknown message type '%c' at index <number> |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
failed to allocate claude_code provider data |
scorpiox/libsxnet/sx_provider_claude_code.c | Free up system memory or reduce workload |
1 |
fork failed: <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Check system resources (process limits) |
1 |
pipe failed: <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Verify provider configuration and API credentials |
1 |
posix_spawn(<string>) failed: <string> |
scorpiox/libsxnet/sx_provider_claude_code.c | Check system resources (process limits) |
1 |
claude_code_wasm: INVALID JSON at byte <number>: <string> |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Verify provider configuration and API credentials |
1 |
claude_code_wasm: history required <number> fixes |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Verify provider configuration and API credentials |
1 |
claude_code_wasm: init ok |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Verify provider configuration and API credentials |
1 |
claude_code_wasm: send started, history=<number> msgs |
scorpiox/libsxnet/sx_provider_claude_code_wasm.c | Verify provider configuration and API credentials |
1 |
codex: fork failed: <string> |
scorpiox/libsxnet/sx_provider_codex.c | Check system resources (process limits) |
1 |
codex: pipe failed: <string> |
scorpiox/libsxnet/sx_provider_codex.c | Verify provider configuration and API credentials |
1 |
codex: posix_spawn(<string>) failed: <string> |
scorpiox/libsxnet/sx_provider_codex.c | Check system resources (process limits) |
1 |
failed to allocate scorpiox provider data |
scorpiox/libsxnet/sx_provider_scorpiox.c | Free up system memory or reduce workload |
1 |
scorpiox: init ok exe_dir=<string> |
scorpiox/libsxnet/sx_provider_scorpiox.c | Verify provider configuration and API credentials |
1 |
systemprompt: CLAUDE.md size <number> exceeds limit |
scorpiox/libsxutil/sx_systemprompt.c | Verify provider configuration and API credentials |
1 |
CLAUDE.md not found in <string> |
scorpiox/scorpiox-agent.c | Verify the resource exists and the path is correct |
1 |
Cloning scorpiox-agent-dotnet source... |
scorpiox/scorpiox-agent.c | Verify provider configuration and API credentials |
1 |
DRY RUN mode — will clone and build, but skip launching scorpiox |
scorpiox/scorpiox-agent.c | Verify provider configuration and API credentials |
1 |
Failed to clone scorpiox-agent-dotnet |
scorpiox/scorpiox-agent.c | Verify provider configuration and API credentials |
1 |
Failed to run scorpiox-agent-dotnet-generator |
scorpiox/scorpiox-agent.c | Verify provider configuration and API credentials |
1 |
Starting scorpiox from task dir: <string> |
scorpiox/scorpiox-agent.c | Verify provider configuration and API credentials |
1 |
Updating scorpiox-agent-dotnet source... |
scorpiox/scorpiox-agent.c | Verify provider configuration and API credentials |
1 |
Using model: <string> |
scorpiox/scorpiox-agent.c | Verify provider configuration and API credentials |
0 |
error: unknown mode '<string>' |
scorpiox/scorpiox-claudecode-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: <string> |
scorpiox/scorpiox-claudecode-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: empty JSON input |
scorpiox/scorpiox-claudecode-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: failed to run ssh command |
scorpiox/scorpiox-claudecode-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: fork() failed: <string> |
scorpiox/scorpiox-claudecode-fetchtoken.c | Check system resources (process limits) |
1 |
error: out of memory |
scorpiox/scorpiox-claudecode-fetchtoken.c | Free up system memory or reduce workload |
1 |
error: pipe() failed: <string> |
scorpiox/scorpiox-claudecode-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: ssh failed (exit <number>) |
scorpiox/scorpiox-claudecode-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: API request failed: <string> |
scorpiox/scorpiox-claudecode-models.c | Verify provider configuration and API credentials |
1 |
error: failed to run <string> |
scorpiox/scorpiox-claudecode-models.c | Verify provider configuration and API credentials |
1 |
error: <string> |
scorpiox/scorpiox-claudecode-refreshtoken.c | Verify provider configuration and API credentials |
1 |
warning: could not create backup |
scorpiox/scorpiox-claudecode-refreshtoken.c | Verify provider configuration and API credentials |
0 |
error: unknown mode '<string>' |
scorpiox/scorpiox-codex-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: empty JSON input |
scorpiox/scorpiox-codex-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: empty response from <string> |
scorpiox/scorpiox-codex-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: empty ssh output |
scorpiox/scorpiox-codex-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: failed to run ssh command |
scorpiox/scorpiox-codex-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: fork() failed: <string> |
scorpiox/scorpiox-codex-fetchtoken.c | Check system resources (process limits) |
1 |
error: invalid JSON |
scorpiox/scorpiox-codex-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: out of memory |
scorpiox/scorpiox-codex-fetchtoken.c | Free up system memory or reduce workload |
1 |
error: pipe() failed: <string> |
scorpiox/scorpiox-codex-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: ssh failed (exit <number>) |
scorpiox/scorpiox-codex-fetchtoken.c | Verify provider configuration and API credentials |
1 |
error: API request failed: <string> |
scorpiox/scorpiox-codex-models.c | Verify provider configuration and API credentials |
1 |
error: failed to run <string> |
scorpiox/scorpiox-codex-models.c | Verify provider configuration and API credentials |
1 |
error: <string> |
scorpiox/scorpiox-codex-refreshtoken.c | Verify provider configuration and API credentials |
1 |
error: no \ |
scorpiox/scorpiox-codex-refreshtoken.c | Verify provider configuration and API credentials |
1 |
warning: could not create backup |
scorpiox/scorpiox-codex-refreshtoken.c | Verify provider configuration and API credentials |
-1 |
[scorpiox-docs] Failed to create helper script at <string> |
scorpiox/scorpiox-docs.c | Verify provider configuration and API credentials |
0 |
[scorpiox-docs] Some dependencies failed to install |
scorpiox/scorpiox-docs.c | Verify provider configuration and API credentials |
1 |
[scorpiox-docs] Dependencies still missing after install |
scorpiox/scorpiox-docs.c | Verify provider configuration and API credentials |
1 |
[scorpiox-docs] Failed to install dependencies |
scorpiox/scorpiox-docs.c | Verify provider configuration and API credentials |
1 |
[scorpiox-docs] Installing missing dependencies... |
scorpiox/scorpiox-docs.c | Verify provider configuration and API credentials |
1 |
[scorpiox-docs] python3 not found. Please install: apt install python3 python3-pip |
scorpiox/scorpiox-docs.c | Verify the resource exists and the path is correct |
1 |
error: response missing 'models' object |
scorpiox/scorpiox-google-models.c | Verify provider configuration and API credentials |
1 |
scorpiox-hook: <number> sync hook(s) failed, skipping async hooks |
scorpiox/scorpiox-hook.c | Verify provider configuration and API credentials |
1 |
scorpiox-hook: sync hook FAILED: <string>/<string> (exit=<number>) |
scorpiox/scorpiox-hook.c | Verify provider configuration and API credentials |
127 |
scorpiox-mcp: execvp failed for '<string>': <string> |
scorpiox/scorpiox-mcp.c | Verify the executable exists and is in PATH |
127 |
scorpiox-mcp: refusing to exec invalid command: '<string>' |
scorpiox/scorpiox-mcp.c | Verify provider configuration and API credentials |
-1 |
error: CGDataProviderCopyData failed |
scorpiox/scorpiox-screenshot.c | Verify provider configuration and API credentials |
1 |
Error: CreateProcess(scorpiox-wsl) failed (<number>) |
scorpiox/scorpiox-sdk.c | Verify provider configuration and API credentials |
1 |
Error: scorpiox-sdk on Windows requires --agent or --serve |
scorpiox/scorpiox-sdk.c | Verify provider configuration and API credentials |
1 |
Error: scorpiox-sdk requires --agent, --print, or --serve |
scorpiox/scorpiox-sdk.c | Verify provider configuration and API credentials |
-1 |
[scorpiox-search] Failed to create helper script at <string> |
scorpiox/scorpiox-search.c | Verify provider configuration and API credentials |
0 |
[scorpiox-search] Some dependencies failed to install |
scorpiox/scorpiox-search.c | Verify provider configuration and API credentials |
1 |
[scorpiox-search] Dependencies still missing after install |
scorpiox/scorpiox-search.c | Verify provider configuration and API credentials |
1 |
[scorpiox-search] Failed to install dependencies |
scorpiox/scorpiox-search.c | Verify provider configuration and API credentials |
1 |
[scorpiox-search] Installing missing dependencies... |
scorpiox/scorpiox-search.c | Verify provider configuration and API credentials |
1 |
[scorpiox-search] Search failed |
scorpiox/scorpiox-search.c | Verify provider configuration and API credentials |
1 |
[scorpiox-search] python3 not found. Please install: apt install python3 python3-pip |
scorpiox/scorpiox-search.c | Verify the resource exists and the path is correct |
1 |
scorpiox-server-email stopped |
scorpiox/scorpiox-server-email.c | Verify provider configuration and API credentials |
1 |
scorpiox-server-email v<string> starting |
scorpiox/scorpiox-server-email.c | Verify provider configuration and API credentials |
1 |
scorpiox-otp failed (exit <number>) |
scorpiox/scorpiox-server.c | Verify provider configuration and API credentials |
1 |
Error: -m/--model must be opus, sonnet, or haiku |
scorpiox/scorpiox-tmux.c | Verify provider configuration and API credentials |
1 |
Error: --provider is required |
scorpiox/scorpiox-usage.c | Verify provider configuration and API credentials |
-1 |
Error: scorpiox-whatsapp-bridge not found and auto-download failed |
scorpiox/scorpiox-whatsapp.c | Verify the resource exists and the path is correct |
1 |
main: model=<string> provider=<string> tools=<number> thinking=<number> |
scorpiox/sx.c | Verify provider configuration and API credentials |
1 |
main: unknown provider '<string>' |
scorpiox/sx.c | Verify provider configuration and API credentials |
1 |
transcript: launching scorpiox-transcript (Ctrl+O) |
scorpiox/sx.c | Verify provider configuration and API credentials |
1 |
voice: launching scorpiox-voice |
scorpiox/sx.c | Verify provider configuration and API credentials |
1 |
sx_dll: model switched to: <string> |
scorpiox/sx_dll.c | Verify provider configuration and API credentials |
1 |
sx_dll: model=<string> provider=<string> tools=<number> thinking=<number> |
scorpiox/sx_dll.c | Verify provider configuration and API credentials |
1 |
sx_dll: unknown provider '<string>' |
scorpiox/sx_dll.c | Verify provider configuration and API credentials |
1 |
sx_wasm: model=<string> provider=<string> tools=<number> |
scorpiox/sx_dll_wasm.c | Verify provider configuration and API credentials |
1 |
sx_wasm: unknown provider '<string>' |
scorpiox/sx_dll_wasm.c | Verify provider configuration and API credentials |
-1 |
scorpiox-multiplexer.exe not found at: <string> |
scorpiox/sxmux_session.c | Verify the resource exists and the path is correct |
| Code | Message | Source | Résolution |
|---|---|---|---|
1 |
error: need at least -t, -d, or -w |
bridge/ws2tcp.c | See log output for details and retry |
1 |
Aborting download: SHA256 verification failed |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
Bridge killed by signal <number> |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
Bridge version: <string> |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
Failed to download bridge binary from <string>/<string> |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
Failed to install bridge: <string> |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
Failed to make binary executable |
scorpiox/libsxbridge/sx_bridge.c | Verify the executable exists and is in PATH |
1 |
Invalid SHA256 hash format (expected 64 hex chars, got <number>) |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
Out of memory |
scorpiox/libsxbridge/sx_bridge.c | Free up system memory or reduce workload |
1 |
SHA256 MISMATCH for <string> |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
SHA256 checksum not available — aborting download for security |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
SHA256 verified: <string> |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
Unknown platform, auto-download may fail |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
computed: <string> |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
expected: <string> |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
fork failed: <string> |
scorpiox/libsxbridge/sx_bridge.c | Check system resources (process limits) |
1 |
waitpid failed: <string> |
scorpiox/libsxbridge/sx_bridge.c | See log output for details and retry |
1 |
Failed to create new conversation |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
Failed to load conversation: <string> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: <string> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: API request failed: <string> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: API returned 'Could not process image', stripping images from history and retrying |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: all callbacks cancelled, count=<number> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: auto-accepting plan, injecting continue message |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: callback cancelled slot=<number> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: callback registered slot=<number> delay=<number>s msg='%.80s' |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: cancelled after <number> turns, history=<number> msgs |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: completed after <number> turns, final history=<number> msgs |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: context limit reached (R=<number>K >= <number>K), requesting compact |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: continue run (no user message) |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: empty history at turn <number>, cannot send API request |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: force-inject: skill '<string>' not found, skipping |
scorpiox/libsxnet/sx_agent.c | Verify the resource exists and the path is correct |
1 |
agent: force-injecting <number> required skill(s) |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: history AFTER add: api_count=<number> api_cap=<number> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: history AFTER add_with_image: api_count=<number> api_cap=<number> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: history BEFORE add: api_count=<number> api_cap=<number> api=%p display_count=<number> display_cap=<number> display=%p |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: injecting interrupt message from user |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: interactive tool requested, stopping agent loop for main loop handoff |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: loaded <number> messages from session <string> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: no conversation in session <string> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: recursion depth <number> exceeds limit <number> (fork-bomb protection) |
scorpiox/libsxnet/sx_agent.c | Check system resources (process limits) |
1 |
agent: required skills missing at end of turn, nudging (<number>/3) |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: required skills not loaded, injecting nudge (<number>/3) |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: run called, user_message=%p '%.*s' |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: run started, msg_len=<number> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: run_with_image called, msg=%p img_mime=<string> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: run_with_image started, msg_len=<number> |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
agent: skills nudge returned invalid output: '%.60s', discarding |
scorpiox/libsxnet/sx_agent.c | See log output for details and retry |
1 |
wasm_tools: AskUserQuestion questions_json_len=<number> |
scorpiox/libsxnet/sx_agent_tools_wasm.c | See log output for details and retry |
1 |
wasm_tools: AskUserQuestion result=<string> |
scorpiox/libsxnet/sx_agent_tools_wasm.c | See log output for details and retry |
1 |
wasm_tools: WebSearch query=%.80s |
scorpiox/libsxnet/sx_agent_tools_wasm.c | See log output for details and retry |
1 |
api: add_user called, h=%p content=%p '%.*s' |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: add_user done, new count=<number> content=%p '%.40s' |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: add_user h=NULL! |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: add_user post-ensure: count=<number> cap=<number> |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: add_user pre-ensure: count=<number> cap=<number> api=%p |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: cannot add tool_result, history full |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: cannot add tool_use, history full |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: cannot add user msg, ensure_capacity FAILED |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: cannot add user+image msg, history full |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: display array reached limit |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: failed to grow api array to <number> |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: failed to grow display array |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: reached hard limit of <number> messages |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: strdup failed for assistant content |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: strdup failed for image base64 data |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: strdup failed for image_result fields |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: strdup failed for thinking content |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: strdup failed for thinking signature |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: strdup failed for tool_result id |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: strdup failed for tool_use fields |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: strdup failed for user content, using direct pointer |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: strdup failed for user+image content |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: strdup failed in add_display |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api: strdup failed in update_last_display |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api_validate: applied <number> fixes to history (<number> messages remaining) |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api_validate: orphan tool_result at index <number> (id=<string>) - no matching tool_use found, removing |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
api_validate: orphan tool_use at index <number> (id=<string>, name=<string>) - no matching tool_result, adding error result |
scorpiox/libsxnet/sx_api.c | See log output for details and retry |
1 |
mcp: 0 tools from <string> — check that MCP server binary exists and is executable |
scorpiox/libsxnet/sx_mcp.c | See log output for details and retry |
1 |
mcp: binary not found: <string> |
scorpiox/libsxnet/sx_mcp.c | Verify the resource exists and the path is correct |
1 |
mcp: discover failed (exit=<number>) output=[<string>] |
scorpiox/libsxnet/sx_mcp.c | See log output for details and retry |
1 |
mcp: discovered <number> tools |
scorpiox/libsxnet/sx_mcp.c | See log output for details and retry |
1 |
mcp: hashed tool name: <string> -> <string> |
scorpiox/libsxnet/sx_mcp.c | See log output for details and retry |
1 |
mcp: initialized (bin=<string>) |
scorpiox/libsxnet/sx_mcp.c | See log output for details and retry |
1 |
mcp: shortened tool name: %.80s -> <string> |
scorpiox/libsxnet/sx_mcp.c | See log output for details and retry |
1 |
mcp: skipping tool with invalid name (even after shortening): %.80s |
scorpiox/libsxnet/sx_mcp.c | See log output for details and retry |
1 |
mcp: skipping tool with invalid name: %.80s |
scorpiox/libsxnet/sx_mcp.c | See log output for details and retry |
1 |
failed to allocate request builder buffer |
scorpiox/libsxnet/sx_request.c | Free up system memory or reduce workload |
1 |
failed to grow request builder buffer |
scorpiox/libsxnet/sx_request.c | See log output for details and retry |
1 |
input: buffer full, ignoring UTF-8 '<string>' |
scorpiox/libsxui/sxui_input.c | See log output for details and retry |
1 |
input: buffer full, ignoring char '%c' |
scorpiox/libsxui/sxui_input.c | See log output for details and retry |
1 |
bgtask: failed to allocate output buffer |
scorpiox/libsxutil/sx_bgtask.c | Free up system memory or reduce workload |
1 |
bgtask: forkpty failed: <string> |
scorpiox/libsxutil/sx_bgtask.c | Check system resources (process limits) |
1 |
bgtask: killed task <number> (PID <number>) |
scorpiox/libsxutil/sx_bgtask.c | See log output for details and retry |
1 |
bgtask: pool full, cannot start new task |
scorpiox/libsxutil/sx_bgtask.c | See log output for details and retry |
1 |
bgtask: started task <number> (PID <number>): <string> |
scorpiox/libsxutil/sx_bgtask.c | See log output for details and retry |
1 |
bgtask: sx_pty_start failed: <string> |
scorpiox/libsxutil/sx_bgtask.c | See log output for details and retry |
1 |
bgtask: task <number> finished (exit <number>) |
scorpiox/libsxutil/sx_bgtask.c | See log output for details and retry |
1 |
conv: delete id=<string> |
scorpiox/libsxutil/sx_conversation.c | See log output for details and retry |
1 |
sx_exec: fork() failed: <string> |
scorpiox/libsxutil/sx_exec.c | Verify the executable exists and is in PATH |
1 |
sx_exec: pipe() failed: <string> |
scorpiox/libsxutil/sx_exec.c | Verify the executable exists and is in PATH |
1 |
sx_exec_with_stdin: CreatePipe(stdin) failed: <number> |
scorpiox/libsxutil/sx_exec.c | Verify the executable exists and is in PATH |
1 |
sx_exec_with_stdin: CreatePipe(stdout) failed: <number> |
scorpiox/libsxutil/sx_exec.c | Verify the executable exists and is in PATH |
1 |
sx_exec_with_stdin: CreateProcess failed (<number>): %.200s |
scorpiox/libsxutil/sx_exec.c | Verify the executable exists and is in PATH |
1 |
sx_system_safe: fork() failed: <string> |
scorpiox/libsxutil/sx_exec.c | Check system resources (process limits) |
1 |
sx_system_safe: waitpid() failed: <string> |
scorpiox/libsxutil/sx_exec.c | See log output for details and retry |
1 |
exec_wasm: redirect to '<string>' failed: <string> |
scorpiox/libsxutil/sx_exec_wasm.c | Verify the executable exists and is in PATH |
1 |
wasm_fs: IDBFS load returned error (first run is normal) |
scorpiox/libsxutil/sx_fs_wasm.c | See log output for details and retry |
1 |
wasm_fs: IDBFS save failed |
scorpiox/libsxutil/sx_fs_wasm.c | See log output for details and retry |
1 |
wasm_fs: mounting IDBFS... |
scorpiox/libsxutil/sx_fs_wasm.c | See log output for details and retry |
1 |
wasm_fs: persist called before init |
scorpiox/libsxutil/sx_fs_wasm.c | See log output for details and retry |
1 |
yy: failed to parse raw JSON fragment for array |
scorpiox/libsxutil/sx_json_yy.c | See log output for details and retry |
1 |
yy: failed to parse raw JSON fragment for key '<string>' |
scorpiox/libsxutil/sx_json_yy.c | See log output for details and retry |
1 |
ensure_tool: <string> installed successfully |
scorpiox/libsxutil/sx_platform.c | See log output for details and retry |
1 |
ensure_tool: <string> not found (WASM, cannot install) |
scorpiox/libsxutil/sx_platform.c | Verify the resource exists and the path is correct |
1 |
ensure_tool: cannot detect distro, cannot install <string> |
scorpiox/libsxutil/sx_platform.c | See log output for details and retry |
1 |
ensure_tool: failed to install <string> (rc=<number>) |
scorpiox/libsxutil/sx_platform.c | See log output for details and retry |
1 |
ensure_tool: installing <string> (pkg=<string>) on <string>... |
scorpiox/libsxutil/sx_platform.c | See log output for details and retry |
1 |
ensure_tool: unknown distro '<string>', cannot install <string> |
scorpiox/libsxutil/sx_platform.c | See log output for details and retry |
1 |
validate_image: bad magic bytes for <string> |
scorpiox/libsxutil/sx_platform.c | See log output for details and retry |
1 |
validate_image: ffprobe failed (ret=<number>) for <string> |
scorpiox/libsxutil/sx_platform.c | See log output for details and retry |
1 |
validate_image: ffprobe not found, image validation will use magic bytes only |
scorpiox/libsxutil/sx_platform.c | Verify the resource exists and the path is correct |
1 |
FATAL: strdup OOM |
scorpiox/libsxutil/sx_platform.h | See log output for details and retry |
1 |
FATAL: strndup OOM |
scorpiox/libsxutil/sx_platform.h | See log output for details and retry |
1 |
procmon: HIGH active forks: <number> (possible fork leak!) |
scorpiox/libsxutil/sx_procmon.c | Check system resources (process limits) |
1 |
procmon: LEAK? <number> unreapped child processes |
scorpiox/libsxutil/sx_procmon.c | See log output for details and retry |
1 |
procmon: reaped <number> zombie processes! |
scorpiox/libsxutil/sx_procmon.c | See log output for details and retry |
1 |
procmon: reaped more than created! (created=<number> reaped=<number>) |
scorpiox/libsxutil/sx_procmon.c | See log output for details and retry |
1 |
ConPTY API not available (requires Windows 10 1809+) |
scorpiox/libsxutil/sx_pty.c | See log output for details and retry |
1 |
ConPTY not available on this Windows version |
scorpiox/libsxutil/sx_pty.c | See log output for details and retry |
1 |
CreatePipe (in) failed: <number> |
scorpiox/libsxutil/sx_pty.c | See log output for details and retry |
1 |
CreatePipe (out) failed: <number> |
scorpiox/libsxutil/sx_pty.c | See log output for details and retry |
1 |
CreateProcess failed: <number> (cmd='<string>') |
scorpiox/libsxutil/sx_pty.c | See log output for details and retry |
1 |
CreatePseudoConsole failed: 0x%08lX |
scorpiox/libsxutil/sx_pty.c | See log output for details and retry |
1 |
Failed to allocate attribute list |
scorpiox/libsxutil/sx_pty.c | Free up system memory or reduce workload |
1 |
forkpty failed: <string> |
scorpiox/libsxutil/sx_pty.c | Check system resources (process limits) |
1 |
pty_wasm: executing command synchronously: %.80s |
scorpiox/libsxutil/sx_pty.c | See log output for details and retry |
1 |
rewind: max checkpoints reached (<number>) |
scorpiox/libsxutil/sx_rewind.c | See log output for details and retry |
1 |
rewind: restore to checkpoint #<number> (was <number>) |
scorpiox/libsxutil/sx_rewind.c | See log output for details and retry |
1 |
fire_hooks_sync: event=<string> rc=<number> (fallback) |
scorpiox/libsxutil/sx_session.c | See log output for details and retry |
1 |
session: dir not found: <string> |
scorpiox/libsxutil/sx_session.c | Verify the resource exists and the path is correct |
1 |
session: failed to create dir: <string> |
scorpiox/libsxutil/sx_session.c | See log output for details and retry |
1 |
session: failed to create traffic dir: <string> |
scorpiox/libsxutil/sx_session.c | See log output for details and retry |
1 |
session: invalid id length <number>: <string> |
scorpiox/libsxutil/sx_session.c | See log output for details and retry |
1 |
session: too many collisions for <string> |
scorpiox/libsxutil/sx_session.c | See log output for details and retry |
1 |
session_cleanup: failed to delete session '<string>' |
scorpiox/libsxutil/sx_session.c | See log output for details and retry |
1 |
session_delete: failed to remove '<string>' (exit=<number>) |
scorpiox/libsxutil/sx_session.c | See log output for details and retry |
1 |
slashcmd: failed to allocate initial commands array |
scorpiox/libsxutil/sx_slashcmd.c | Free up system memory or reduce workload |
1 |
slashcmd: realloc failed for <number> commands |
scorpiox/libsxutil/sx_slashcmd.c | Free up system memory or reduce workload |
1 |
systemprompt: strdup failed for /etc/timezone |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for TZ backup, skipping tz override |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for UTC datetime string |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for cached prompt |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for cached reminder |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for datetime string |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for minimal reminder |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for prompt cache (non-fatal) |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for reminder cache |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for reminder cache (non-fatal) |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for timezone |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for timezone key |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for tz abbreviation |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
systemprompt: strdup failed for zoneinfo |
scorpiox/libsxutil/sx_systemprompt.c | See log output for details and retry |
1 |
session_name FAIL: buf=%p size=<number> (need <number>) |
scorpiox/libsxutil/sx_time.c | See log output for details and retry |
1 |
session_name FAIL: sx_localtime returned NULL |
scorpiox/libsxutil/sx_time.c | See log output for details and retry |
1 |
time: crypto random unavailable, using fallback for GUID |
scorpiox/libsxutil/sx_time.c | See log output for details and retry |
1 |
<string> |
scorpiox/libsxutil/sx_trace.c | See log output for details and retry |
1 |
=== END TRACE === |
scorpiox/libsxutil/sx_trace.c | See log output for details and retry |
1 |
=== RECENT TRACE ENTRIES === |
scorpiox/libsxutil/sx_trace.c | See log output for details and retry |
1 |
trace: tool_name suspiciously short at <string>: '<string>' (len=<number>) |
scorpiox/libsxutil/sx_trace.c | See log output for details and retry |
1 |
Distribution '<string>' not found |
scorpiox/libsxutil/sx_wsl.c | Verify the resource exists and the path is correct |
1 |
Distribution '<string>' registered successfully |
scorpiox/libsxutil/sx_wsl.c | See log output for details and retry |
1 |
Distribution '<string>' unregistered successfully |
scorpiox/libsxutil/sx_wsl.c | See log output for details and retry |
1 |
Failed to load Wsl |
scorpiox/libsxutil/sx_wsl.c | See log output for details and retry |
1 |
Failed to load wslapi.dll - WSL not installed? |
scorpiox/libsxutil/sx_wsl.c | See log output for details and retry |
1 |
Registering WSL distribution '<string>' from '<string>' |
scorpiox/libsxutil/sx_wsl.c | See log output for details and retry |
1 |
Unregistering WSL distribution '<string>' |
scorpiox/libsxutil/sx_wsl.c | See log output for details and retry |
1 |
WslLaunch failed: 0x%08lx |
scorpiox/libsxutil/sx_wsl.c | See log output for details and retry |
1 |
WslLaunchInteractive failed: 0x%08lx |
scorpiox/libsxutil/sx_wsl.c | See log output for details and retry |
1 |
WslRegisterDistribution failed: 0x%08lx |
scorpiox/libsxutil/sx_wsl.c | See log output for details and retry |
1 |
WslUnregisterDistribution failed: 0x%08lx |
scorpiox/libsxutil/sx_wsl.c | See log output for details and retry |
1 |
listen failed |
scorpiox/libtb4/tb4_test.c | See log output for details and retry |
1 |
msg_size <number> exceeds max (<number>), dropping |
scorpiox/libtb4/tb4_test.c | See log output for details and retry |
1 |
recv payload failed |
scorpiox/libtb4/tb4_test.c | See log output for details and retry |
1 |
[tb4] ERROR: |
scorpiox/libtb4/tb4_transport.c | See log output for details and retry |
1 |
--- <string> (<number> bytes) --- |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
--- Agent dir: <string> --- |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
<string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
=== Installing hooks from <string> === |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
=== Installing skills from <string> === |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
=== Installing templates from <string> === |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
=== Task instance setup === |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Agent: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Auto-detected solution: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
BUILD CACHE HIT — commit %.12s built but agent output missing, regenerating |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Building generator from source... |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Cached build for commit %.12s |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Cannot create hook script: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Cannot determine generator source commit |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Cannot proceed without generator binary |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Cannot proceed without generator source |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Cleaned <number> stale task instance(s) |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Clone failed (possibly symref error on overlayfs), retrying... |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Clone succeeded on retry |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Command exited with code <number> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Command killed by signal <number> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Concurrent clone completed — proceeding |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Concurrent clone completed — skipping re-clone |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Concurrent clone timed out — removing partial dir and cloning |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Contents of agent dir: |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Contents of output dir (<string>): |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
DRY RUN mode (SDK) — will clone and build, then launch with --dry-run |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Directories: |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
FORCE rebuild requested |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Failed to backup <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Failed to build generator from source |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Failed to build solution |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Failed to clone repository after retry |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Failed to setup task instance |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Failed to swap .csproj references |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Generator binary not found at <string> (source build failed) |
scorpiox/scorpiox-agent.c | Verify the resource exists and the path is correct |
1 |
Generator built for commit %.12s |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Generator source commit: %.12s |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Inferred DLL name: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Installed <number> skill(s) |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Installed <number> template(s) |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
No agents found in <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
No agents generated |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
No cached agents — will clone, build, and generate first |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
No cached generator binary, building from source... |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Remote commit: %.12s |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Removing partial/stale <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Repo: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Repository name must end with .Agents |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Running: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
SOURCE UPDATE — pulling to %.12s |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Skipping dotnet build (--no-build) |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Skipping git clone (--no-clone) |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Source dir exists but no .git/HEAD — waiting for concurrent clone... |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Swapping PackageReference → ProjectReference in <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Task instance ID: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Too many commands for event <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Too many hook events, skipping: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Unsafe characters in <string>: shell metacharacters not allowed |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Unsafe characters in prompt text: backticks and $() not allowed |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Unsafe skill name, skipping: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Use --list to see available agents |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Using cached agents |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Using cached build |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Valid repo at <string> — skipping clone |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[<string>] (<number> bytes, skipped) |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[<string>] (binary, skipped) |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[FAIL] copy <string> -> <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[HOOK] <string> (<number> commands) |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[OK] <string> -> <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[SKILL] <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[SKILL] <string> — copy failed |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[SKILL] <string> — not found at <string>, skipping |
scorpiox/scorpiox-agent.c | Verify the resource exists and the path is correct |
1 |
[TEMPLATE] <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[TEMPLATE] <string> — copy failed |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[TEMPLATE] <string> — not found at <string>, skipping |
scorpiox/scorpiox-agent.c | Verify the resource exists and the path is correct |
1 |
[TOOL-WAIT] <string> NOT found after 30s |
scorpiox/scorpiox-agent.c | Verify the resource exists and the path is correct |
1 |
[TOOL-WAIT] unsafe tool name, skipping: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[VAR] <string>=<string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[VAR] Invalid key name, skipping: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[VERIFY] <string> exists, <number> bytes |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[dry-run] Final command: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[sdk-tui] Executing: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
[sdk] Executing: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
agent_dir: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
agent_name is required (or use --list) |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
appending overrides (mode=<string>) |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
cache (builds/agents): <string><string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
exe_dir: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
exe_dir: failed to resolve |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
execlp failed: <string> |
scorpiox/scorpiox-agent.c | Verify the executable exists and is in PATH |
1 |
execlp failed: <string> — falling back to sx_system_safe() |
scorpiox/scorpiox-agent.c | Verify the executable exists and is in PATH |
1 |
git pull failed, trying fresh clone... |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
has_mcp: <string> (<string>) |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
instance_dir: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
instance_id: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
instances_base: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
sx_system_safe() failed: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
target: <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
task instances: <string><string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
| <string> |
scorpiox/scorpiox-agent.c | See log output for details and retry |
1 |
Error: missing 'command' in input JSON |
scorpiox/scorpiox-askuserpermission.c | See log output for details and retry |
1 |
Error: Failed to parse questions JSON |
scorpiox/scorpiox-askuserquestion.c | See log output for details and retry |
1 |
Error: No questions found in input |
scorpiox/scorpiox-askuserquestion.c | See log output for details and retry |
1 |
Error: Out of memory |
scorpiox/scorpiox-askuserquestion.c | Free up system memory or reduce workload |
1 |
Error: no console input handle |
scorpiox/scorpiox-askuserquestion.c | See log output for details and retry |
1 |
Error: no console output handle |
scorpiox/scorpiox-askuserquestion.c | See log output for details and retry |
1 |
Warning: stdout is not a console, ANSI may not work |
scorpiox/scorpiox-askuserquestion.c | See log output for details and retry |
1 |
Unknown shell: <string> (use: cmd, powershell, bash) |
scorpiox/scorpiox-bash.c | See log output for details and retry |
1 |
command too long |
scorpiox/scorpiox-bash.c | See log output for details and retry |
1 |
exec failed |
scorpiox/scorpiox-bash.c | Verify the executable exists and is in PATH |
1 |
no command provided |
scorpiox/scorpiox-bash.c | See log output for details and retry |
0 |
error: send failed |
scorpiox/scorpiox-beam.c | See log output for details and retry |
1 |
beam: warning: did not receive checksum |
scorpiox/scorpiox-beam.c | See log output for details and retry |
1 |
beam: warning: no response from receiver |
scorpiox/scorpiox-beam.c | See log output for details and retry |
1 |
beam: warning: unexpected response 0x<hex> |
scorpiox/scorpiox-beam.c | See log output for details and retry |
1 |
error: accept failed |
scorpiox/scorpiox-beam.c | See log output for details and retry |
1 |
error: cannot create '<string>': <string> |
scorpiox/scorpiox-beam.c | See log output for details and retry |
1 |
error: cannot resolve '<string>': <string> |
scorpiox/scorpiox-beam.c | See log output for details and retry |
1 |
error: failed to receive header |
scorpiox/scorpiox-beam.c | See log output for details and retry |
1 |
error: listen failed |
scorpiox/scorpiox-beam.c | See log output for details and retry |
1 |
error: out of memory |
scorpiox/scorpiox-beam.c | Free up system memory or reduce workload |
1 |
error: send failed at offset <number> |
scorpiox/scorpiox-beam.c | See log output for details and retry |
1 |
error: unknown command '<string>' |
scorpiox/scorpiox-beam.c | See log output for details and retry |
1 |
error: cannot load '<string>': <string> |
scorpiox/scorpiox-bmp2png.c | See log output for details and retry |
1 |
error: image too large for PNG stride |
scorpiox/scorpiox-bmp2png.c | See log output for details and retry |
1 |
error: resize failed |
scorpiox/scorpiox-bmp2png.c | See log output for details and retry |
0 |
error: -c requires a command |
scorpiox/scorpiox-busybox.c | See log output for details and retry |
1 |
%-12s FAILED (error <number>) |
scorpiox/scorpiox-busybox.c | See log output for details and retry |
1 |
error: <string>.exe not found in <string> |
scorpiox/scorpiox-busybox.c | Verify the resource exists and the path is correct |
1 |
error: busybox.exe not found |
scorpiox/scorpiox-busybox.c | Verify the resource exists and the path is correct |
1 |
error: busybox.exe not found in <string> |
scorpiox/scorpiox-busybox.c | Verify the resource exists and the path is correct |
1 |
error: cannot run busybox |
scorpiox/scorpiox-busybox.c | See log output for details and retry |
1 |
error: cannot run tool (error <number>) |
scorpiox/scorpiox-busybox.c | See log output for details and retry |
1 |
error: no Unix tools found |
scorpiox/scorpiox-busybox.c | See log output for details and retry |
1 |
error: no tools found in <string> |
scorpiox/scorpiox-busybox.c | See log output for details and retry |
1 |
Error: conversation ID required |
scorpiox/scorpiox-conv.c | See log output for details and retry |
1 |
Error: conversation not found: <string> |
scorpiox/scorpiox-conv.c | Verify the resource exists and the path is correct |
1 |
Error: failed to delete conversation: <string> |
scorpiox/scorpiox-conv.c | See log output for details and retry |
1 |
Unknown command: <string> |
scorpiox/scorpiox-conv.c | See log output for details and retry |
1 |
<string>error:<string> --add requires schedule and action |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> --bash requires \ |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> --pause requires an ID |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> --remove requires an ID |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> --resume requires an ID |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> --tmux requires <session> and \ |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> crontab is empty |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> invalid ID: '<string>' |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> invalid cron expression: '<string>' |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> missing action (--tmux or --bash) |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> no entry with ID <number> |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> out of memory |
scorpiox/scorpiox-cron.c | Free up system memory or reduce workload |
1 |
<string>error:<string> unknown action '<string>' (expected --tmux or --bash) |
scorpiox/scorpiox-cron.c | See log output for details and retry |
1 |
<string>error:<string> unknown command '<string>' |
scorpiox/scorpiox-cron.c | See log output for details and retry |
-1 |
✗ Cannot auto-install python3. Please run: apt install python3 python3-pip |
scorpiox/scorpiox-docs.c | See log output for details and retry |
1 |
--install Install missing dependencies |
scorpiox/scorpiox-docs.c | See log output for details and retry |
1 |
Error: Invalid format '<string>'. Use: text, html, or markdown |
scorpiox/scorpiox-docs.c | See log output for details and retry |
1 |
Install missing dependencies: |
scorpiox/scorpiox-docs.c | See log output for details and retry |
1 |
✗ Failed to install browser engine |
scorpiox/scorpiox-docs.c | See log output for details and retry |
1 |
✗ Failed to install chromium |
scorpiox/scorpiox-docs.c | See log output for details and retry |
1 |
✗ python3 not found |
scorpiox/scorpiox-docs.c | Verify the resource exists and the path is correct |
0 |
Warning: no replacements found in '<string>' |
scorpiox/scorpiox-editfile.c | See log output for details and retry |
1 |
Error: expected 'LINE <start>-<end>' at line <number>, got: <string> |
scorpiox/scorpiox-editfile.c | See log output for details and retry |
1 |
Error: failed to apply replacement at LINE <number>-<number> |
scorpiox/scorpiox-editfile.c | See log output for details and retry |
1 |
Error: out of memory joining lines |
scorpiox/scorpiox-editfile.c | Free up system memory or reduce workload |
1 |
Error: start line must be >= 1 (got <number>) |
scorpiox/scorpiox-editfile.c | See log output for details and retry |
-1 |
ERROR: SMTP send failed: <string> |
scorpiox/scorpiox-email.c | See log output for details and retry |
-1 |
ERROR: cannot create <string>: <string> |
scorpiox/scorpiox-email.c | See log output for details and retry |
-1 |
ERROR: failed to build message |
scorpiox/scorpiox-email.c | See log output for details and retry |
-1 |
ERROR: no recipients |
scorpiox/scorpiox-email.c | See log output for details and retry |
1 |
ERROR: queue requires -t <to> and -s <subject> |
scorpiox/scorpiox-email.c | See log output for details and retry |
1 |
ERROR: send requires -t <to> and -s <subject> |
scorpiox/scorpiox-email.c | See log output for details and retry |
1 |
ERROR: unknown command '<string>' |
scorpiox/scorpiox-email.c | See log output for details and retry |
1 |
WARN: cannot load <string> |
scorpiox/scorpiox-email.c | See log output for details and retry |
1 |
Error: --session is required |
scorpiox/scorpiox-emit-session.c | See log output for details and retry |
1 |
Error: --type is required |
scorpiox/scorpiox-emit-session.c | See log output for details and retry |
1 |
Unknown command: <string> |
scorpiox/scorpiox-emit-session.c | See log output for details and retry |
1 |
emit-session: JSON payload too large |
scorpiox/scorpiox-emit-session.c | See log output for details and retry |
1 |
emit-session: POST OK (<number>): <string> |
scorpiox/scorpiox-emit-session.c | See log output for details and retry |
1 |
emit-session: POST failed: <string> |
scorpiox/scorpiox-emit-session.c | See log output for details and retry |
1 |
emit-session: malloc failed for JSON payload |
scorpiox/scorpiox-emit-session.c | Free up system memory or reduce workload |
-1 |
Cannot create <string>: <string> |
scorpiox/scorpiox-executecurl.c | See log output for details and retry |
-1 |
Cannot get cwd: <string> |
scorpiox/scorpiox-executecurl.c | See log output for details and retry |
-1 |
fork failed: <string> |
scorpiox/scorpiox-executecurl.c | Check system resources (process limits) |
1 |
Session not found: <string> |
scorpiox/scorpiox-executecurl.c | Verify the resource exists and the path is correct |
1 |
error: --domain or --subdomain is required for <string> proxy type |
scorpiox/scorpiox-frp.c | See log output for details and retry |
1 |
error: --local is required |
scorpiox/scorpiox-frp.c | See log output for details and retry |
1 |
error: --name is required |
scorpiox/scorpiox-frp.c | See log output for details and retry |
1 |
error: --server is required |
scorpiox/scorpiox-frp.c | See log output for details and retry |
1 |
error: <string> |
scorpiox/scorpiox-frp.c | See log output for details and retry |
1 |
error: invalid response JSON |
scorpiox/scorpiox-google-models.c | See log output for details and retry |
1 |
warning: <string>: <string> |
scorpiox/scorpiox-google-models.c | See log output for details and retry |
0 |
Unknown command: <string> |
scorpiox/scorpiox-hook.c | See log output for details and retry |
1 |
Error: Cannot create <string>: <string> |
scorpiox/scorpiox-hook.c | See log output for details and retry |
1 |
Error: event name required |
scorpiox/scorpiox-hook.c | See log output for details and retry |
1 |
Hook '<string>' not found in <string>/ |
scorpiox/scorpiox-hook.c | Verify the resource exists and the path is correct |
1 |
Warning: overwriting existing hook: <string> |
scorpiox/scorpiox-hook.c | See log output for details and retry |
0 |
<string>Unknown command:<string> <string> |
scorpiox/scorpiox-host.c | See log output for details and retry |
1 |
<string>Error:<string> fork failed |
scorpiox/scorpiox-host.c | Check system resources (process limits) |
1 |
<string>Error:<string> listen failed |
scorpiox/scorpiox-host.c | See log output for details and retry |
1 |
<string>Error:<string> server returned <number> |
scorpiox/scorpiox-host.c | See log output for details and retry |
1 |
<string>Error:<string> server returned <number>: <string> |
scorpiox/scorpiox-host.c | See log output for details and retry |
1 |
<string>Error:<string> session '<string>' not found |
scorpiox/scorpiox-host.c | Verify the resource exists and the path is correct |
1 |
Unknown command: <string> |
scorpiox/scorpiox-imessage.c | See log output for details and retry |
1 |
chat.db: ✗ Not found (<string>) |
scorpiox/scorpiox-imessage.c | Verify the resource exists and the path is correct |
1 |
fork() failed: <string> |
scorpiox/scorpiox-imessage.c | Check system resources (process limits) |
1 |
osascript: ✗ Not found (sending disabled) |
scorpiox/scorpiox-imessage.c | Verify the resource exists and the path is correct |
1 |
sqlite3: ✗ Not found |
scorpiox/scorpiox-imessage.c | Verify the resource exists and the path is correct |
1 |
waitpid() failed: <string> |
scorpiox/scorpiox-imessage.c | See log output for details and retry |
1 |
⚠ Failed to notify tmux session '<string>' (rc=<number>) |
scorpiox/scorpiox-imessage.c | See log output for details and retry |
1 |
✗ Failed to create folder: <string> |
scorpiox/scorpiox-imessage.c | See log output for details and retry |
1 |
✗ Failed to create inbox dir: <string> (<string>) |
scorpiox/scorpiox-imessage.c | See log output for details and retry |
1 |
✗ Failed to send to <string> (exit <number>) |
scorpiox/scorpiox-imessage.c | See log output for details and retry |
1 |
✗ chat.db not found: <string> |
scorpiox/scorpiox-imessage.c | Verify the resource exists and the path is correct |
1 |
✗ osascript not found — macOS only |
scorpiox/scorpiox-imessage.c | Verify the resource exists and the path is correct |
1 |
<number> required tool(s) missing — aborting |
scorpiox/scorpiox-init.c | See log output for details and retry |
1 |
<string> copy failed |
scorpiox/scorpiox-init.c | See log output for details and retry |
1 |
<string> extract failed |
scorpiox/scorpiox-init.c | See log output for details and retry |
1 |
<string> install failed |
scorpiox/scorpiox-init.c | See log output for details and retry |
1 |
<string>: fork failed for service: <string> |
scorpiox/scorpiox-init.c | Check system resources (process limits) |
1 |
exec failed: <string>: <string> |
scorpiox/scorpiox-init.c | Verify the executable exists and is in PATH |
1 |
exec shell failed: <string> |
scorpiox/scorpiox-init.c | Verify the executable exists and is in PATH |
1 |
Error: <string> |
scorpiox/scorpiox-kql.c | See log output for details and retry |
0 |
Unknown command: <string> |
scorpiox/scorpiox-logger.c | See log output for details and retry |
1 |
Types: USER, ASSISTANT, TOOL, TOOL_RESULT, ERROR, INFO |
scorpiox/scorpiox-logger.c | See log output for details and retry |
1 |
no sessions found |
scorpiox/scorpiox-logger.c | See log output for details and retry |
1 |
session not found: <string> |
scorpiox/scorpiox-logger.c | Verify the resource exists and the path is correct |
-1 |
Error: initialize response missing 'result' |
scorpiox/scorpiox-mcp-httpclient.c | See log output for details and retry |
1 |
Error: JSON-RPC error |
scorpiox/scorpiox-mcp-httpclient.c | See log output for details and retry |
1 |
Error: call requires a tool name |
scorpiox/scorpiox-mcp-httpclient.c | See log output for details and retry |
1 |
Error: failed to serialize JSON-RPC request |
scorpiox/scorpiox-mcp-httpclient.c | See log output for details and retry |
1 |
Error: info requires a tool name |
scorpiox/scorpiox-mcp-httpclient.c | See log output for details and retry |
1 |
Error: no command specified |
scorpiox/scorpiox-mcp-httpclient.c | See log output for details and retry |
1 |
Error: no tools found |
scorpiox/scorpiox-mcp-httpclient.c | See log output for details and retry |
1 |
Error: response missing 'result' |
scorpiox/scorpiox-mcp-httpclient.c | See log output for details and retry |
1 |
Error: server returned invalid JSON |
scorpiox/scorpiox-mcp-httpclient.c | See log output for details and retry |
1 |
Error: tool '<string>' not found |
scorpiox/scorpiox-mcp-httpclient.c | Verify the resource exists and the path is correct |
1 |
Error: unknown command '<string>' |
scorpiox/scorpiox-mcp-httpclient.c | See log output for details and retry |
1 |
[mcp] error: |
scorpiox/scorpiox-mcp.c | See log output for details and retry |
-1 |
warning: too many repos (max <number>) |
scorpiox/scorpiox-mirror-git.c | See log output for details and retry |
1 |
warning: malformed machine entry, skipping |
scorpiox/scorpiox-mirror-git.c | See log output for details and retry |
0 |
Unknown command: <string> |
scorpiox/scorpiox-multiplexer.c | See log output for details and retry |
1 |
Empty key sequence. |
scorpiox/scorpiox-multiplexer.c | See log output for details and retry |
1 |
Failed to capture pane from session '<string>' |
scorpiox/scorpiox-multiplexer.c | See log output for details and retry |
1 |
Failed to create session |
scorpiox/scorpiox-multiplexer.c | See log output for details and retry |
1 |
Failed to create session '<string>' |
scorpiox/scorpiox-multiplexer.c | See log output for details and retry |
1 |
Failed to initialize terminal |
scorpiox/scorpiox-multiplexer.c | See log output for details and retry |
1 |
Failed to list panes for session '<string>' |
scorpiox/scorpiox-multiplexer.c | See log output for details and retry |
1 |
Failed to send keys to session '<string>' |
scorpiox/scorpiox-multiplexer.c | See log output for details and retry |
1 |
Out of memory |
scorpiox/scorpiox-multiplexer.c | Free up system memory or reduce workload |
1 |
Error: -s SECRET is required |
scorpiox/scorpiox-otp.c | See log output for details and retry |
1 |
Error: invalid Base32 secret |
scorpiox/scorpiox-otp.c | See log output for details and retry |
-1 |
Warning: Cannot copy plan to plans folder: <string> |
scorpiox/scorpiox-planmode.c | See log output for details and retry |
-1 |
Warning: Cannot copy plan to session: <string> |
scorpiox/scorpiox-planmode.c | See log output for details and retry |
-1 |
Warning: Cannot determine basename from: <string> |
scorpiox/scorpiox-planmode.c | See log output for details and retry |
-1 |
Warning: Session dir not found: <string> |
scorpiox/scorpiox-planmode.c | Verify the resource exists and the path is correct |
1 |
Error: --session ID required (shared fallback removed to prevent multi-session corruption) |
scorpiox/scorpiox-planmode.c | See log output for details and retry |
1 |
Error: --session requires an ID |
scorpiox/scorpiox-planmode.c | See log output for details and retry |
1 |
Error: Not in plan mode |
scorpiox/scorpiox-planmode.c | See log output for details and retry |
1 |
Unknown command: <string> |
scorpiox/scorpiox-planmode.c | See log output for details and retry |
1 |
Failed to execute podman |
scorpiox/scorpiox-podman.c | Verify the executable exists and is in PATH |
1 |
\033[31m[error]\033[0m |
scorpiox/scorpiox-podman.c | See log output for details and retry |
-1 |
Error: Cannot create destination: <string> |
scorpiox/scorpiox-printlogs.c | See log output for details and retry |
1 |
error: -k <api-key> is required |
scorpiox/scorpiox-pwshovertcp.c | See log output for details and retry |
1 |
error: WSAStartup failed (<number>) |
scorpiox/scorpiox-pwshovertcp.c | See log output for details and retry |
1 |
error: listen() failed |
scorpiox/scorpiox-pwshovertcp.c | See log output for details and retry |
1 |
Error: both start and end line numbers required |
scorpiox/scorpiox-readfile.c | See log output for details and retry |
1 |
Error: line numbers must be >= 1 |
scorpiox/scorpiox-readfile.c | See log output for details and retry |
1 |
Error: start_line (<number>) must be <= end_line (<number>) |
scorpiox/scorpiox-readfile.c | See log output for details and retry |
1 |
Error: Failed to load image '<string>' |
scorpiox/scorpiox-renderimage.c | See log output for details and retry |
1 |
Error: Failed to run ffmpeg |
scorpiox/scorpiox-renderimage.c | See log output for details and retry |
1 |
Error: ffmpeg not found. Please install ffmpeg. |
scorpiox/scorpiox-renderimage.c | Verify the resource exists and the path is correct |
1 |
Error: max_width must be a percentage between 1 and 100 |
scorpiox/scorpiox-renderimage.c | See log output for details and retry |
-1 |
Invalid checkpoint: <number> (must be 2..<number>) |
scorpiox/scorpiox-rewind.c | See log output for details and retry |
1 |
Error: cannot load <string> |
scorpiox/scorpiox-rewind.c | See log output for details and retry |
1 |
Error: cannot load session <string> |
scorpiox/scorpiox-rewind.c | See log output for details and retry |
1 |
Error: cannot parse stdin JSON |
scorpiox/scorpiox-rewind.c | See log output for details and retry |
1 |
Error: checkpoint <number> out of range (2..<number>) |
scorpiox/scorpiox-rewind.c | See log output for details and retry |
1 |
Test not found: <string> |
scorpiox/scorpiox-runtest.c | Verify the resource exists and the path is correct |
-1 |
error: CGDisplayCreateImage failed |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
-1 |
error: CGDisplayCreateImage failed for monitor <number> |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
-1 |
error: CGGetActiveDisplayList failed (<number>) |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
-1 |
error: EnumDisplayMonitors failed (<number>) |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
-1 |
error: XGetImage failed |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
-1 |
error: XGetImage failed for monitor <number> |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
-1 |
error: monitor index <number> out of range |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
1 |
error: BitBlt failed |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
1 |
error: BitBlt failed for virtual screen |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
1 |
error: CreateCompatibleBitmap failed |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
1 |
error: CreateCompatibleDC failed |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
1 |
error: GetDIBits failed |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
1 |
error: cannot get screen DC |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
1 |
error: cannot get screen DC for '<string>' |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
1 |
error: failed to enumerate monitors |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
1 |
error: monitor <number> not found (available: 0-<number>) |
scorpiox/scorpiox-screenshot.c | Verify the resource exists and the path is correct |
1 |
error: no monitors found |
scorpiox/scorpiox-screenshot.c | See log output for details and retry |
1 |
error: out of memory |
scorpiox/scorpiox-screenshot.c | Free up system memory or reduce workload |
1 |
Error: CreatePipe failed (<number>) |
scorpiox/scorpiox-sdk.c | See log output for details and retry |
1 |
Error: CreateProcess failed (<number>) |
scorpiox/scorpiox-sdk.c | See log output for details and retry |
1 |
Error: Failed to create directories |
scorpiox/scorpiox-sdk.c | See log output for details and retry |
1 |
Error: No prompt provided. Use: <string> \ |
scorpiox/scorpiox-sdk.c | See log output for details and retry |
1 |
Error: sx exited (code <number>) before session started |
scorpiox/scorpiox-sdk.c | See log output for details and retry |
1 |
[sdk] WARN: sx_generate_session_name failed (rc=<number>), using fallback instance ID: <string> |
scorpiox/scorpiox-sdk.c | See log output for details and retry |
1 |
[sdk] WARN: sx_generate_session_name failed (rc=<number>, size=<number>), using fallback session ID |
scorpiox/scorpiox-sdk.c | See log output for details and retry |
1 |
\033[31m[serve]\033[0m CreateProcess failed: <number> |
scorpiox/scorpiox-sdk.c | See log output for details and retry |
1 |
\033[31m[serve]\033[0m CreateProcess(ConPTY) failed: <number> |
scorpiox/scorpiox-sdk.c | See log output for details and retry |
1 |
\033[33m[warn]\033[0m --image ignored in --local mode |
scorpiox/scorpiox-sdk.c | See log output for details and retry |
-1 |
✗ Cannot auto-install python3. Please run: apt install python3 python3-pip |
scorpiox/scorpiox-search.c | See log output for details and retry |
1 |
--install Install missing dependencies |
scorpiox/scorpiox-search.c | See log output for details and retry |
1 |
Error: Invalid format '<string>'. Use: text, json, or markdown |
scorpiox/scorpiox-search.c | See log output for details and retry |
1 |
Error: Search query is required |
scorpiox/scorpiox-search.c | See log output for details and retry |
1 |
Install missing dependencies: |
scorpiox/scorpiox-search.c | See log output for details and retry |
1 |
✗ Failed to install browser engine |
scorpiox/scorpiox-search.c | See log output for details and retry |
1 |
✗ Failed to install chromium |
scorpiox/scorpiox-search.c | See log output for details and retry |
1 |
✗ python3 not found |
scorpiox/scorpiox-search.c | Verify the resource exists and the path is correct |
1 |
Alias init failed — no alias resolution |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
DKIM init failed — sending unsigned |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
DKIM signing enabled: s=<string> d=<string> |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
DLL: DKIM init failed — sending unsigned |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
DLL: IMAP init failed |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
DLL: SMTP init failed |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
DLL: email server started successfully |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
DLL: email server stopped |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
DLL: server not initialized |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
DLL: starting email server (domain=<string>, smtp=<number>, sub=<number>, imap=<number>) |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
DLL: stopping email server |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
Daemonizing... |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
Email aliases loaded from <string> |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
Entering main loop |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
Failed to daemonize |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
IMAP init failed |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
Outbound queue enabled: <string> |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
Queue init failed — external delivery disabled |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
SMTP init failed |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
Shutting down... |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
TUI init failed — falling back to daemon mode |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
domain: <string> |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
maildir: <string> |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
mode: <string> |
scorpiox/scorpiox-server-email.c | See log output for details and retry |
1 |
Conflict: '<string>.py' found in both '<string>' (winner) and '<string>' |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
DLL: listen() failed |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
DLL: server stopped |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
DLL: stopping server |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Error: No accessible script directories |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Error: WSAStartup failed |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Error: git clone failed for <string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Failed to allocate request buffer (<number> KB) |
scorpiox/scorpiox-server.c | Free up system memory or reduce workload |
1 |
Fallback script exited with code <number> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Fallback: <string> -> _fallback<string> in <string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Favicon: decoded <number> bytes from base64 |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Favicon: invalid base64 data |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Favicon: loaded <number> bytes from <string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
IP blocked: <string> (not in whitelist) |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
IP whitelist: invalid entry '<string>' (skipped) |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
JWT validation enabled (cookie='<string>', issuer='<string>', audience='<string>') |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
JWT: payload too large for jwt_raw (<number> bytes) |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
JWT: signature verification failed |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
No accessible script directories |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
OTP: rejected unsafe account parameter |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
OTP: rejected unsafe secret parameter |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
SSE streaming: '<string>' (forwarding chunks to client) |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Script '<string>' exited with code <number> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Script '<string>' failed to exec (<string>) |
scorpiox/scorpiox-server.c | Verify the executable exists and is in PATH |
1 |
Script '<string>' killed (SIGKILL/OOM, exit 137) |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Script '<string>' killed by signal (abnormal exit) |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Server stopped |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Streaming mode: '<string>' (content_length=% |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Streaming script '<string>' exited with code <number> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Streaming: failed to allocate response buffer |
scorpiox/scorpiox-server.c | Free up system memory or reduce workload |
1 |
Streaming: realloc failed for resp_buf |
scorpiox/scorpiox-server.c | Free up system memory or reduce workload |
1 |
Streaming: select failed: <string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Warning: conflict: <string>.py -> <string> (wins) vs <string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Warning: dir not accessible: <string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[<string>] <string><string><string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy-git] CreatePipe failed: <number> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy-git] CreateProcess failed: <number> cmd='%.120s' |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy-git] fork() failed: <string> |
scorpiox/scorpiox-server.c | Check system resources (process limits) |
1 |
[deploy-git] git_get_remote_head failed: rc=<number> buf='%.120s' |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy-git] git_get_remote_head hash sanity fail: len=<number> buf='%.80s' |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy-git] pipe() failed: <string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] ERROR: git pull failed |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] WARNING: pull failed, using existing code |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] cloning <string> (branch: <string>) -> <string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] existing clone found at <string>, pulling latest... |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] failed to get local HEAD |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] failed to get remote HEAD |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] git clone failed |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] git mode: repo=<string> branch=<string> poll=<number>s dir=<string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] git pull failed |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] new commit detected: %.8s -> %.8s, pulling... |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] pull failed, continuing with existing code |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[deploy] updated to %.8s, serving new code |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[mcp] excluded tool: <string> (matches pattern: <string>) |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[mcp] registered tool: <string> (<number> params) from <string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
[mcp] tools/call: <string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
accept() failed: <number> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
accept() failed: <string> |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
fork() failed: <string> |
scorpiox/scorpiox-server.c | Check system resources (process limits) |
1 |
listen() failed |
scorpiox/scorpiox-server.c | See log output for details and retry |
1 |
Error: --session required for add |
scorpiox/scorpiox-skills.c | See log output for details and retry |
1 |
Error: --session required for remove |
scorpiox/scorpiox-skills.c | See log output for details and retry |
1 |
Error: --session requires an ID |
scorpiox/scorpiox-skills.c | See log output for details and retry |
1 |
Error: out of memory |
scorpiox/scorpiox-skills.c | Free up system memory or reduce workload |
1 |
Error: out of memory growing skills array |
scorpiox/scorpiox-skills.c | Free up system memory or reduce workload |
1 |
Error: skill name required |
scorpiox/scorpiox-skills.c | See log output for details and retry |
1 |
Unknown command: <string> |
scorpiox/scorpiox-skills.c | See log output for details and retry |
1 |
nudge <loaded1,loaded2> Print nudge message if any missing |
scorpiox/scorpiox-skills.c | See log output for details and retry |
1 |
out of memory |
scorpiox/scorpiox-sshpass.c | Free up system memory or reduce workload |
1 |
ssh not found, attempting auto-install... |
scorpiox/scorpiox-sshpass.c | Verify the resource exists and the path is correct |
1 |
Error: Failed to generate system prompt |
scorpiox/scorpiox-systemprompt.c | See log output for details and retry |
1 |
Error loading tasks |
scorpiox/scorpiox-tasks.c | See log output for details and retry |
1 |
Error: --session ID required (shared fallback removed to prevent multi-session corruption) |
scorpiox/scorpiox-tasks.c | See log output for details and retry |
1 |
Error: --session requires an ID |
scorpiox/scorpiox-tasks.c | See log output for details and retry |
1 |
Error: Maximum steps reached for task <number> |
scorpiox/scorpiox-tasks.c | See log output for details and retry |
1 |
Error: Maximum tasks reached |
scorpiox/scorpiox-tasks.c | See log output for details and retry |
1 |
Error: Step <number> not found in task <number> |
scorpiox/scorpiox-tasks.c | Verify the resource exists and the path is correct |
1 |
Error: Task <number> not found |
scorpiox/scorpiox-tasks.c | Verify the resource exists and the path is correct |
1 |
Error: task <number> not found |
scorpiox/scorpiox-tasks.c | Verify the resource exists and the path is correct |
1 |
Unknown command: <string> |
scorpiox/scorpiox-tasks.c | See log output for details and retry |
0 |
error: no receiver found on any interface |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
error: BENCH_START failed |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
error: BIOCSETF: <string> |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
error: BIOCSETIF(<string>): <string> |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
error: META failed |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
error: bad META |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
error: create: <string> |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
error: need root (sudo) |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
error: no MAC for <string> |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
error: no active Thunderbolt interfacehint: plug in a Thunderbolt cable |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
error: no peer found |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
unknown: '<string>' |
scorpiox/scorpiox-thunderbolt4.c | See log output for details and retry |
1 |
Error: --enter requires <project> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: --kill requires <session> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: --new requires <project> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: --on-exit must be keep|kill|banner |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: --peek requires <session> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: --restart requires <session> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: --resume requires <session> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: --send requires <session> <message> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: --watch requires <session> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: failed to create session '<string>' |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: failed to kill session '<string>' |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: failed to send to session '<string>' |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Error: session '<string>' not found or no pane content |
scorpiox/scorpiox-tmux.c | Verify the resource exists and the path is correct |
1 |
Failed to initialize terminal |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
cleaned up worktree for session '<string>' |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
created worktree: <string> (branch: <string>)<string> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
failed to create worktree for <string>/<string>, falling back to main dir |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
git worktree remove failed (rc=<number>), trying manual cleanup |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
removed worktree: <string><string> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
resolved project '<string>' at <string>/<string> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
session '<string>' using worktree: <string><string> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
stale worktree found (remote), removing: <string> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
stale worktree found, removing: <string> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
windows: auto-detected project '<string>' at <string> |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
windows: using cwd '<string>' for project '<string>' |
scorpiox/scorpiox-tmux.c | See log output for details and retry |
1 |
Failed to clear traffic captures. |
scorpiox/scorpiox-traffic.c | See log output for details and retry |
1 |
Failed to exec python3: <string> |
scorpiox/scorpiox-traffic.c | Verify the executable exists and is in PATH |
127 |
Failed to exec <string>: <string> |
scorpiox/scorpiox-traffic.c | Verify the executable exists and is in PATH |
1 |
Error: Conversation is empty |
scorpiox/scorpiox-transcript.c | See log output for details and retry |
1 |
Error: Failed to initialize terminal |
scorpiox/scorpiox-transcript.c | See log output for details and retry |
1 |
Error: Failed to load conversation '<string>' |
scorpiox/scorpiox-transcript.c | See log output for details and retry |
1 |
Cannot access image cache |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
Error: --privileged requires running as root |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
Error: --update requires image name |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
Error: Cannot reach <string> |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
Failed to allocate stack |
scorpiox/scorpiox-unshare.c | Free up system memory or reduce workload |
1 |
Failed to create cgroup <string>: <string> |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
Failed to download '<string>' |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
Failed to extract '<string>' |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
Failed to extract rootfs |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
Failed to setup UID/GID maps |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
Invalid memory limit: <string> (use e.g. 40G, 512M) |
scorpiox/scorpiox-unshare.c | Free up system memory or reduce workload |
1 |
Malformed layers |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
No digest in index.json |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
No layers in manifest |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
No sha256 digest |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
Too many volume mounts (max <number>) |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
WARNING: --privileged mode active -- user namespace isolation is DISABLED |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
bind mount rootfs failed: <string> |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
chdir / failed: <string> |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
clone() failed: <string> |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
exec slirp4netns failed: <string> |
scorpiox/scorpiox-unshare.c | Verify the executable exists and is in PATH |
1 |
mount MS_PRIVATE failed: <string> |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
pipe() failed: <string> |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
pivot_root failed: <string> |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
proc mount all attempts failed: <string> |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
slirp4netns failed after 3 attempts. Aborting. |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
slirp4netns not found. Install it: apt install slirp4netns (or equivalent) |
scorpiox/scorpiox-unshare.c | Verify the resource exists and the path is correct |
1 |
tar extraction failed (exit <number>) |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
1 |
volume mount <string> -> <string> failed: <string> |
scorpiox/scorpiox-unshare.c | See log output for details and retry |
127 |
exec failed: <string> |
scorpiox/scorpiox-unshare.c | Verify the executable exists and is in PATH |
1 |
Error: --session is required |
scorpiox/scorpiox-usage.c | See log output for details and retry |
1 |
Unknown command: <string> |
scorpiox/scorpiox-usage.c | See log output for details and retry |
-1 |
Error: failed to install <string> |
scorpiox/scorpiox-vault-git.c | See log output for details and retry |
-1 |
Error: git not found |
scorpiox/scorpiox-vault-git.c | Verify the resource exists and the path is correct |
-1 |
Error: gzip not found |
scorpiox/scorpiox-vault-git.c | Verify the resource exists and the path is correct |
-1 |
Error: tar not found |
scorpiox/scorpiox-vault-git.c | Verify the resource exists and the path is correct |
-1 |
Error: unknown distro '<string>', cannot install <string> |
scorpiox/scorpiox-vault-git.c | See log output for details and retry |
-1 |
Error: zip not found |
scorpiox/scorpiox-vault-git.c | Verify the resource exists and the path is correct |
1 |
Error: git clone failed (exit <number>) |
scorpiox/scorpiox-vault-git.c | See log output for details and retry |
1 |
Error: mkdtemp failed |
scorpiox/scorpiox-vault-git.c | See log output for details and retry |
1 |
Error: unknown format '<string>' |
scorpiox/scorpiox-vault-git.c | See log output for details and retry |
1 |
Warning: could not detect distro, skipping auto-install |
scorpiox/scorpiox-vault-git.c | See log output for details and retry |
1 |
error: <string> |
scorpiox/scorpiox-vertex-models.c | See log output for details and retry |
1 |
--bios requires --disk |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
CR0=0x%llx CR3=0x%llx CR4=0x%llx EFER=0x%llx |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
CS: sel=0x%x base=0x%llx limit=0x%x type=0x%x l=<number> db=<number> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
Expected: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
Failed to download SeaBIOS from <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
Initramfs too large |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM API version mismatch: got <number>, expected <number> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM entry failure: hardware_entry_failure_reason=0x%llx |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM internal error: suberror=<number> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_CREATE_IRQCHIP failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_CREATE_PIT2 failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_CREATE_VCPU failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_CREATE_VM failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_GET_SREGS failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_GET_VCPU_MMAP_SIZE failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_RUN failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_SET_CPUID2 failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_SET_REGS (real mode) failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_SET_REGS failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_SET_SREGS (real mode) failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_SET_SREGS failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
KVM_SET_USER_MEMORY_REGION (BIOS) failed: <string> |
scorpiox/scorpiox-vm.c | Free up system memory or reduce workload |
1 |
KVM_SET_USER_MEMORY_REGION (slot 0) failed: <string> |
scorpiox/scorpiox-vm.c | Free up system memory or reduce workload |
1 |
KVM_SET_USER_MEMORY_REGION failed: <string> |
scorpiox/scorpiox-vm.c | Free up system memory or reduce workload |
1 |
Kernel too large for guest memory |
scorpiox/scorpiox-vm.c | Free up system memory or reduce workload |
1 |
Kernel too small (%zu bytes) |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
Max <number> disks |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
Minimum 64 MB |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
Not a Linux kernel (bad magic: 0x%08x) |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
Not found: <string> |
scorpiox/scorpiox-vm.c | Verify the resource exists and the path is correct |
1 |
Out of memory |
scorpiox/scorpiox-vm.c | Free up system memory or reduce workload |
1 |
RAX=0x%llx RBX=0x%llx RCX=0x%llx RDX=0x%llx |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
SHA256 verification failed for <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
Setup size (<number>) >= kernel size (%zu) |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
TUNSETIFF failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
Too many disks |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
Unknown net mode: <string> (use 'tap') |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
cpio_add_entry failed for <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
fork failed |
scorpiox/scorpiox-vm.c | Check system resources (process limits) |
1 |
fork failed: <string> |
scorpiox/scorpiox-vm.c | Check system resources (process limits) |
1 |
mmap BIOS ROM failed |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
mmap guest memory failed: <string> |
scorpiox/scorpiox-vm.c | Free up system memory or reduce workload |
1 |
mmap vcpu run failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
pipe failed |
scorpiox/scorpiox-vm.c | See log output for details and retry |
1 |
waitpid failed: <string> |
scorpiox/scorpiox-vm.c | See log output for details and retry |
127 |
Failed to launch <string>: <string> |
scorpiox/scorpiox-voice.c | See log output for details and retry |
1 |
Error: Invalid format '<string>'. Use: json, markdown, text |
scorpiox/scorpiox-websearch.c | See log output for details and retry |
1 |
[websearch] Error: CreatePipe failed |
scorpiox/scorpiox-websearch.c | See log output for details and retry |
1 |
[websearch] Error: CreateProcessA failed |
scorpiox/scorpiox-websearch.c | See log output for details and retry |
0 |
Unknown command: <string> |
scorpiox/scorpiox-whatsapp.c | See log output for details and retry |
0 |
✗ Bridge binary not found (will download on first use) |
scorpiox/scorpiox-whatsapp.c | Verify the resource exists and the path is correct |
1 |
Bridge at <string>: --version failed (pre-1.1.0 binary?), treating as stale |
scorpiox/scorpiox-whatsapp.c | See log output for details and retry |
1 |
Bridge at <string>: version <string> < minimum <string>, needs update |
scorpiox/scorpiox-whatsapp.c | See log output for details and retry |
1 |
Deleting stale bridge binary: <string> |
scorpiox/scorpiox-whatsapp.c | See log output for details and retry |
1 |
Error: --session required |
scorpiox/scorpiox-whatsapp.c | See log output for details and retry |
1 |
Error: ffmpeg conversion failed. Is ffmpeg installed? |
scorpiox/scorpiox-whatsapp.c | See log output for details and retry |
1 |
\xe2\x9c\x97 Failed to create inbox dir: <string> (<string>) |
scorpiox/scorpiox-whatsapp.c | See log output for details and retry |
1 |
\xe2\x9c\x97 Failed to create message folder: <string> (<string>) |
scorpiox/scorpiox-whatsapp.c | See log output for details and retry |
1 |
⚠ Bridge error: <string> |
scorpiox/scorpiox-whatsapp.c | See log output for details and retry |
1 |
⚠ Failed to notify tmux session '<string>' (rc=<number>) |
scorpiox/scorpiox-whatsapp.c | See log output for details and retry |
-1 |
Error: Failed to download '<string>' |
scorpiox/scorpiox-wsl.c | See log output for details and retry |
-1 |
[update] SHA256 checksum not available — aborting update for security |
scorpiox/scorpiox-wsl.c | See log output for details and retry |
1 |
Error: --update requires image name |
scorpiox/scorpiox-wsl.c | See log output for details and retry |
1 |
Failed to download '<string>' |
scorpiox/scorpiox-wsl.c | See log output for details and retry |
1 |
Too many volume mounts (max <number>) |
scorpiox/scorpiox-wsl.c | See log output for details and retry |
1 |
[update] Aborting update: SHA256 verification failed |
scorpiox/scorpiox-wsl.c | See log output for details and retry |
1 |
[update] Invalid SHA256 hash format |
scorpiox/scorpiox-wsl.c | See log output for details and retry |
1 |
[update] No update available or download failed |
scorpiox/scorpiox-wsl.c | See log output for details and retry |
1 |
[update] Update failed, rolling back |
scorpiox/scorpiox-wsl.c | See log output for details and retry |
1 |
wsl.exe not found at <string> |
scorpiox/scorpiox-wsl.c | Verify the resource exists and the path is correct |
1 |
<string>: <string> -> <string> |
scorpiox/sx.c | See log output for details and retry |
1 |
<string>: failed to create new session |
scorpiox/sx.c | See log output for details and retry |
1 |
BG: sx_bgtask_start failed for cmd: <string> |
scorpiox/sx.c | See log output for details and retry |
1 |
BG: triggered! g_bash_active=<number>, g_agent_bash_running=<number> |
scorpiox/sx.c | See log output for details and retry |
1 |
Ctrl+B pressed: wants_background set to true |
scorpiox/sx.c | See log output for details and retry |
1 |
Failed to create session |
scorpiox/sx.c | See log output for details and retry |
1 |
Failed to initialize agent |
scorpiox/sx.c | See log output for details and retry |
1 |
Failed to initialize slash command system |
scorpiox/sx.c | See log output for details and retry |
1 |
Failed to initialize terminal |
scorpiox/sx.c | See log output for details and retry |
1 |
HEAP_DIAG [<string>]: malloc(16) FAILED! sbrk(4096)=%p errno=<number> |
scorpiox/sx.c | Free up system memory or reduce workload |
1 |
HEAP_DIAG [<string>]: sbrk=%p heap=<number> (%.1fMB) |
scorpiox/sx.c | See log output for details and retry |
1 |
Unknown binding language: <string> |
scorpiox/sx.c | See log output for details and retry |
1 |
Warning: Could not resume session, starting new |
scorpiox/sx.c | See log output for details and retry |
1 |
agent: cancelled by ESC key |
scorpiox/sx.c | See log output for details and retry |
1 |
bash: PTY start failed for '<string>' |
scorpiox/sx.c | See log output for details and retry |
1 |
bash: cancelled by user |
scorpiox/sx.c | See log output for details and retry |
1 |
bash: executing '<string>' |
scorpiox/sx.c | See log output for details and retry |
1 |
bash: failed to reinit terminal |
scorpiox/sx.c | See log output for details and retry |
1 |
bash: suspending terminal for graphics command |
scorpiox/sx.c | See log output for details and retry |
1 |
clear: failed to create new session |
scorpiox/sx.c | See log output for details and retry |
1 |
clear: new session <string> |
scorpiox/sx.c | See log output for details and retry |
1 |
context_resize: <number> -> <number> |
scorpiox/sx.c | See log output for details and retry |
1 |
editor: failed to reinit terminal |
scorpiox/sx.c | See log output for details and retry |
1 |
editor: launching external editor (Ctrl+X) |
scorpiox/sx.c | See log output for details and retry |
1 |
editor: loaded <number> chars from editor |
scorpiox/sx.c | See log output for details and retry |
1 |
editor: mkstemp failed: <string> |
scorpiox/sx.c | See log output for details and retry |
1 |
emit-session: fork failed: <string> |
scorpiox/sx.c | Check system resources (process limits) |
1 |
interrupt: buffer full, dropping message (cur=<number> new=<number> max=<number>) |
scorpiox/sx.c | See log output for details and retry |
1 |
main: <string>=*** |
scorpiox/sx.c | See log output for details and retry |
1 |
main: <string>=<string> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: -e ignored (no '='): <string> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: -e override: <string>=<string> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: Ctrl+C, shutting down |
scorpiox/sx.c | See log output for details and retry |
1 |
main: ENTER pressed, g_input.buf='%.80s' len=<number> cursor=<number> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: MCP enabled with <number> tools |
scorpiox/sx.c | See log output for details and retry |
1 |
main: agentless hook returned rc=<number> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: agentless mode complete, exiting with rc=<number> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: auto-sending piped input: %.80s |
scorpiox/sx.c | See log output for details and retry |
1 |
main: callback fired (final) slot=<number> msg='%.80s' |
scorpiox/sx.c | See log output for details and retry |
1 |
main: callback fired slot=<number> repeats_left=<number> msg='%.80s' |
scorpiox/sx.c | See log output for details and retry |
1 |
main: cleanup, freeing agent |
scorpiox/sx.c | See log output for details and retry |
1 |
main: cwd=<string> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: dry-run complete, exiting (headless) |
scorpiox/sx.c | See log output for details and retry |
1 |
main: emit_session=<number> headless=<number> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: exe_dir=<string> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: failed to initialize agent |
scorpiox/sx.c | See log output for details and retry |
1 |
main: failed to reinit terminal after interactive tool |
scorpiox/sx.c | See log output for details and retry |
1 |
main: handling compact request from agent |
scorpiox/sx.c | See log output for details and retry |
1 |
main: handling interactive request |
scorpiox/sx.c | See log output for details and retry |
1 |
main: interactive tool request, cmd='%.80s' |
scorpiox/sx.c | See log output for details and retry |
1 |
main: keepalive auto-sending message |
scorpiox/sx.c | See log output for details and retry |
1 |
main: resume picker selected '<string>' |
scorpiox/sx.c | See log output for details and retry |
1 |
main: session ended, id=<string> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: startup version=<string> pid=<number> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: user message submitted, len=<number> |
scorpiox/sx.c | See log output for details and retry |
1 |
main: user_message=%p '%.80s' |
scorpiox/sx.c | See log output for details and retry |
1 |
main: using paste buffer, len=<number> |
scorpiox/sx.c | See log output for details and retry |
1 |
mkstemp failed for script output: <string> |
scorpiox/sx.c | See log output for details and retry |
1 |
rewind: failed to reinit terminal |
scorpiox/sx.c | See log output for details and retry |
1 |
rewind: running '<string>' |
scorpiox/sx.c | See log output for details and retry |
1 |
script: PTY start failed for /<string> |
scorpiox/sx.c | See log output for details and retry |
1 |
script: started async PTY for /<string> |
scorpiox/sx.c | See log output for details and retry |
1 |
session: created <string> |
scorpiox/sx.c | See log output for details and retry |
1 |
session: loaded <number> messages from <string> |
scorpiox/sx.c | See log output for details and retry |
1 |
session: no conversation to resume in <string> |
scorpiox/sx.c | See log output for details and retry |
1 |
session: resuming <string> |
scorpiox/sx.c | See log output for details and retry |
1 |
slashcmd: loaded <number> commands |
scorpiox/sx.c | See log output for details and retry |
1 |
slashcmd: rejecting unsafe script args: %.100s |
scorpiox/sx.c | See log output for details and retry |
1 |
transcript: failed to reinit terminal |
scorpiox/sx.c | See log output for details and retry |
1 |
keepalive: ACTIVE (R=<number> W=<number>) |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: disabled |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: disabled at runtime |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: enabled at runtime |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: freed (pings=<number>, hits=<number>, misses=<number>) |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: init (trigger=<number>s, max_tries=<number>, max_pings=<number>) |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: ping #<number> cache HIT (R=<number>) — timer reset |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: ping #<number> cache MISS (<number>/<number>) — paused |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: ping #<number> cache MISS (<number>/<number>) — will retry |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: ping dispatched via main loop |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: requesting ping at <number>s (trigger=<number>s, ping <number>/<number>) |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: started |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: stopped |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
1 |
keepalive: stopping... |
scorpiox/sx_cache_keepalive.c | See log output for details and retry |
-1 |
sx_dll: cannot chdir to '<string>': <string> |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
slashcmd: rejecting unsafe script args: %.100s |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_chdir: <string>: <string> |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_chdir: changed to <string> |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: MCP enabled with <number> tools |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: base64 encoding failed for: <string> |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: callback[<number>] completed |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: callback[<number>] fired: %.60s |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: enqueue buffer full |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: enqueued message #<number> (<number> bytes total) |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: event callback cleared |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: event callback registered |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: exe_dir overridden to: <string> |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: exec command '<string>' args='<string>' type=<number> |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: failed to create session |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: failed to initialize agent |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: image encoded: <number> bytes, <string>, base64_len=<number> |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: image message rejected (agent busy or queue full) |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: initialization complete |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: initializing version=<string> |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: interrupt buffer full, dropping message |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: interrupt message set: %.80s |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: interrupt requested |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: loaded <number> slash commands |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: message has image (mime=<string>, data_len=<number>) |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: message rejected (agent busy or queue full) |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: processing <number> enqueued message(s) |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: processing message: %.80s |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: session created: <string> |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: shutdown complete |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: shutting down |
scorpiox/sx_dll.c | See log output for details and retry |
1 |
sx_dll: sx_send called: %.80s |
scorpiox/sx_dll.c | See log output for details and retry |
-1 |
sx_wasm: cannot chdir to '<string>': <string> |
scorpiox/sx_dll_wasm.c | See log output for details and retry |
1 |
sx_wasm: failed to create session |
scorpiox/sx_dll_wasm.c | See log output for details and retry |
1 |
sx_wasm: failed to initialize agent |
scorpiox/sx_dll_wasm.c | See log output for details and retry |
1 |
sx_wasm: initialized successfully |
scorpiox/sx_dll_wasm.c | See log output for details and retry |
1 |
sx_wasm: initializing version=<string> |
scorpiox/sx_dll_wasm.c | See log output for details and retry |
1 |
sx_wasm: session created: <string> |
scorpiox/sx_dll_wasm.c | See log output for details and retry |
1 |
sx_wasm: shutdown complete |
scorpiox/sx_dll_wasm.c | See log output for details and retry |
1 |
sx_wasm: shutting down |
scorpiox/sx_dll_wasm.c | See log output for details and retry |
1 |
sx_wasm: sx_send: %.80s |
scorpiox/sx_dll_wasm.c | See log output for details and retry |
1 |
term: SetConsoleMode failed for VT processing (err=<number>) |
scorpiox/sx_term.c | See log output for details and retry |
1 |
term: cell buf: <number> cells x <number> bytes = <number> bytes each |
scorpiox/sx_term.c | See log output for details and retry |
1 |
term: failed to allocate cell buffers (front=%p back=%p) |
scorpiox/sx_term.c | Free up system memory or reduce workload |
1 |
term: malloc output buf (<number> bytes) failed |
scorpiox/sx_term.c | Free up system memory or reduce workload |
1 |
term: output buf allocated (<number> bytes) |
scorpiox/sx_term.c | Free up system memory or reduce workload |
1 |
term: stdin is not a TTY (pipe input not drained?) |
scorpiox/sx_term.c | See log output for details and retry |
1 |
term: stdout is not a TTY |
scorpiox/sx_term.c | See log output for details and retry |
1 |
[alias] catch-all resolved: <string> → <string> |
scorpiox/sxmail_alias.c | See log output for details and retry |
1 |
[alias] empty source or dest in aliases |
scorpiox/sxmail_alias.c | See log output for details and retry |
1 |
[alias] invalid line (no ':'): <string> |
scorpiox/sxmail_alias.c | See log output for details and retry |
1 |
[alias] loaded <number> entries from <string> |
scorpiox/sxmail_alias.c | See log output for details and retry |
1 |
[alias] max entries (<number>) reached, ignoring rest |
scorpiox/sxmail_alias.c | See log output for details and retry |
1 |
[alias] out of memory |
scorpiox/sxmail_alias.c | Free up system memory or reduce workload |
1 |
[alias] resolved: <string> → <string> |
scorpiox/sxmail_alias.c | See log output for details and retry |
1 |
[dkim] <string>: <string> (-0x%04X) |
scorpiox/sxmail_dkim.c | See log output for details and retry |
1 |
[dkim] failed to load key: <string> |
scorpiox/sxmail_dkim.c | See log output for details and retry |
1 |
[dkim] initialized: selector=<string> domain=<string> key=<string> |
scorpiox/sxmail_dkim.c | See log output for details and retry |
1 |
[dkim] key is not RSA: <string> |
scorpiox/sxmail_dkim.c | See log output for details and retry |
1 |
[dkim] out of memory |
scorpiox/sxmail_dkim.c | Free up system memory or reduce workload |
1 |
[dkim] output buffer too small (<number> need, <number> have) |
scorpiox/sxmail_dkim.c | See log output for details and retry |
1 |
[dkim] signed message (<number> bytes, sig=<number> bytes) |
scorpiox/sxmail_dkim.c | See log output for details and retry |
1 |
[filter] <string>: discarding (header:<string> contains \ |
scorpiox/sxmail_filter.c | See log output for details and retry |
1 |
[filter] <string>: → folder:<string> (header:<string> contains \ |
scorpiox/sxmail_filter.c | See log output for details and retry |
1 |
[filter] invalid rule for <string>: <string> |
scorpiox/sxmail_filter.c | See log output for details and retry |
1 |
[imap] <string> logged in as <string> |
scorpiox/sxmail_imap.c | See log output for details and retry |
1 |
[imap] bind(<number>) failed: <string> |
scorpiox/sxmail_imap.c | See log output for details and retry |
1 |
[imap] listen(<number>) failed: <string> |
scorpiox/sxmail_imap.c | See log output for details and retry |
1 |
[imap] max clients reached |
scorpiox/sxmail_imap.c | See log output for details and retry |
1 |
[imap] rejected unsafe username from <string>: <string> |
scorpiox/sxmail_imap.c | See log output for details and retry |
1 |
[imap] shutdown complete |
scorpiox/sxmail_imap.c | See log output for details and retry |
1 |
[maildir] created folder <string> for <string> |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] deleted folder <string> for <string> |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] delivered <number> bytes to <string>/<string> |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] expunged: <string>/<string> |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] failed to create dir: <string> (<string>) |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] failed to delete folder: <string> |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] failed to remove <string>: <string> |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] message discarded by filter for <string> |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] message not found: <string>/<string> |
scorpiox/sxmail_maildir.c | Verify the resource exists and the path is correct |
1 |
[maildir] move tmp→new failed: <string> |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] recursive delete failed: <string> (<string>) |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] rejected empty username |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] rejected unsafe folder name: <string> |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[maildir] rejected username with unsafe char: <string> |
scorpiox/sxmail_maildir.c | See log output for details and retry |
1 |
[queue] DATA not accepted by <string>: <number> <string> |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] MAIL FROM rejected by <string>: <number> <string> |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] MX for <string>: <string> (pref <number>) |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] RCPT TO rejected by <string>: <number> <string> |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] bad greeting from <string>: <number> |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] bounce delivered to <string> |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] bounced <string> → <string> after <number> retries |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] could not deliver bounce to <string> |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] delivered <string> → <string> |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] delivered to <string> via MX <string><string> |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] enqueued message for <string> (<number> bytes) |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] initialized: dir=<string> domain=<string> |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] invalid recipient (no @): <string> |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[queue] out of memory |
scorpiox/sxmail_queue.c | Free up system memory or reduce workload |
1 |
[queue] retry <number>/<number> for <string> → <string> (next in <number>s) |
scorpiox/sxmail_queue.c | See log output for details and retry |
1 |
[smtp] <string> << <string> |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] <string> DATA start from=<string> rcpt_count=<number> |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] <string> EHLO <string> |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] <string> MAIL FROM: <string> |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] <string> RCPT TO: <string> |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] DATA complete from <string> (<number> bytes) |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] DKIM signing failed, delivering unsigned |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] DKIM-signed message (<number> → <number> bytes) |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] bind(<number>) failed: <string> |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] listen(<number>) failed: <string> |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] no listeners active |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] rejected unsafe username from <string>: <string> |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] rejecting: unsafe local part <string> |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[smtp] rejecting: user <string> not found |
scorpiox/sxmail_smtp.c | Verify the resource exists and the path is correct |
1 |
[smtp] shutdown complete |
scorpiox/sxmail_smtp.c | See log output for details and retry |
1 |
[tui] failed to initialize terminal |
scorpiox/sxmail_tui.c | See log output for details and retry |
-1 |
CreateNamedPipe failed: <number> |
scorpiox/sxmux_session.c | See log output for details and retry |
-1 |
CreateProcess failed: <number> |
scorpiox/sxmux_session.c | See log output for details and retry |
-1 |
Session not found: <string> |
scorpiox/sxmux_session.c | Verify the resource exists and the path is correct |