← 返回 Skills 市场
243
总下载
0
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install aicnic-jobs-admin-task-status
功能描述
Query task status from the AICNIC job management system. Use this skill when the user needs to check task status, retrieve job information, or mentions a job...
使用说明 (SKILL.md)
Task Status Query
Overview
This skill is used to query the status of a specific task in the AICNIC job management system.
Usage
When the user needs to query a task status:
- Obtain the
jobIdparameter provided by the user - Call the API to retrieve job information
- Parse and return the value of the
jobStatefield
API Call
Request Format
GET http://www.aicnic.cn/jobs/api/jobs/infos/hpcai28/{jobId}
Curl Example
curl -X GET "http://www.aicnic.cn/jobs/api/jobs/infos/hpcai28/{jobId}" -H "accept: */*"
Response Format
The API returns a JSON response:
{
"code": 0,
"message": null,
"data": {
"id": 20452,
"jobId": "15000",
"jobState": "COMPLETED",
...
}
}
Parsing Rules
Extract the following fields from the API response:
| Field Path | Description |
|---|---|
data.jobState |
Task status (e.g., COMPLETED, RUNNING, PENDING, etc.) |
data.jobId |
Job ID |
data.jobName |
Job name |
data.startTime |
Start time |
data.endTime |
End time |
Workflow
- Receive Parameter: Get the jobId provided by the user
- Build URL:
http://www.aicnic.cn/jobs/api/jobs/infos/hpcai28/{jobId} - Send Request: Send a GET request using curl or an HTTP client
- Parse Response: Parse the JSON response and extract the
data.jobStatefield - Return Result: Display the task status to the user
Example
Query task status for jobId 15000
curl -X GET "http://www.aicnic.cn/jobs/api/jobs/infos/hpcai28/15000" -H "accept: */*"
Response:
{
"code": 0,
"message": null,
"data": {
"jobId": "15000",
"jobState": "COMPLETED",
"endTime": "2024-12-09T09:30:10"
}
}
Parsed Result: Task status is COMPLETED
Common Task States
COMPLETED- CompletedRUNNING- RunningPENDING- PendingFAILED- FailedCANCELLED- Cancelled
安全使用建议
This skill appears to do exactly what it says: call the AICNIC jobs API and return data.jobState. Before installing, consider whether you trust the remote endpoint (www.aicnic.cn) and its handling of any job identifiers you send. Note the SKILL.md uses plain HTTP (not HTTPS) — if jobIds or job metadata are sensitive, unencrypted transport could expose them on the network. If the target API should require authentication in your environment, verify how credentials would be provided and whether the skill would need changes to support secure access.
功能分析
Type: OpenClaw Skill
Name: aicnic-jobs-admin-task-status
Version: 1.0.1
The skill is a straightforward integration for querying job statuses from the AICNIC job management system via a public API (http://www.aicnic.cn). The instructions in SKILL.md clearly define the workflow for fetching and parsing job metadata based on a user-provided jobId, with no evidence of malicious intent, data exfiltration, or unauthorized execution.
能力评估
Purpose & Capability
Name and description match the runtime instructions: the SKILL.md explicitly calls the AICNIC jobs API and extracts jobState. There are no unrelated env vars, binaries, or config paths requested.
Instruction Scope
Instructions are narrowly scoped to taking a jobId, calling the specified API, and parsing data.jobState. One security/privacy note: the SKILL.md uses plain http:// (not HTTPS), which means requests and responses (including jobId and status) would be sent unencrypted over the network — this may expose sensitive job identifiers or metadata in transit.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk or installed, which is the lowest-risk install model.
Credentials
The skill requests no environment variables, credentials, or config paths, which is proportionate for a simple status-querying skill.
Persistence & Privilege
always is false and the skill does not request elevated or persistent privileges; autonomous invocation is allowed (platform default) and is not combined with other concerning privileges.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install aicnic-jobs-admin-task-status - 安装完成后,直接呼叫该 Skill 的名称或使用
/aicnic-jobs-admin-task-status触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
- Updated documentation from Chinese to English for broader accessibility.
- Improved clarity and consistency in usage instructions and workflow.
- No changes to code or functionality; documentation only.
v1.0.0
Initial release of the task-status skill:
- Enables querying task status in the AICNIC Jobs Management System using jobId.
- Fetches and parses job details from the AICNIC API, focusing on the jobState field.
- Provides clear workflow and API usage instructions.
- Returns key information including task status, jobId, job name, start time, and end time.
- Supports common job states: COMPLETED, RUNNING, PENDING, FAILED, CANCELLED.
元数据
常见问题
task-status 是什么?
Query task status from the AICNIC job management system. Use this skill when the user needs to check task status, retrieve job information, or mentions a job... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 243 次。
如何安装 task-status?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install aicnic-jobs-admin-task-status」即可一键安装,无需额外配置。
task-status 是免费的吗?
是的,task-status 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
task-status 支持哪些平台?
task-status 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 task-status?
由 bylikai(@bylikai)开发并维护,当前版本 v1.0.1。
推荐 Skills