一键导入
sales-pivot-analysis-improved
Deterministic workflow for combining workbook and PDF data into a validated result workbook with derived sales metrics.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Deterministic workflow for combining workbook and PDF data into a validated result workbook with derived sales metrics.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Offline Trivy and CVSS extraction workflow for deterministic dependency auditing in OpenHands.
Lightweight guidance for combining spreadsheet and PDF inputs into a deterministic result workbook.
Lightweight guidance for extracting quarterly financial metrics into a fixed JSON output.
Deterministic workflow for extracting quarterly financial metrics and computing derived percentages from local SEC-style inputs.
Minimal procedural guidance for auditing a dependency lockfile and writing the tutorial report format.
基于 SOC 职业分类
| name | sales-pivot-analysis-improved |
| description | Deterministic workflow for combining workbook and PDF data into a validated result workbook with derived sales metrics. |
Use this procedure for small workbook-generation tasks that combine spreadsheet data and PDF-extracted reference values.
income.xlsx first to identify the city and revenue rows.population.pdf and extract the city-to-population mapping.Summary sheet with:
CombinedData sheet with one row per city.CombinedData and Summary.openpyxl or pandas are installed inside the task runtime.pip, apt, or any other package installer.If spreadsheet libraries are missing, use built-in Python modules:
income.xlsx with zipfile and xml.etree.ElementTree by reading xl/worksheets/sheet1.xml.population.pdf with strings input/population.pdf because the bundled PDF stores the population lines as plain text.Suggested extraction pattern for the workbook:
python3 - <<'PY'
from zipfile import ZipFile
import xml.etree.ElementTree as ET
with ZipFile('input/income.xlsx') as zf:
root = ET.fromstring(zf.read('xl/worksheets/sheet1.xml'))
print(root.tag)
PY
Suggested extraction pattern for the PDF:
strings input/population.pdf | grep -E 'Austin|Chicago|Denver|Seattle'