← ClaudeAtlas

executing-univer-planslisted

Use when executing a written Univer SaC workbook plan, implementing Facade Migration Packs, repairing plan gaps, or coordinating plan-driven assertion and migration work.
dream-num/skills · ★ 35 · AI & Automation · score 82
Install: claude install-skill dream-num/skills
# Executing Univer Plans Execute a written Univer workbook plan pack-by-pack. This skill turns the plan into SaC source work without losing the workbook-domain contract. Announce at start: "I'm using the executing-univer-plans skill to execute this Univer plan." <EXTREMELY-IMPORTANT> Do not execute a complex SaC workbook task without a plan written by `writing-univer-plans`. IF THE PLAN IS INCOMPLETE, STOP AND REPAIR THE PLAN BEFORE WRITING ASSERTIONS OR MIGRATION PACKS. </EXTREMELY-IMPORTANT> ## The Rule Review the workbook success criteria and plan before touching execution files, then use test-driven Univer development for each pack. ```dot digraph executing_univer_plans { "Written Univer plan" [shape=doublecircle]; "Load success criteria and plan" [shape=box]; "Plan complete?" [shape=diamond]; "Stop and repair the plan" [shape=box]; "Pick next Migration Pack" [shape=box]; "Load test-driven-univer-development" [shape=box]; "Write plan-derived failing assertion" [shape=box]; "Implement pack minimally" [shape=box]; "Verify and repair from report" [shape=box]; "More packs?" [shape=diamond]; "Final handoff" [shape=doublecircle]; "Written Univer plan" -> "Load success criteria and plan"; "Load success criteria and plan" -> "Plan complete?"; "Plan complete?" -> "Stop and repair the plan" [label="no"]; "Stop and repair the plan" -> "Load success criteria and plan"; "Plan complete?" -> "Pick next Migration Pac