用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HKUDS/OpenSpace --skill zero-iteration-failure-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Incremental audio production with duration mismatch handling, adaptive stem extension, and pre-mix alignment verification
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow
Incremental audio production with duration alignment handling, per-stem verification, and adaptive extension strategies
基于 SOC 职业分类
| name | zero-iteration-failure-analysis |
| description | Identify and handle agent failures with 0 iterations as pre-execution system issues |
This skill provides a workflow for detecting and responding to agent failures that occur before any iterations are executed. These failures indicate system-level problems rather than task execution issues.
Use this skill when analyzing agent execution results and you observe:
A zero-iteration failure is confirmed when ALL of the following are true:
[ ] Iteration count = 0
[ ] Tool usage count = 0
[ ] No conversation log beyond initial instruction
[ ] Error/self-report indicates failure before execution began
| Indicator | Failure Type | Investigation Level |
|---|---|---|
| 0 iterations, 0 tools | Pre-execution | System-level |
| 1+ iterations, error mid-task | Execution | Agent-level |
| 1+ iterations, wrong output | Reasoning | Agent-level |
def is_zero_iteration_failure(execution_result):
"""Check if failure occurred before any agent iterations."""
return (
execution_result.get('iterations', 0) == 0 and
execution_result.get('tool_calls', []) == [] and
execution_result.get('artifacts', []) == []
)
Examine any error message or self-report for clues:
IF zero-iteration failure detected:
→ Escalate to SYSTEM investigation
→ Do NOT attempt agent-level debugging
→ Check: environment, dependencies, prompt format, resource limits
ELSE:
→ Proceed with standard agent failure analysis
Record the failure with appropriate categorization:
failure_analysis:
type: zero-iteration
severity: high
investigation_level: system
agent_debugging_appropriate: false
recommended_actions:
- Check execution environment health
- Verify prompt/input formatting
- Review system logs for initialization errors
- Validate resource availability
| Cause | Symptoms | Resolution |
|---|---|---|
| Environment crash | Immediate error, no context | Restart environment, check dependencies |
| Prompt parse failure | Error mentions instruction format | Validate input schema, fix formatting |
| Resource exhaustion | Timeout or memory error before start | Increase limits, optimize initialization |
| Permission denied | Access error on startup | Check file/system permissions |
Immediately flag for system-level review when:
EXECUTION SUMMARY:
- Iterations: 0
- Tools Used: None
- Artifacts: None
- Status: Failed
- Error: "Agent initialization failed: missing required config"
ANALYSIS:
✓ Zero-iteration failure detected
✓ Pre-execution failure mode confirmed
→ Action: Escalate to system investigation
→ Do NOT debug agent reasoning (no reasoning occurred)
→ Check: config loading, environment variables, initialization sequence
❌ Don't attempt to debug agent reasoning when 0 iterations occurred ❌ Don't assume the task instructions were unclear (agent never saw them) ❌ Don't retry with modified prompts before checking system health ❌ Don't categorize as "agent performance issue"
When logging failures, Tag zero-iteration failures distinctly:
{
"failure_id": "xyz123",
"failure_mode": "pre_execution",
"iteration_count": 0,
"requires_system_review": true,
"agent_actionable": false
}