在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用debug-job
星标3
分支3
更新时间2026年3月3日 18:19
Debug and diagnose issues with DIRAC jobs
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Debug and diagnose issues with DIRAC jobs
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | debug-job |
| description | Debug and diagnose issues with DIRAC jobs |
| version | 1.2 |
| tags | ["dirac","job","debugging","troubleshooting"] |
| tools | ["get_job","search_jobs","get_job_status_summary","get_job_sandboxes","set_job_statuses","reschedule_jobs"] |
Identify the problem job(s):
get_job to retrieve details.search_jobs with appropriate conditions.Analyze the job status:
Status and MinorStatus for the current state.ApplicationStatus for error messages.Site to see where the job ran/is running.LastUpdateTime to detect stalled jobs.Inspect sandboxes (for failed or errored jobs):
get_job_sandboxes to retrieve sandbox download URLs.StdErr in the output sandbox for error details.StdOut for application output.Diagnose based on status:
| MinorStatus | Likely Cause | Action |
|---|---|---|
Application Finished With Errors | Script error | Check StdErr in output sandbox |
Input Data Not Available | Missing input files | Verify input sandbox files exist |
Stalled | Job exceeded wall time or lost heartbeat | Increase MaxCPUTime or check site |
Exception During Execution | Runtime crash | Review application logs |
Downloading Input Sandbox Failed | Upload issue | Re-upload input files |
LastUpdateTime to estimate progress.set_job_statuses(job_ids=[...], status="Killed")reschedule_jobs(job_ids=[...])get_job_status_summary to see the big picture.Find recent failures:
search_jobs(conditions=[
{"parameter": "Status", "operator": "eq", "value": "Failed"}
], per_page=20)
Find jobs at a specific site:
search_jobs(conditions=[
{"parameter": "Site", "operator": "eq", "value": "LCG.CERN.ch"}
])
Find stalled jobs:
search_jobs(conditions=[
{"parameter": "MinorStatus", "operator": "eq", "value": "Stalled"}
])