원클릭으로
analyze-xlsx
Analyze an ingested .xlsx document for formula errors, suspected typos, outliers, missing totals, and dead references
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyze an ingested .xlsx document for formula errors, suspected typos, outliers, missing totals, and dead references
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | analyze-xlsx |
| description | Analyze an ingested .xlsx document for formula errors, suspected typos, outliers, missing totals, and dead references |
| model | deepseek/deepseek-v4-flash |
| tier | flash |
| inputs | [{"name":"document_id","type":"str","required":true,"description":"Prisma Document.id of an .xlsx that was ingested via Phase 33"},{"name":"max_issues","type":"int","required":false,"description":"Soft cap on number of issues returned (default 20)"}] |
| outputs | [{"name":"document_id","type":"str"},{"name":"title","type":"str"},{"name":"sheet_count","type":"int"},{"name":"issue_count","type":"int"},{"name":"issues","type":"list[dict]","description":"[{severity, category, sheet, cell, description, suggestion}]"},{"name":"model","type":"str"}] |
Audits a Phase-33-ingested Excel workbook for data quality problems. The skill walks every page (one page = one worksheet) of the ingested document, collects the Markdown/text representation produced during ingestion, and asks DeepSeek to identify problems across six categories.
document_id.sourceFormat is xlsx
or xls). Rejects other formats with a 400 error.--- next sheet ---.OFFICEPLANE_AGENT_MODEL_FLASH, default deepseek/deepseek-v4-flash) with
temperature=0 and response_format={"type": "json_object"} for
deterministic, machine-readable output."low".max_issues (default 20, max 100).SkillInvocation audit row via persist_skill_invocation.| Category | What it flags |
|---|---|
formula_error | Formula returns #REF!, #DIV/0!, #VALUE!, or similar Excel errors |
suspected_typo | A number that looks off-by-magnitude relative to its column peers |
outlier | A value dramatically larger or smaller than its neighbours |
missing_total | A column of numeric values with no totals row when one is expected |
dead_reference | A formula references a cell or sheet name that does not exist |
inconsistent_format | Mixed text/numbers in a column, or inconsistent units (%, decimal, $) |
high — likely causes incorrect calculations or broken reportsmedium — suspicious but may be intentional; warrants reviewlow — cosmetic or style issue{
"document_id": "cuid...",
"title": "Q3 Budget Review",
"sheet_count": 4,
"issue_count": 3,
"issues": [
{
"severity": "high",
"category": "formula_error",
"sheet": "Summary",
"cell": "D12",
"description": "=SUM(B2:B11) returns #REF! — referenced range is outside the sheet",
"suggestion": "Check that the source range B2:B11 exists and extend it if needed"
}
],
"model": "deepseek/deepseek-v4-flash"
}
If no issues are found the issues list is empty and issue_count is 0.
If the workbook has no page content (empty ingestion), the skill returns early
with sheet_count=0 and a note field explaining the situation.
Generate a Word document from ingested source documents using the agnostic Document tree (CommonMark/Pandoc-aligned)
Generate a single Document (Word/PowerPoint) from all source documents in a collection, with attributions back to each source
Generate a PDF from ingested source documents using the agnostic Document tree
Generate a PowerPoint deck from ingested source documents using the agnostic Document tree (parametrised by slide_count, style, audience, tone)
Generate an Excel workbook (.xlsx) from ingested source documents — tabular with charts, formulas, KPI cells
Find PII (emails, phones, SSN, credit cards, IBANs, names, addresses, DOB) in an ingested document; return redaction plan