원클릭으로
docs
Read, create, and review DOCXs guidance
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read, create, and review DOCXs guidance
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create user-facing App Store release notes by collecting and summarizing all user-impacting changes since the last git tag (or a specified ref). Use when asked to generate a comprehensive release changelog, App Store "What's New" text, or release notes based on git history or tags.
Analyze Bridge agent execution logs from ~/.bridge/sessions, reconstruct the agent's actual runtime behavior, and explain tool execution, failures, retries, and artifacts from persisted session files.
End-to-end GitHub issue fix workflow using gh, local code changes, builds/tests, and git push. Use when asked to take an issue number, inspect the issue via gh, implement a fix, run XcodeBuildMCP builds/tests, commit with a closing message, and push.
Analyze and optimize React component performance issues (slow renders, re-render thrash, laggy lists, expensive computations). Use when asked to profile or improve a React component, reduce re-renders, or speed up UI updates in React apps.
Swift Concurrency review and remediation for Swift 6.2+. Use when asked to review Swift Concurrency usage, improve concurrency compliance, or fix Swift concurrency compiler errors in a feature or file.
Expert guidance on Swift Concurrency best practices, patterns, and implementation. Use when developers mention: (1) Swift Concurrency, async/await, actors, or tasks, (2) "use Swift Concurrency" or "modern concurrency patterns", (3) migrating to Swift 6, (4) data races or thread safety issues, (5) refactoring closures to async/await, (6) @MainActor, Sendable, or actor isolation, (7) concurrent code architecture or performance optimization, (8) concurrency-related linter warnings (SwiftLint or similar; e.g. async_without_await, Sendable/actor isolation/MainActor lint).
| name | docs |
| description | Read, create, and review DOCXs guidance |
| metadata | {"displayName":"Word Docxs Skill","icon":"doc.text.fill","color":"blue","placeholder":"Upload a document or ask a question"} |
| Task | Tool | Reference |
|---|---|---|
| Reading/analyzing content | soffice + pdftoppm | See "Reading DOCXs" below |
| Creating new documents | python-docx | See "Primary tooling" below |
| Editing with tracked changes | OOXML XML manipulation | ooxml-editing.md |
| Adding comments | OOXML XML manipulation | ooxml-editing.md |
soffice -env:UserInstallation=file:///tmp/lo_profile_$$ --headless --convert-to pdf --outdir $OUTDIR $INPUT_DOCX to convert DOCXs to PDFs.
-env:UserInstallation=file:///tmp/lo_profile_$$ flag is important. Otherwise, it will time out.pdftoppm -png $OUTDIR/$BASENAME.pdf $OUTDIR/$BASENAMEpython-docx. Use it to control structure, styles, tables, and lists. Install it with pip install python-docx if it's not already installed.soffice -env:UserInstallation=file:///tmp/lo_profile_$$ --headless --convert-to pdf --outdir $OUTDIR $INPUT_DOCXpdftoppm -png $OUTDIR/$BASENAME.pdf $OUTDIR/$BASENAME[145036110387964†L158-L160]), malformed URLs, or placeholder text should be present in the document.【【turn1541736113682297662view0†L11-L19】 notations are allowed in the document as the reader cannot interpret them (such citations will be severely penalized).For editing existing DOCXs with tracked changes (legal/business document review), comments, or raw XML manipulation, read references/ooxml-editing.md.
Key capabilities:
<w:ins> and deletions with <w:del><w:commentRangeStart/End>word/document.xml for complex editsUse this approach when: