Install
openclaw skills install @dataify-server/dataify-task-statusopenclaw skills install @dataify-server/dataify-task-statusQuery the documented Dataify /task_status endpoint for one task. The API key is read only from DATAIFY_API_TOKEN and is never included in output.
DATAIFY_API_TOKEN is set. Do not ask the user to paste a key into chat or pass it on the command line.scripts/get_task_status.py --task-id TASK_ID to call the endpoint. Use --dry-run first only when a request preview is needed; it redacts the API key.处理中: the task has not completed.成功: the status script immediately sends GET /download with the same task ID and type=json, then prints the JSON result.失败: the task finished with an error.python3 -X utf8 scripts/get_task_status.py --task-id "TASK_ID"
To verify parameters without making a request:
python3 scripts/get_task_status.py --task-id "TASK_ID" --dry-run
Read references/task_status_api.md for endpoint parameters, response fields, and HTTP error behavior.
python3 scripts/get_task_status.py --task-id "TASK_ID" --dry-run
export for macOS/Linux shells, $env: for Windows PowerShell, or set for Windows Command Prompt). Show other platforms or persistent setup only when detection is ambiguous or the user asks.DATAIFY_API_TOKEN is present; never print its value. If verification succeeds, continue the original task without asking the user to repeat it..env unless the execution path explicitly loads it, and ensure .env is ignored by version control.