/install job-status
Job Status Query Skill
🎯 Function Overview
This 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.
🔧 Technical Implementation
- API Endpoint:
http://www.aicnic.cn/jobs/api/jobs/infos/hpcai28/{jobId} - Response Format: JSON
- Key Field:
data.jobState - Error Handling: Network timeout, API errors, JSON parsing errors
📋 Quick Start
Method 1: Natural Language Call
User: Query job status, jobId is 15000
Assistant: Querying job 15000 status...
Method 2: Parameterized Call
{
"jobId": "15000"
}
🚀 Usage Scenarios
Scenario 1: Query Single Job Status
{
"jobId": "15000"
}
Scenario 2: Batch Job Status Query
User: Query status for jobs 15000, 15001, 15002
Scenario 3: Monitor Job Completion
User: Check if job 15000 is completed
🔍 Return Status Description
Common jobState values:
- PENDING: Job is queued
- RUNNING: Job is running
- COMPLETED: Job completed successfully
- FAILED: Job execution failed
- CANCELLED: Job was cancelled
- TIMEOUT: Job timed out
⚠️ Notes
- jobId Format: Must be a valid job ID
- Network Connectivity: Must be able to access
www.aicnic.cn - API Limits: Be aware of API rate limits
- Error Handling: Network errors or invalid jobId will return appropriate error messages
📊 Example Responses
Successful 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"
}
🔗 Related Skills
- System Monitoring: Can be combined with system monitoring skills
- Notification Alerts: Can trigger notifications on job status changes
- Log Recording: Record job status history
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install job-status - After installation, invoke the skill by name or use
/job-status - Provide required inputs per the skill's parameter spec and get structured output
What is job-status?
HPC/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. **U... It is an AI Agent Skill for Claude Code / OpenClaw, with 154 downloads so far.
How do I install job-status?
Run "/install job-status" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is job-status free?
Yes, job-status is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does job-status support?
job-status is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created job-status?
It is built and maintained by bylikai (@bylikai); the current version is v1.0.1.