用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HKUDS/OpenSpace --skill unified-deliverable-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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 职业分类
正在显示 SKILL.md
| name | unified-deliverable-workflow |
| description | Generate spreadsheets, diagrams, and PDF reports with iteration budgeting and error recovery |
This skill provides a structured pattern for creating multiple document artifacts (spreadsheets, diagrams, PDF reports) in a single workflow with explicit iteration budgeting and robust error handling.
Use this workflow when you need to:
Default Allocation (adjust based on task complexity):
| Phase | Deliverable | Iterations | Validation |
|---|---|---|---|
| 1 | Spreadsheet (.xlsx) | 8-10 | File exists, readable, correct structure |
| 2 | Diagram (.png) | 8-10 | File exists, viewable, correct dimensions |
| 3 | PDF Report (.pdf) | 8-10 | File exists, downloadable, proper formatting |
| Buffer | Error recovery | 4-6 | Retry failed phases |
Total recommended budget: 30-36 iterations
Before generating any deliverables:
/workspace/ as base directory!pip install if neededprojectname_deliverable.ext)# Quick sandbox test
print("SANDBOX_OK")
print(f"WORKSPACE_PATH:/workspace")
If this fails, use run_shell as fallback for file operations.
Define your spreadsheet structure before coding:
Using openpyxl (recommended for .xlsx):
# Install if needed
# !pip install openpyxl
from openpyxl import Workbook
from openpyxl.styles import Font, PatternFill, Alignment
wb = Workbook()
ws = wb.active
ws.title = "Data"
# Header row with styling
headers = ["Item", "Description", "Value", "Status"]
for col, header in enumerate(headers, 1):
cell = ws.cell(row=1, column=col, value=header)
cell.font = Font(bold=True)
cell.fill = PatternFill(start_color="CCCCCC", end_color="CCCCCC", fill_type="solid")
cell.alignment = Alignment(horizontal="center")
# Data rows
data = [
["Item 1", "Description 1", 100, "Complete"],
["Item 2", "Description 2", 200, "Pending"],
]
for row_idx, row_data in enumerate(data, 2):
for col_idx, value in enumerate(row_data, 1):
ws.cell(row=row_idx, column=col_idx, value=value)
# Auto-adjust column widths
for column in ws.columns:
max_length = 0
column_letter = column[0].column_letter
for cell in column:
try:
((cell.value)) > max_length:
max_length = ((cell.value))
:
adjusted_width = (max_length + , )
ws.column_dimensions[column_letter].width = adjusted_width
output_path =
wb.save(output_path)
()
()
execute_code_sandbox
code: <your spreadsheet code>
language: python
Validation checklist:
run_shell command: ls -lh /workspace/*.xlsx| Error | Recovery Action |
|---|---|
| Library not found | Add !pip install openpyxl at code start |
| '[ERROR] unknown error' | Retry once, then try simpler code structure |
| File not created | Check path is /workspace/ not ./ or /tmp/ |
| Permission denied | Ensure no file lock from previous execution |
If 2 consecutive failures: Skip to Phase 2 and return later with reduced scope.
| Type | Library | Best For |
|---|---|---|
| Flowchart | graphviz or matplotlib | Process flows, decision trees |
| Layout/Diagram | matplotlib | Physical layouts, workcell designs |
| Network/Topology | networkx + matplotlib | System architecture |
| Simple shapes | PIL/Pillow | Basic boxes, arrows, labels |
Using matplotlib for layout diagrams:
# Install if needed
# !pip install matplotlib
import matplotlib.pyplot as plt
import matplotlib.patches as patches
fig, ax = plt.subplots(figsize=(12, 8))
ax.set_xlim(0, 100)
ax.set_ylim(0, 80)
ax.set_aspect('equal')
# Add components (example: workcell layout)
components = [
{"label": "Robot", "x": 30, "y": 40, "w": 20, "h": 15, "color": "lightblue"},
{"label": "Conveyor", "x": 60, "y": 35, "w": 30, "h": 10, "color": "lightgreen"},
{"label": "Safety Zone", "x": 10, "y": 10, "w": 80, "h": 60, "color": "none", "border": "red"},
]
for comp in components:
rect = patches.Rectangle(
(comp[], comp[]),
comp[],
comp[],
linewidth=,
edgecolor= comp.get() ,
facecolor=comp[] comp[] != ,
linestyle= comp.get()
)
ax.add_patch(rect)
ax.text(
comp[] + comp[]/,
comp[] + comp[]/,
comp[],
ha=,
va=,
fontsize=,
fontweight=
)
ax.axis()
plt.title(, fontsize=, fontweight=, pad=)
plt.tight_layout()
output_path =
plt.savefig(output_path, dpi=, bbox_inches=)
()
()
execute_code_sandbox
code: <your diagram code>
language: python
Validation checklist:
run_shell command: ls -lh /workspace/*.png| Error | Recovery Action |
|---|---|
| Backend unknown error | Retry with simplified diagram (fewer elements) |
| Font rendering issues | Use default matplotlib fonts, avoid custom fonts |
| Memory issues | Reduce figure size or DPI |
| Import errors | Add !pip install matplotlib pillow at start |
If 2 consecutive failures: Create a simpler placeholder diagram and move to Phase 3.
Before generating PDF, collect:
Using reportlab for professional reports:
# Install if needed
# !pip install reportlab
from reportlab.lib import colors
from reportlab.lib.pagesizes import letter
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, Table, TableStyle, Image
from reportlab.lib.styles import getSampleStyleSheet, ParagraphStyle
from reportlab.lib.units import inch
def create_pdf_report(output_path, spreadsheet_path, diagram_path):
doc = SimpleDocTemplate(output_path, pagesize=letter)
styles = getSampleStyleSheet()
story = []
# Title
title_style = ParagraphStyle('CustomTitle', parent=styles['Heading1'],
fontSize=18, spaceAfter=30, alignment=1)
story.append(Paragraph("Project Deliverables Report", title_style))
story.append(Spacer(1, 0.3*inch))
# Executive Summary
story.append(Paragraph("Executive Summary", styles['Heading2']))
story.append(Paragraph("This report summarizes the project deliverables including hardware selection, layout design, and implementation recommendations.", styles['Normal']))
story.append(Spacer(1, 0.2*inch))
# Spreadsheet Reference Section
story.append(Paragraph("Hardware Selection Summary", styles['Heading2']))
story.append(Paragraph(f"See: {spreadsheet_path}", styles['Normal']))
# Sample data table
data = [
['Component', , ],
[, , ],
[, , ],
[, , ]
]
table = Table(data, colWidths=[*inch, *inch, *inch])
table.setStyle(TableStyle([
(, (, ), (-, ), colors.grey),
(, (, ), (-, ), colors.whitesmoke),
(, (, ), (-, -), ),
(, (, ), (-, ), ),
(, (, ), (-, -), , colors.black)
]))
story.append(table)
story.append(Spacer(, *inch))
story.append(Paragraph(, styles[]))
story.append(Paragraph(, styles[]))
story.append(Spacer(, *inch))
:
img = Image(diagram_path, width=*inch, height=*inch)
story.append(img)
story.append(Spacer(, *inch))
:
story.append(Paragraph(, styles[]))
story.append(Paragraph(, styles[]))
recommendations = [
,
,
]
i, rec (recommendations, ):
story.append(Paragraph(, styles[]))
doc.build(story)
()
()
create_pdf_report(
,
,
)
execute_code_sandbox
code: <your PDF code>
language: python
Validation checklist:
run_shell command: ls -lh /workspace/*.pdf| Error | Recovery Action |
|---|---|
| Font errors | Use standard fonts (Helvetica, Arial, Courier) |
| Image embed fails | Reference diagram path in text instead |
| Unknown error | Simplify report structure, remove images |
| Path issues | Hardcode absolute /workspace/ paths |
If failures persist: Generate a text-only PDF with basic structure.
run_shell
command: ls -lh /workspace/*.xlsx /workspace/*.png /workspace/*.pdf
run_shell
command: file /workspace/*.xlsx /workspace/*.png /workspace/*.pdf
Ensure each deliverable has ARTIFACT_PATH: prefix in execution output for proper download handling.
/workspace/filename.ext./filename.ext, /tmp/filename.ext, or relative pathsprojectname_deliverabletype.ext| Tool | Primary Use | Fallback |
|---|---|---|
| execute_code_sandbox | Run Python code | run_shell with python -c |
| read_file | Verify file content | run_shell cat/head |
| run_shell | Check file existence | execute_code_sandbox with os.path |
# Unified deliverable generator - minimal viable version
# Run in execute_code_sandbox
# ===== SPREADSHEET =====
from openpyxl import Workbook
wb = Workbook()
ws = wb.active
ws.append(["Item", "Value", "Status"])
ws.append(["Component A", 100, "OK"])
wb.save("/workspace/data.xlsx")
print("ARTIFACT_PATH:/workspace/data.xlsx")
# ===== DIAGRAM =====
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(8, 6))
ax.text(0.5, 0.5, "Diagram Placeholder", ha='center', va='center', fontsize=16)
ax.axis('off')
plt.savefig("/workspace/diagram.png", dpi=100)
print("ARTIFACT_PATH:/workspace/diagram.png")
# ===== PDF =====
from reportlab.lib.pagesizes import letter
from reportlab.platypus import SimpleDocTemplate, Paragraph
from reportlab.lib.styles import getSampleStyleSheet
doc = SimpleDocTemplate("/workspace/report.pdf", pagesize=letter)
styles = getSampleStyleSheet()
story = [Paragraph("Report", styles['Heading1']),
Paragraph("Generated successfully.", styles['Normal'])]
doc.build(story)
print("ARTIFACT_PATH:/workspace/report.pdf")
execute_code_sandbox - Run Python code for all deliverable generationread_file - Verify file content (type: xlsx, png, pdf)run_shell - Check file existence, size, and integritycreate_file - For simple text-based deliverables if needed| Pitfall | Solution |
|---|---|
| Exhausting budget on Phase 1 | Set hard iteration limit per phase (max 12) |
| Workspace path confusion | Always use absolute /workspace/ paths |
| Repeated unknown errors | Simplify code, reduce library dependencies |
| Missing ARTIFACT_PATH | Always print prefix for each deliverable |
| PDF created but not downloadable | Verify ARTIFACT_PATH is on its own line |
| Diagram too complex | Start with basic shapes, add detail only if time permits |
A successful execution should produce:
/workspace/ARTIFACT_PATH: prefix