Install
openclaw skills install job-statusHPC/AI job status query skill. Fetches job status information by jobId from a specific API endpoint and parses the jobState field from the JSON response. **Use this skill when**: (1) Need to query HPC/AI computing job status (2) User provides a jobId parameter (3) Need to get job status (e.g., RUNNING, COMPLETED, FAILED) (4) Need to monitor computing job progress
openclaw skills install job-statusThis skill queries HPC/AI computing job status information. It accesses the API with the provided jobId, retrieves detailed job information, and extracts the key status field.
http://www.aicnic.cn/jobs/api/jobs/infos/hpcai28/{jobId}data.jobStateUser: Query job status, jobId is 15000
Assistant: Querying job 15000 status...
{
"jobId": "15000"
}
{
"jobId": "15000"
}
User: Query status for jobs 15000, 15001, 15002
User: Check if job 15000 is completed
Common jobState values:
www.aicnic.cnSuccessful response:
{
"success": true,
"jobId": "15000",
"status": "COMPLETED",
"details": {
"jobState": "COMPLETED",
"endTime": "2024-12-09T09:30:10",
"id": 20452
},
"message": "Job query successful",
"timestamp": "2026-03-19T06:30:00Z"
}
Error response:
{
"success": false,
"jobId": "99999",
"error": "Job not found or access failed",
"message": "API returned error or network connection failed",
"timestamp": "2026-03-19T06:30:30Z"
}