[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-docx":3,"mdc--6k4fqm-key":38,"related-repo-minimax-docx":1515,"related-org-minimax-docx":1627},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":33,"sourceUrl":36,"mdContent":37},"docx","create and edit Word documents","Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"minimax","MiniMax","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fminimax.jpg","MiniMax-AI",[13,17,20,22],{"name":14,"slug":15,"type":16},"Documents","documents","tag",{"name":18,"slug":19,"type":16},"Office","office",{"name":21,"slug":4,"type":16},"DOCX",{"name":23,"slug":24,"type":16},"Word","word",2872,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMini-Agent","2026-07-13T06:17:51.582447","Proprietary. LICENSE.txt has complete terms",421,[31,32,8],"agent","llm",{"repoUrl":26,"stars":25,"forks":29,"topics":34,"description":35},[31,32,8],"A minimal yet professional single agent demo project that showcases the core execution pipeline and production-grade features of agents.","https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMini-Agent\u002Ftree\u002FHEAD\u002Fmini_agent\u002Fskills\u002Fdocument-skills\u002Fdocx","---\nname: docx\ndescription: \"Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks\"\nlicense: Proprietary. LICENSE.txt has complete terms\n---\n\n# DOCX creation, editing, and analysis\n\n## Overview\n\nA user may ask you to create, edit, or analyze the contents of a .docx file. A .docx file is essentially a ZIP archive containing XML files and other resources that you can read or edit. You have different tools and workflows available for different tasks.\n\n## Workflow Decision Tree\n\n### Reading\u002FAnalyzing Content\nUse \"Text extraction\" or \"Raw XML access\" sections below\n\n### Creating New Document\nUse \"Creating a new Word document\" workflow\n\n### Editing Existing Document\n- **Your own document + simple changes**\n  Use \"Basic OOXML editing\" workflow\n\n- **Someone else's document**\n  Use **\"Redlining workflow\"** (recommended default)\n\n- **Legal, academic, business, or government docs**\n  Use **\"Redlining workflow\"** (required)\n\n## Reading and analyzing content\n\n### Text extraction\nIf you just need to read the text contents of a document, you should convert the document to markdown using pandoc. Pandoc provides excellent support for preserving document structure and can show tracked changes:\n\n```bash\n# Convert document to markdown with tracked changes\npandoc --track-changes=all path-to-file.docx -o output.md\n# Options: --track-changes=accept\u002Freject\u002Fall\n```\n\n### Raw XML access\nYou need raw XML access for: comments, complex formatting, document structure, embedded media, and metadata. For any of these features, you'll need to unpack a document and read its raw XML contents.\n\n#### Unpacking a file\n`python ooxml\u002Fscripts\u002Funpack.py \u003Coffice_file> \u003Coutput_directory>`\n\n#### Key file structures\n* `word\u002Fdocument.xml` - Main document contents\n* `word\u002Fcomments.xml` - Comments referenced in document.xml\n* `word\u002Fmedia\u002F` - Embedded images and media files\n* Tracked changes use `\u003Cw:ins>` (insertions) and `\u003Cw:del>` (deletions) tags\n\n## Creating a new Word document\n\nWhen creating a new Word document from scratch, use **docx-js**, which allows you to create Word documents using JavaScript\u002FTypeScript.\n\n### Workflow\n1. **MANDATORY - READ ENTIRE FILE**: Read [`docx-js.md`](docx-js.md) (~500 lines) completely from start to finish. **NEVER set any range limits when reading this file.** Read the full file content for detailed syntax, critical formatting rules, and best practices before proceeding with document creation.\n2. Create a JavaScript\u002FTypeScript file using Document, Paragraph, TextRun components (You can assume all dependencies are installed, but if not, refer to the dependencies section below)\n3. Export as .docx using Packer.toBuffer()\n\n## Editing an existing Word document\n\nWhen editing an existing Word document, use the **Document library** (a Python library for OOXML manipulation). The library automatically handles infrastructure setup and provides methods for document manipulation. For complex scenarios, you can access the underlying DOM directly through the library.\n\n### Workflow\n1. **MANDATORY - READ ENTIRE FILE**: Read [`ooxml.md`](ooxml.md) (~600 lines) completely from start to finish. **NEVER set any range limits when reading this file.** Read the full file content for the Document library API and XML patterns for directly editing document files.\n2. Unpack the document: `python ooxml\u002Fscripts\u002Funpack.py \u003Coffice_file> \u003Coutput_directory>`\n3. Create and run a Python script using the Document library (see \"Document Library\" section in ooxml.md)\n4. Pack the final document: `python ooxml\u002Fscripts\u002Fpack.py \u003Cinput_directory> \u003Coffice_file>`\n\nThe Document library provides both high-level methods for common operations and direct DOM access for complex scenarios.\n\n## Redlining workflow for document review\n\nThis workflow allows you to plan comprehensive tracked changes using markdown before implementing them in OOXML. **CRITICAL**: For complete tracked changes, you must implement ALL changes systematically.\n\n**Batching Strategy**: Group related changes into batches of 3-10 changes. This makes debugging manageable while maintaining efficiency. Test each batch before moving to the next.\n\n**Principle: Minimal, Precise Edits**\nWhen implementing tracked changes, only mark text that actually changes. Repeating unchanged text makes edits harder to review and appears unprofessional. Break replacements into: [unchanged text] + [deletion] + [insertion] + [unchanged text]. Preserve the original run's RSID for unchanged text by extracting the `\u003Cw:r>` element from the original and reusing it.\n\nExample - Changing \"30 days\" to \"60 days\" in a sentence:\n```python\n# BAD - Replaces entire sentence\n'\u003Cw:del>\u003Cw:r>\u003Cw:delText>The term is 30 days.\u003C\u002Fw:delText>\u003C\u002Fw:r>\u003C\u002Fw:del>\u003Cw:ins>\u003Cw:r>\u003Cw:t>The term is 60 days.\u003C\u002Fw:t>\u003C\u002Fw:r>\u003C\u002Fw:ins>'\n\n# GOOD - Only marks what changed, preserves original \u003Cw:r> for unchanged text\n'\u003Cw:r w:rsidR=\"00AB12CD\">\u003Cw:t>The term is \u003C\u002Fw:t>\u003C\u002Fw:r>\u003Cw:del>\u003Cw:r>\u003Cw:delText>30\u003C\u002Fw:delText>\u003C\u002Fw:r>\u003C\u002Fw:del>\u003Cw:ins>\u003Cw:r>\u003Cw:t>60\u003C\u002Fw:t>\u003C\u002Fw:r>\u003C\u002Fw:ins>\u003Cw:r w:rsidR=\"00AB12CD\">\u003Cw:t> days.\u003C\u002Fw:t>\u003C\u002Fw:r>'\n```\n\n### Tracked changes workflow\n\n1. **Get markdown representation**: Convert document to markdown with tracked changes preserved:\n   ```bash\n   pandoc --track-changes=all path-to-file.docx -o current.md\n   ```\n\n2. **Identify and group changes**: Review the document and identify ALL changes needed, organizing them into logical batches:\n\n   **Location methods** (for finding changes in XML):\n   - Section\u002Fheading numbers (e.g., \"Section 3.2\", \"Article IV\")\n   - Paragraph identifiers if numbered\n   - Grep patterns with unique surrounding text\n   - Document structure (e.g., \"first paragraph\", \"signature block\")\n   - **DO NOT use markdown line numbers** - they don't map to XML structure\n\n   **Batch organization** (group 3-10 related changes per batch):\n   - By section: \"Batch 1: Section 2 amendments\", \"Batch 2: Section 5 updates\"\n   - By type: \"Batch 1: Date corrections\", \"Batch 2: Party name changes\"\n   - By complexity: Start with simple text replacements, then tackle complex structural changes\n   - Sequential: \"Batch 1: Pages 1-3\", \"Batch 2: Pages 4-6\"\n\n3. **Read documentation and unpack**:\n   - **MANDATORY - READ ENTIRE FILE**: Read [`ooxml.md`](ooxml.md) (~600 lines) completely from start to finish. **NEVER set any range limits when reading this file.** Pay special attention to the \"Document Library\" and \"Tracked Change Patterns\" sections.\n   - **Unpack the document**: `python ooxml\u002Fscripts\u002Funpack.py \u003Cfile.docx> \u003Cdir>`\n   - **Note the suggested RSID**: The unpack script will suggest an RSID to use for your tracked changes. Copy this RSID for use in step 4b.\n\n4. **Implement changes in batches**: Group changes logically (by section, by type, or by proximity) and implement them together in a single script. This approach:\n   - Makes debugging easier (smaller batch = easier to isolate errors)\n   - Allows incremental progress\n   - Maintains efficiency (batch size of 3-10 changes works well)\n\n   **Suggested batch groupings:**\n   - By document section (e.g., \"Section 3 changes\", \"Definitions\", \"Termination clause\")\n   - By change type (e.g., \"Date changes\", \"Party name updates\", \"Legal term replacements\")\n   - By proximity (e.g., \"Changes on pages 1-3\", \"Changes in first half of document\")\n\n   For each batch of related changes:\n\n   **a. Map text to XML**: Grep for text in `word\u002Fdocument.xml` to verify how text is split across `\u003Cw:r>` elements.\n\n   **b. Create and run script**: Use `get_node` to find nodes, implement changes, then `doc.save()`. See **\"Document Library\"** section in ooxml.md for patterns.\n\n   **Note**: Always grep `word\u002Fdocument.xml` immediately before writing a script to get current line numbers and verify text content. Line numbers change after each script run.\n\n5. **Pack the document**: After all batches are complete, convert the unpacked directory back to .docx:\n   ```bash\n   python ooxml\u002Fscripts\u002Fpack.py unpacked reviewed-document.docx\n   ```\n\n6. **Final verification**: Do a comprehensive check of the complete document:\n   - Convert final document to markdown:\n     ```bash\n     pandoc --track-changes=all reviewed-document.docx -o verification.md\n     ```\n   - Verify ALL changes were applied correctly:\n     ```bash\n     grep \"original phrase\" verification.md  # Should NOT find it\n     grep \"replacement phrase\" verification.md  # Should find it\n     ```\n   - Check that no unintended changes were introduced\n\n\n## Converting Documents to Images\n\nTo visually analyze Word documents, convert them to images using a two-step process:\n\n1. **Convert DOCX to PDF**:\n   ```bash\n   soffice --headless --convert-to pdf document.docx\n   ```\n\n2. **Convert PDF pages to JPEG images**:\n   ```bash\n   pdftoppm -jpeg -r 150 document.pdf page\n   ```\n   This creates files like `page-1.jpg`, `page-2.jpg`, etc.\n\nOptions:\n- `-r 150`: Sets resolution to 150 DPI (adjust for quality\u002Fsize balance)\n- `-jpeg`: Output JPEG format (use `-png` for PNG if preferred)\n- `-f N`: First page to convert (e.g., `-f 2` starts from page 2)\n- `-l N`: Last page to convert (e.g., `-l 5` stops at page 5)\n- `page`: Prefix for output files\n\nExample for specific range:\n```bash\npdftoppm -jpeg -r 150 -f 2 -l 5 document.pdf page  # Converts only pages 2-5\n```\n\n## Code Style Guidelines\n**IMPORTANT**: When generating code for DOCX operations:\n- Write concise code\n- Avoid verbose variable names and redundant operations\n- Avoid unnecessary print statements\n\n## Dependencies\n\nRequired dependencies (install if not available):\n\n- **pandoc**: `sudo apt-get install pandoc` (for text extraction)\n- **docx**: `npm install -g docx` (for creating new documents)\n- **LibreOffice**: `sudo apt-get install libreoffice` (for PDF conversion)\n- **Poppler**: `sudo apt-get install poppler-utils` (for pdftoppm to convert PDF to images)\n- **defusedxml**: `pip install defusedxml` (for secure XML parsing)",{"data":39,"body":40},{"name":4,"description":6,"license":28},{"type":41,"children":42},"root",[43,52,59,65,71,78,83,89,94,100,148,154,160,165,229,235,240,247,256,262,319,325,337,343,386,392,404,409,463,468,474,486,496,539,544,596,602,1097,1103,1108,1226,1231,1313,1318,1378,1384,1394,1412,1418,1423,1509],{"type":44,"tag":45,"props":46,"children":48},"element","h1",{"id":47},"docx-creation-editing-and-analysis",[49],{"type":50,"value":51},"text","DOCX creation, editing, and analysis",{"type":44,"tag":53,"props":54,"children":56},"h2",{"id":55},"overview",[57],{"type":50,"value":58},"Overview",{"type":44,"tag":60,"props":61,"children":62},"p",{},[63],{"type":50,"value":64},"A user may ask you to create, edit, or analyze the contents of a .docx file. A .docx file is essentially a ZIP archive containing XML files and other resources that you can read or edit. You have different tools and workflows available for different tasks.",{"type":44,"tag":53,"props":66,"children":68},{"id":67},"workflow-decision-tree",[69],{"type":50,"value":70},"Workflow Decision Tree",{"type":44,"tag":72,"props":73,"children":75},"h3",{"id":74},"readinganalyzing-content",[76],{"type":50,"value":77},"Reading\u002FAnalyzing Content",{"type":44,"tag":60,"props":79,"children":80},{},[81],{"type":50,"value":82},"Use \"Text extraction\" or \"Raw XML access\" sections below",{"type":44,"tag":72,"props":84,"children":86},{"id":85},"creating-new-document",[87],{"type":50,"value":88},"Creating New Document",{"type":44,"tag":60,"props":90,"children":91},{},[92],{"type":50,"value":93},"Use \"Creating a new Word document\" workflow",{"type":44,"tag":72,"props":95,"children":97},{"id":96},"editing-existing-document",[98],{"type":50,"value":99},"Editing Existing Document",{"type":44,"tag":101,"props":102,"children":103},"ul",{},[104,116,133],{"type":44,"tag":105,"props":106,"children":107},"li",{},[108,114],{"type":44,"tag":109,"props":110,"children":111},"strong",{},[112],{"type":50,"value":113},"Your own document + simple changes",{"type":50,"value":115},"\nUse \"Basic OOXML editing\" workflow",{"type":44,"tag":105,"props":117,"children":118},{},[119,124,126,131],{"type":44,"tag":109,"props":120,"children":121},{},[122],{"type":50,"value":123},"Someone else's document",{"type":50,"value":125},"\nUse ",{"type":44,"tag":109,"props":127,"children":128},{},[129],{"type":50,"value":130},"\"Redlining workflow\"",{"type":50,"value":132}," (recommended default)",{"type":44,"tag":105,"props":134,"children":135},{},[136,141,142,146],{"type":44,"tag":109,"props":137,"children":138},{},[139],{"type":50,"value":140},"Legal, academic, business, or government docs",{"type":50,"value":125},{"type":44,"tag":109,"props":143,"children":144},{},[145],{"type":50,"value":130},{"type":50,"value":147}," (required)",{"type":44,"tag":53,"props":149,"children":151},{"id":150},"reading-and-analyzing-content",[152],{"type":50,"value":153},"Reading and analyzing content",{"type":44,"tag":72,"props":155,"children":157},{"id":156},"text-extraction",[158],{"type":50,"value":159},"Text extraction",{"type":44,"tag":60,"props":161,"children":162},{},[163],{"type":50,"value":164},"If you just need to read the text contents of a document, you should convert the document to markdown using pandoc. Pandoc provides excellent support for preserving document structure and can show tracked changes:",{"type":44,"tag":166,"props":167,"children":172},"pre",{"className":168,"code":169,"language":170,"meta":171,"style":171},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Convert document to markdown with tracked changes\npandoc --track-changes=all path-to-file.docx -o output.md\n# Options: --track-changes=accept\u002Freject\u002Fall\n","bash","",[173],{"type":44,"tag":174,"props":175,"children":176},"code",{"__ignoreMap":171},[177,189,220],{"type":44,"tag":178,"props":179,"children":182},"span",{"class":180,"line":181},"line",1,[183],{"type":44,"tag":178,"props":184,"children":186},{"style":185},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[187],{"type":50,"value":188},"# Convert document to markdown with tracked changes\n",{"type":44,"tag":178,"props":190,"children":192},{"class":180,"line":191},2,[193,199,205,210,215],{"type":44,"tag":178,"props":194,"children":196},{"style":195},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[197],{"type":50,"value":198},"pandoc",{"type":44,"tag":178,"props":200,"children":202},{"style":201},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[203],{"type":50,"value":204}," --track-changes=all",{"type":44,"tag":178,"props":206,"children":207},{"style":201},[208],{"type":50,"value":209}," path-to-file.docx",{"type":44,"tag":178,"props":211,"children":212},{"style":201},[213],{"type":50,"value":214}," -o",{"type":44,"tag":178,"props":216,"children":217},{"style":201},[218],{"type":50,"value":219}," output.md\n",{"type":44,"tag":178,"props":221,"children":223},{"class":180,"line":222},3,[224],{"type":44,"tag":178,"props":225,"children":226},{"style":185},[227],{"type":50,"value":228},"# Options: --track-changes=accept\u002Freject\u002Fall\n",{"type":44,"tag":72,"props":230,"children":232},{"id":231},"raw-xml-access",[233],{"type":50,"value":234},"Raw XML access",{"type":44,"tag":60,"props":236,"children":237},{},[238],{"type":50,"value":239},"You need raw XML access for: comments, complex formatting, document structure, embedded media, and metadata. For any of these features, you'll need to unpack a document and read its raw XML contents.",{"type":44,"tag":241,"props":242,"children":244},"h4",{"id":243},"unpacking-a-file",[245],{"type":50,"value":246},"Unpacking a file",{"type":44,"tag":60,"props":248,"children":249},{},[250],{"type":44,"tag":174,"props":251,"children":253},{"className":252},[],[254],{"type":50,"value":255},"python ooxml\u002Fscripts\u002Funpack.py \u003Coffice_file> \u003Coutput_directory>",{"type":44,"tag":241,"props":257,"children":259},{"id":258},"key-file-structures",[260],{"type":50,"value":261},"Key file structures",{"type":44,"tag":101,"props":263,"children":264},{},[265,276,287,298],{"type":44,"tag":105,"props":266,"children":267},{},[268,274],{"type":44,"tag":174,"props":269,"children":271},{"className":270},[],[272],{"type":50,"value":273},"word\u002Fdocument.xml",{"type":50,"value":275}," - Main document contents",{"type":44,"tag":105,"props":277,"children":278},{},[279,285],{"type":44,"tag":174,"props":280,"children":282},{"className":281},[],[283],{"type":50,"value":284},"word\u002Fcomments.xml",{"type":50,"value":286}," - Comments referenced in document.xml",{"type":44,"tag":105,"props":288,"children":289},{},[290,296],{"type":44,"tag":174,"props":291,"children":293},{"className":292},[],[294],{"type":50,"value":295},"word\u002Fmedia\u002F",{"type":50,"value":297}," - Embedded images and media files",{"type":44,"tag":105,"props":299,"children":300},{},[301,303,309,311,317],{"type":50,"value":302},"Tracked changes use ",{"type":44,"tag":174,"props":304,"children":306},{"className":305},[],[307],{"type":50,"value":308},"\u003Cw:ins>",{"type":50,"value":310}," (insertions) and ",{"type":44,"tag":174,"props":312,"children":314},{"className":313},[],[315],{"type":50,"value":316},"\u003Cw:del>",{"type":50,"value":318}," (deletions) tags",{"type":44,"tag":53,"props":320,"children":322},{"id":321},"creating-a-new-word-document",[323],{"type":50,"value":324},"Creating a new Word document",{"type":44,"tag":60,"props":326,"children":327},{},[328,330,335],{"type":50,"value":329},"When creating a new Word document from scratch, use ",{"type":44,"tag":109,"props":331,"children":332},{},[333],{"type":50,"value":334},"docx-js",{"type":50,"value":336},", which allows you to create Word documents using JavaScript\u002FTypeScript.",{"type":44,"tag":72,"props":338,"children":340},{"id":339},"workflow",[341],{"type":50,"value":342},"Workflow",{"type":44,"tag":344,"props":345,"children":346},"ol",{},[347,376,381],{"type":44,"tag":105,"props":348,"children":349},{},[350,355,357,367,369,374],{"type":44,"tag":109,"props":351,"children":352},{},[353],{"type":50,"value":354},"MANDATORY - READ ENTIRE FILE",{"type":50,"value":356},": Read ",{"type":44,"tag":358,"props":359,"children":361},"a",{"href":360},"docx-js.md",[362],{"type":44,"tag":174,"props":363,"children":365},{"className":364},[],[366],{"type":50,"value":360},{"type":50,"value":368}," (~500 lines) completely from start to finish. ",{"type":44,"tag":109,"props":370,"children":371},{},[372],{"type":50,"value":373},"NEVER set any range limits when reading this file.",{"type":50,"value":375}," Read the full file content for detailed syntax, critical formatting rules, and best practices before proceeding with document creation.",{"type":44,"tag":105,"props":377,"children":378},{},[379],{"type":50,"value":380},"Create a JavaScript\u002FTypeScript file using Document, Paragraph, TextRun components (You can assume all dependencies are installed, but if not, refer to the dependencies section below)",{"type":44,"tag":105,"props":382,"children":383},{},[384],{"type":50,"value":385},"Export as .docx using Packer.toBuffer()",{"type":44,"tag":53,"props":387,"children":389},{"id":388},"editing-an-existing-word-document",[390],{"type":50,"value":391},"Editing an existing Word document",{"type":44,"tag":60,"props":393,"children":394},{},[395,397,402],{"type":50,"value":396},"When editing an existing Word document, use the ",{"type":44,"tag":109,"props":398,"children":399},{},[400],{"type":50,"value":401},"Document library",{"type":50,"value":403}," (a Python library for OOXML manipulation). The library automatically handles infrastructure setup and provides methods for document manipulation. For complex scenarios, you can access the underlying DOM directly through the library.",{"type":44,"tag":72,"props":405,"children":407},{"id":406},"workflow-1",[408],{"type":50,"value":342},{"type":44,"tag":344,"props":410,"children":411},{},[412,437,447,452],{"type":44,"tag":105,"props":413,"children":414},{},[415,419,420,429,431,435],{"type":44,"tag":109,"props":416,"children":417},{},[418],{"type":50,"value":354},{"type":50,"value":356},{"type":44,"tag":358,"props":421,"children":423},{"href":422},"ooxml.md",[424],{"type":44,"tag":174,"props":425,"children":427},{"className":426},[],[428],{"type":50,"value":422},{"type":50,"value":430}," (~600 lines) completely from start to finish. ",{"type":44,"tag":109,"props":432,"children":433},{},[434],{"type":50,"value":373},{"type":50,"value":436}," Read the full file content for the Document library API and XML patterns for directly editing document files.",{"type":44,"tag":105,"props":438,"children":439},{},[440,442],{"type":50,"value":441},"Unpack the document: ",{"type":44,"tag":174,"props":443,"children":445},{"className":444},[],[446],{"type":50,"value":255},{"type":44,"tag":105,"props":448,"children":449},{},[450],{"type":50,"value":451},"Create and run a Python script using the Document library (see \"Document Library\" section in ooxml.md)",{"type":44,"tag":105,"props":453,"children":454},{},[455,457],{"type":50,"value":456},"Pack the final document: ",{"type":44,"tag":174,"props":458,"children":460},{"className":459},[],[461],{"type":50,"value":462},"python ooxml\u002Fscripts\u002Fpack.py \u003Cinput_directory> \u003Coffice_file>",{"type":44,"tag":60,"props":464,"children":465},{},[466],{"type":50,"value":467},"The Document library provides both high-level methods for common operations and direct DOM access for complex scenarios.",{"type":44,"tag":53,"props":469,"children":471},{"id":470},"redlining-workflow-for-document-review",[472],{"type":50,"value":473},"Redlining workflow for document review",{"type":44,"tag":60,"props":475,"children":476},{},[477,479,484],{"type":50,"value":478},"This workflow allows you to plan comprehensive tracked changes using markdown before implementing them in OOXML. ",{"type":44,"tag":109,"props":480,"children":481},{},[482],{"type":50,"value":483},"CRITICAL",{"type":50,"value":485},": For complete tracked changes, you must implement ALL changes systematically.",{"type":44,"tag":60,"props":487,"children":488},{},[489,494],{"type":44,"tag":109,"props":490,"children":491},{},[492],{"type":50,"value":493},"Batching Strategy",{"type":50,"value":495},": Group related changes into batches of 3-10 changes. This makes debugging manageable while maintaining efficiency. Test each batch before moving to the next.",{"type":44,"tag":60,"props":497,"children":498},{},[499,504,506,511,513,518,519,524,525,529,531,537],{"type":44,"tag":109,"props":500,"children":501},{},[502],{"type":50,"value":503},"Principle: Minimal, Precise Edits",{"type":50,"value":505},"\nWhen implementing tracked changes, only mark text that actually changes. Repeating unchanged text makes edits harder to review and appears unprofessional. Break replacements into: ",{"type":44,"tag":178,"props":507,"children":508},{},[509],{"type":50,"value":510},"unchanged text",{"type":50,"value":512}," + ",{"type":44,"tag":178,"props":514,"children":515},{},[516],{"type":50,"value":517},"deletion",{"type":50,"value":512},{"type":44,"tag":178,"props":520,"children":521},{},[522],{"type":50,"value":523},"insertion",{"type":50,"value":512},{"type":44,"tag":178,"props":526,"children":527},{},[528],{"type":50,"value":510},{"type":50,"value":530},". Preserve the original run's RSID for unchanged text by extracting the ",{"type":44,"tag":174,"props":532,"children":534},{"className":533},[],[535],{"type":50,"value":536},"\u003Cw:r>",{"type":50,"value":538}," element from the original and reusing it.",{"type":44,"tag":60,"props":540,"children":541},{},[542],{"type":50,"value":543},"Example - Changing \"30 days\" to \"60 days\" in a sentence:",{"type":44,"tag":166,"props":545,"children":549},{"className":546,"code":547,"language":548,"meta":171,"style":171},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# BAD - Replaces entire sentence\n'\u003Cw:del>\u003Cw:r>\u003Cw:delText>The term is 30 days.\u003C\u002Fw:delText>\u003C\u002Fw:r>\u003C\u002Fw:del>\u003Cw:ins>\u003Cw:r>\u003Cw:t>The term is 60 days.\u003C\u002Fw:t>\u003C\u002Fw:r>\u003C\u002Fw:ins>'\n\n# GOOD - Only marks what changed, preserves original \u003Cw:r> for unchanged text\n'\u003Cw:r w:rsidR=\"00AB12CD\">\u003Cw:t>The term is \u003C\u002Fw:t>\u003C\u002Fw:r>\u003Cw:del>\u003Cw:r>\u003Cw:delText>30\u003C\u002Fw:delText>\u003C\u002Fw:r>\u003C\u002Fw:del>\u003Cw:ins>\u003Cw:r>\u003Cw:t>60\u003C\u002Fw:t>\u003C\u002Fw:r>\u003C\u002Fw:ins>\u003Cw:r w:rsidR=\"00AB12CD\">\u003Cw:t> days.\u003C\u002Fw:t>\u003C\u002Fw:r>'\n","python",[550],{"type":44,"tag":174,"props":551,"children":552},{"__ignoreMap":171},[553,561,569,578,587],{"type":44,"tag":178,"props":554,"children":555},{"class":180,"line":181},[556],{"type":44,"tag":178,"props":557,"children":558},{},[559],{"type":50,"value":560},"# BAD - Replaces entire sentence\n",{"type":44,"tag":178,"props":562,"children":563},{"class":180,"line":191},[564],{"type":44,"tag":178,"props":565,"children":566},{},[567],{"type":50,"value":568},"'\u003Cw:del>\u003Cw:r>\u003Cw:delText>The term is 30 days.\u003C\u002Fw:delText>\u003C\u002Fw:r>\u003C\u002Fw:del>\u003Cw:ins>\u003Cw:r>\u003Cw:t>The term is 60 days.\u003C\u002Fw:t>\u003C\u002Fw:r>\u003C\u002Fw:ins>'\n",{"type":44,"tag":178,"props":570,"children":571},{"class":180,"line":222},[572],{"type":44,"tag":178,"props":573,"children":575},{"emptyLinePlaceholder":574},true,[576],{"type":50,"value":577},"\n",{"type":44,"tag":178,"props":579,"children":581},{"class":180,"line":580},4,[582],{"type":44,"tag":178,"props":583,"children":584},{},[585],{"type":50,"value":586},"# GOOD - Only marks what changed, preserves original \u003Cw:r> for unchanged text\n",{"type":44,"tag":178,"props":588,"children":590},{"class":180,"line":589},5,[591],{"type":44,"tag":178,"props":592,"children":593},{},[594],{"type":50,"value":595},"'\u003Cw:r w:rsidR=\"00AB12CD\">\u003Cw:t>The term is \u003C\u002Fw:t>\u003C\u002Fw:r>\u003Cw:del>\u003Cw:r>\u003Cw:delText>30\u003C\u002Fw:delText>\u003C\u002Fw:r>\u003C\u002Fw:del>\u003Cw:ins>\u003Cw:r>\u003Cw:t>60\u003C\u002Fw:t>\u003C\u002Fw:r>\u003C\u002Fw:ins>\u003Cw:r w:rsidR=\"00AB12CD\">\u003Cw:t> days.\u003C\u002Fw:t>\u003C\u002Fw:r>'\n",{"type":44,"tag":72,"props":597,"children":599},{"id":598},"tracked-changes-workflow",[600],{"type":50,"value":601},"Tracked changes workflow",{"type":44,"tag":344,"props":603,"children":604},{},[605,646,733,795,928,967],{"type":44,"tag":105,"props":606,"children":607},{},[608,613,615],{"type":44,"tag":109,"props":609,"children":610},{},[611],{"type":50,"value":612},"Get markdown representation",{"type":50,"value":614},": Convert document to markdown with tracked changes preserved:",{"type":44,"tag":166,"props":616,"children":618},{"className":168,"code":617,"language":170,"meta":171,"style":171},"pandoc --track-changes=all path-to-file.docx -o current.md\n",[619],{"type":44,"tag":174,"props":620,"children":621},{"__ignoreMap":171},[622],{"type":44,"tag":178,"props":623,"children":624},{"class":180,"line":181},[625,629,633,637,641],{"type":44,"tag":178,"props":626,"children":627},{"style":195},[628],{"type":50,"value":198},{"type":44,"tag":178,"props":630,"children":631},{"style":201},[632],{"type":50,"value":204},{"type":44,"tag":178,"props":634,"children":635},{"style":201},[636],{"type":50,"value":209},{"type":44,"tag":178,"props":638,"children":639},{"style":201},[640],{"type":50,"value":214},{"type":44,"tag":178,"props":642,"children":643},{"style":201},[644],{"type":50,"value":645}," current.md\n",{"type":44,"tag":105,"props":647,"children":648},{},[649,654,656,660,665,667,700,703,708,710],{"type":44,"tag":109,"props":650,"children":651},{},[652],{"type":50,"value":653},"Identify and group changes",{"type":50,"value":655},": Review the document and identify ALL changes needed, organizing them into logical batches:",{"type":44,"tag":657,"props":658,"children":659},"br",{},[],{"type":44,"tag":109,"props":661,"children":662},{},[663],{"type":50,"value":664},"Location methods",{"type":50,"value":666}," (for finding changes in XML):",{"type":44,"tag":101,"props":668,"children":669},{},[670,675,680,685,690],{"type":44,"tag":105,"props":671,"children":672},{},[673],{"type":50,"value":674},"Section\u002Fheading numbers (e.g., \"Section 3.2\", \"Article IV\")",{"type":44,"tag":105,"props":676,"children":677},{},[678],{"type":50,"value":679},"Paragraph identifiers if numbered",{"type":44,"tag":105,"props":681,"children":682},{},[683],{"type":50,"value":684},"Grep patterns with unique surrounding text",{"type":44,"tag":105,"props":686,"children":687},{},[688],{"type":50,"value":689},"Document structure (e.g., \"first paragraph\", \"signature block\")",{"type":44,"tag":105,"props":691,"children":692},{},[693,698],{"type":44,"tag":109,"props":694,"children":695},{},[696],{"type":50,"value":697},"DO NOT use markdown line numbers",{"type":50,"value":699}," - they don't map to XML structure",{"type":44,"tag":657,"props":701,"children":702},{},[],{"type":44,"tag":109,"props":704,"children":705},{},[706],{"type":50,"value":707},"Batch organization",{"type":50,"value":709}," (group 3-10 related changes per batch):",{"type":44,"tag":101,"props":711,"children":712},{},[713,718,723,728],{"type":44,"tag":105,"props":714,"children":715},{},[716],{"type":50,"value":717},"By section: \"Batch 1: Section 2 amendments\", \"Batch 2: Section 5 updates\"",{"type":44,"tag":105,"props":719,"children":720},{},[721],{"type":50,"value":722},"By type: \"Batch 1: Date corrections\", \"Batch 2: Party name changes\"",{"type":44,"tag":105,"props":724,"children":725},{},[726],{"type":50,"value":727},"By complexity: Start with simple text replacements, then tackle complex structural changes",{"type":44,"tag":105,"props":729,"children":730},{},[731],{"type":50,"value":732},"Sequential: \"Batch 1: Pages 1-3\", \"Batch 2: Pages 4-6\"",{"type":44,"tag":105,"props":734,"children":735},{},[736,741,743],{"type":44,"tag":109,"props":737,"children":738},{},[739],{"type":50,"value":740},"Read documentation and unpack",{"type":50,"value":742},":",{"type":44,"tag":101,"props":744,"children":745},{},[746,769,785],{"type":44,"tag":105,"props":747,"children":748},{},[749,753,754,762,763,767],{"type":44,"tag":109,"props":750,"children":751},{},[752],{"type":50,"value":354},{"type":50,"value":356},{"type":44,"tag":358,"props":755,"children":756},{"href":422},[757],{"type":44,"tag":174,"props":758,"children":760},{"className":759},[],[761],{"type":50,"value":422},{"type":50,"value":430},{"type":44,"tag":109,"props":764,"children":765},{},[766],{"type":50,"value":373},{"type":50,"value":768}," Pay special attention to the \"Document Library\" and \"Tracked Change Patterns\" sections.",{"type":44,"tag":105,"props":770,"children":771},{},[772,777,779],{"type":44,"tag":109,"props":773,"children":774},{},[775],{"type":50,"value":776},"Unpack the document",{"type":50,"value":778},": ",{"type":44,"tag":174,"props":780,"children":782},{"className":781},[],[783],{"type":50,"value":784},"python ooxml\u002Fscripts\u002Funpack.py \u003Cfile.docx> \u003Cdir>",{"type":44,"tag":105,"props":786,"children":787},{},[788,793],{"type":44,"tag":109,"props":789,"children":790},{},[791],{"type":50,"value":792},"Note the suggested RSID",{"type":50,"value":794},": The unpack script will suggest an RSID to use for your tracked changes. Copy this RSID for use in step 4b.",{"type":44,"tag":105,"props":796,"children":797},{},[798,803,805,823,826,831,849,852,854,857,862,864,869,871,876,878,881,886,888,894,896,902,904,909,911,914,919,921,926],{"type":44,"tag":109,"props":799,"children":800},{},[801],{"type":50,"value":802},"Implement changes in batches",{"type":50,"value":804},": Group changes logically (by section, by type, or by proximity) and implement them together in a single script. This approach:",{"type":44,"tag":101,"props":806,"children":807},{},[808,813,818],{"type":44,"tag":105,"props":809,"children":810},{},[811],{"type":50,"value":812},"Makes debugging easier (smaller batch = easier to isolate errors)",{"type":44,"tag":105,"props":814,"children":815},{},[816],{"type":50,"value":817},"Allows incremental progress",{"type":44,"tag":105,"props":819,"children":820},{},[821],{"type":50,"value":822},"Maintains efficiency (batch size of 3-10 changes works well)",{"type":44,"tag":657,"props":824,"children":825},{},[],{"type":44,"tag":109,"props":827,"children":828},{},[829],{"type":50,"value":830},"Suggested batch groupings:",{"type":44,"tag":101,"props":832,"children":833},{},[834,839,844],{"type":44,"tag":105,"props":835,"children":836},{},[837],{"type":50,"value":838},"By document section (e.g., \"Section 3 changes\", \"Definitions\", \"Termination clause\")",{"type":44,"tag":105,"props":840,"children":841},{},[842],{"type":50,"value":843},"By change type (e.g., \"Date changes\", \"Party name updates\", \"Legal term replacements\")",{"type":44,"tag":105,"props":845,"children":846},{},[847],{"type":50,"value":848},"By proximity (e.g., \"Changes on pages 1-3\", \"Changes in first half of document\")",{"type":44,"tag":657,"props":850,"children":851},{},[],{"type":50,"value":853},"For each batch of related changes:",{"type":44,"tag":657,"props":855,"children":856},{},[],{"type":44,"tag":109,"props":858,"children":859},{},[860],{"type":50,"value":861},"a. Map text to XML",{"type":50,"value":863},": Grep for text in ",{"type":44,"tag":174,"props":865,"children":867},{"className":866},[],[868],{"type":50,"value":273},{"type":50,"value":870}," to verify how text is split across ",{"type":44,"tag":174,"props":872,"children":874},{"className":873},[],[875],{"type":50,"value":536},{"type":50,"value":877}," elements.",{"type":44,"tag":657,"props":879,"children":880},{},[],{"type":44,"tag":109,"props":882,"children":883},{},[884],{"type":50,"value":885},"b. Create and run script",{"type":50,"value":887},": Use ",{"type":44,"tag":174,"props":889,"children":891},{"className":890},[],[892],{"type":50,"value":893},"get_node",{"type":50,"value":895}," to find nodes, implement changes, then ",{"type":44,"tag":174,"props":897,"children":899},{"className":898},[],[900],{"type":50,"value":901},"doc.save()",{"type":50,"value":903},". See ",{"type":44,"tag":109,"props":905,"children":906},{},[907],{"type":50,"value":908},"\"Document Library\"",{"type":50,"value":910}," section in ooxml.md for patterns.",{"type":44,"tag":657,"props":912,"children":913},{},[],{"type":44,"tag":109,"props":915,"children":916},{},[917],{"type":50,"value":918},"Note",{"type":50,"value":920},": Always grep ",{"type":44,"tag":174,"props":922,"children":924},{"className":923},[],[925],{"type":50,"value":273},{"type":50,"value":927}," immediately before writing a script to get current line numbers and verify text content. Line numbers change after each script run.",{"type":44,"tag":105,"props":929,"children":930},{},[931,936,938],{"type":44,"tag":109,"props":932,"children":933},{},[934],{"type":50,"value":935},"Pack the document",{"type":50,"value":937},": After all batches are complete, convert the unpacked directory back to .docx:",{"type":44,"tag":166,"props":939,"children":941},{"className":168,"code":940,"language":170,"meta":171,"style":171},"python ooxml\u002Fscripts\u002Fpack.py unpacked reviewed-document.docx\n",[942],{"type":44,"tag":174,"props":943,"children":944},{"__ignoreMap":171},[945],{"type":44,"tag":178,"props":946,"children":947},{"class":180,"line":181},[948,952,957,962],{"type":44,"tag":178,"props":949,"children":950},{"style":195},[951],{"type":50,"value":548},{"type":44,"tag":178,"props":953,"children":954},{"style":201},[955],{"type":50,"value":956}," ooxml\u002Fscripts\u002Fpack.py",{"type":44,"tag":178,"props":958,"children":959},{"style":201},[960],{"type":50,"value":961}," unpacked",{"type":44,"tag":178,"props":963,"children":964},{"style":201},[965],{"type":50,"value":966}," reviewed-document.docx\n",{"type":44,"tag":105,"props":968,"children":969},{},[970,975,977],{"type":44,"tag":109,"props":971,"children":972},{},[973],{"type":50,"value":974},"Final verification",{"type":50,"value":976},": Do a comprehensive check of the complete document:",{"type":44,"tag":101,"props":978,"children":979},{},[980,1017,1092],{"type":44,"tag":105,"props":981,"children":982},{},[983,985],{"type":50,"value":984},"Convert final document to markdown:\n",{"type":44,"tag":166,"props":986,"children":988},{"className":168,"code":987,"language":170,"meta":171,"style":171},"pandoc --track-changes=all reviewed-document.docx -o verification.md\n",[989],{"type":44,"tag":174,"props":990,"children":991},{"__ignoreMap":171},[992],{"type":44,"tag":178,"props":993,"children":994},{"class":180,"line":181},[995,999,1003,1008,1012],{"type":44,"tag":178,"props":996,"children":997},{"style":195},[998],{"type":50,"value":198},{"type":44,"tag":178,"props":1000,"children":1001},{"style":201},[1002],{"type":50,"value":204},{"type":44,"tag":178,"props":1004,"children":1005},{"style":201},[1006],{"type":50,"value":1007}," reviewed-document.docx",{"type":44,"tag":178,"props":1009,"children":1010},{"style":201},[1011],{"type":50,"value":214},{"type":44,"tag":178,"props":1013,"children":1014},{"style":201},[1015],{"type":50,"value":1016}," verification.md\n",{"type":44,"tag":105,"props":1018,"children":1019},{},[1020,1022],{"type":50,"value":1021},"Verify ALL changes were applied correctly:\n",{"type":44,"tag":166,"props":1023,"children":1025},{"className":168,"code":1024,"language":170,"meta":171,"style":171},"grep \"original phrase\" verification.md  # Should NOT find it\ngrep \"replacement phrase\" verification.md  # Should find it\n",[1026],{"type":44,"tag":174,"props":1027,"children":1028},{"__ignoreMap":171},[1029,1063],{"type":44,"tag":178,"props":1030,"children":1031},{"class":180,"line":181},[1032,1037,1043,1048,1053,1058],{"type":44,"tag":178,"props":1033,"children":1034},{"style":195},[1035],{"type":50,"value":1036},"grep",{"type":44,"tag":178,"props":1038,"children":1040},{"style":1039},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1041],{"type":50,"value":1042}," \"",{"type":44,"tag":178,"props":1044,"children":1045},{"style":201},[1046],{"type":50,"value":1047},"original phrase",{"type":44,"tag":178,"props":1049,"children":1050},{"style":1039},[1051],{"type":50,"value":1052},"\"",{"type":44,"tag":178,"props":1054,"children":1055},{"style":201},[1056],{"type":50,"value":1057}," verification.md",{"type":44,"tag":178,"props":1059,"children":1060},{"style":185},[1061],{"type":50,"value":1062},"  # Should NOT find it\n",{"type":44,"tag":178,"props":1064,"children":1065},{"class":180,"line":191},[1066,1070,1074,1079,1083,1087],{"type":44,"tag":178,"props":1067,"children":1068},{"style":195},[1069],{"type":50,"value":1036},{"type":44,"tag":178,"props":1071,"children":1072},{"style":1039},[1073],{"type":50,"value":1042},{"type":44,"tag":178,"props":1075,"children":1076},{"style":201},[1077],{"type":50,"value":1078},"replacement phrase",{"type":44,"tag":178,"props":1080,"children":1081},{"style":1039},[1082],{"type":50,"value":1052},{"type":44,"tag":178,"props":1084,"children":1085},{"style":201},[1086],{"type":50,"value":1057},{"type":44,"tag":178,"props":1088,"children":1089},{"style":185},[1090],{"type":50,"value":1091},"  # Should find it\n",{"type":44,"tag":105,"props":1093,"children":1094},{},[1095],{"type":50,"value":1096},"Check that no unintended changes were introduced",{"type":44,"tag":53,"props":1098,"children":1100},{"id":1099},"converting-documents-to-images",[1101],{"type":50,"value":1102},"Converting Documents to Images",{"type":44,"tag":60,"props":1104,"children":1105},{},[1106],{"type":50,"value":1107},"To visually analyze Word documents, convert them to images using a two-step process:",{"type":44,"tag":344,"props":1109,"children":1110},{},[1111,1155],{"type":44,"tag":105,"props":1112,"children":1113},{},[1114,1119,1120],{"type":44,"tag":109,"props":1115,"children":1116},{},[1117],{"type":50,"value":1118},"Convert DOCX to PDF",{"type":50,"value":742},{"type":44,"tag":166,"props":1121,"children":1123},{"className":168,"code":1122,"language":170,"meta":171,"style":171},"soffice --headless --convert-to pdf document.docx\n",[1124],{"type":44,"tag":174,"props":1125,"children":1126},{"__ignoreMap":171},[1127],{"type":44,"tag":178,"props":1128,"children":1129},{"class":180,"line":181},[1130,1135,1140,1145,1150],{"type":44,"tag":178,"props":1131,"children":1132},{"style":195},[1133],{"type":50,"value":1134},"soffice",{"type":44,"tag":178,"props":1136,"children":1137},{"style":201},[1138],{"type":50,"value":1139}," --headless",{"type":44,"tag":178,"props":1141,"children":1142},{"style":201},[1143],{"type":50,"value":1144}," --convert-to",{"type":44,"tag":178,"props":1146,"children":1147},{"style":201},[1148],{"type":50,"value":1149}," pdf",{"type":44,"tag":178,"props":1151,"children":1152},{"style":201},[1153],{"type":50,"value":1154}," document.docx\n",{"type":44,"tag":105,"props":1156,"children":1157},{},[1158,1163,1164,1205,1208,1210,1216,1218,1224],{"type":44,"tag":109,"props":1159,"children":1160},{},[1161],{"type":50,"value":1162},"Convert PDF pages to JPEG images",{"type":50,"value":742},{"type":44,"tag":166,"props":1165,"children":1167},{"className":168,"code":1166,"language":170,"meta":171,"style":171},"pdftoppm -jpeg -r 150 document.pdf page\n",[1168],{"type":44,"tag":174,"props":1169,"children":1170},{"__ignoreMap":171},[1171],{"type":44,"tag":178,"props":1172,"children":1173},{"class":180,"line":181},[1174,1179,1184,1189,1195,1200],{"type":44,"tag":178,"props":1175,"children":1176},{"style":195},[1177],{"type":50,"value":1178},"pdftoppm",{"type":44,"tag":178,"props":1180,"children":1181},{"style":201},[1182],{"type":50,"value":1183}," -jpeg",{"type":44,"tag":178,"props":1185,"children":1186},{"style":201},[1187],{"type":50,"value":1188}," -r",{"type":44,"tag":178,"props":1190,"children":1192},{"style":1191},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1193],{"type":50,"value":1194}," 150",{"type":44,"tag":178,"props":1196,"children":1197},{"style":201},[1198],{"type":50,"value":1199}," document.pdf",{"type":44,"tag":178,"props":1201,"children":1202},{"style":201},[1203],{"type":50,"value":1204}," page\n",{"type":44,"tag":657,"props":1206,"children":1207},{},[],{"type":50,"value":1209},"This creates files like ",{"type":44,"tag":174,"props":1211,"children":1213},{"className":1212},[],[1214],{"type":50,"value":1215},"page-1.jpg",{"type":50,"value":1217},", ",{"type":44,"tag":174,"props":1219,"children":1221},{"className":1220},[],[1222],{"type":50,"value":1223},"page-2.jpg",{"type":50,"value":1225},", etc.",{"type":44,"tag":60,"props":1227,"children":1228},{},[1229],{"type":50,"value":1230},"Options:",{"type":44,"tag":101,"props":1232,"children":1233},{},[1234,1245,1264,1283,1302],{"type":44,"tag":105,"props":1235,"children":1236},{},[1237,1243],{"type":44,"tag":174,"props":1238,"children":1240},{"className":1239},[],[1241],{"type":50,"value":1242},"-r 150",{"type":50,"value":1244},": Sets resolution to 150 DPI (adjust for quality\u002Fsize balance)",{"type":44,"tag":105,"props":1246,"children":1247},{},[1248,1254,1256,1262],{"type":44,"tag":174,"props":1249,"children":1251},{"className":1250},[],[1252],{"type":50,"value":1253},"-jpeg",{"type":50,"value":1255},": Output JPEG format (use ",{"type":44,"tag":174,"props":1257,"children":1259},{"className":1258},[],[1260],{"type":50,"value":1261},"-png",{"type":50,"value":1263}," for PNG if preferred)",{"type":44,"tag":105,"props":1265,"children":1266},{},[1267,1273,1275,1281],{"type":44,"tag":174,"props":1268,"children":1270},{"className":1269},[],[1271],{"type":50,"value":1272},"-f N",{"type":50,"value":1274},": First page to convert (e.g., ",{"type":44,"tag":174,"props":1276,"children":1278},{"className":1277},[],[1279],{"type":50,"value":1280},"-f 2",{"type":50,"value":1282}," starts from page 2)",{"type":44,"tag":105,"props":1284,"children":1285},{},[1286,1292,1294,1300],{"type":44,"tag":174,"props":1287,"children":1289},{"className":1288},[],[1290],{"type":50,"value":1291},"-l N",{"type":50,"value":1293},": Last page to convert (e.g., ",{"type":44,"tag":174,"props":1295,"children":1297},{"className":1296},[],[1298],{"type":50,"value":1299},"-l 5",{"type":50,"value":1301}," stops at page 5)",{"type":44,"tag":105,"props":1303,"children":1304},{},[1305,1311],{"type":44,"tag":174,"props":1306,"children":1308},{"className":1307},[],[1309],{"type":50,"value":1310},"page",{"type":50,"value":1312},": Prefix for output files",{"type":44,"tag":60,"props":1314,"children":1315},{},[1316],{"type":50,"value":1317},"Example for specific range:",{"type":44,"tag":166,"props":1319,"children":1321},{"className":168,"code":1320,"language":170,"meta":171,"style":171},"pdftoppm -jpeg -r 150 -f 2 -l 5 document.pdf page  # Converts only pages 2-5\n",[1322],{"type":44,"tag":174,"props":1323,"children":1324},{"__ignoreMap":171},[1325],{"type":44,"tag":178,"props":1326,"children":1327},{"class":180,"line":181},[1328,1332,1336,1340,1344,1349,1354,1359,1364,1368,1373],{"type":44,"tag":178,"props":1329,"children":1330},{"style":195},[1331],{"type":50,"value":1178},{"type":44,"tag":178,"props":1333,"children":1334},{"style":201},[1335],{"type":50,"value":1183},{"type":44,"tag":178,"props":1337,"children":1338},{"style":201},[1339],{"type":50,"value":1188},{"type":44,"tag":178,"props":1341,"children":1342},{"style":1191},[1343],{"type":50,"value":1194},{"type":44,"tag":178,"props":1345,"children":1346},{"style":201},[1347],{"type":50,"value":1348}," -f",{"type":44,"tag":178,"props":1350,"children":1351},{"style":1191},[1352],{"type":50,"value":1353}," 2",{"type":44,"tag":178,"props":1355,"children":1356},{"style":201},[1357],{"type":50,"value":1358}," -l",{"type":44,"tag":178,"props":1360,"children":1361},{"style":1191},[1362],{"type":50,"value":1363}," 5",{"type":44,"tag":178,"props":1365,"children":1366},{"style":201},[1367],{"type":50,"value":1199},{"type":44,"tag":178,"props":1369,"children":1370},{"style":201},[1371],{"type":50,"value":1372}," page",{"type":44,"tag":178,"props":1374,"children":1375},{"style":185},[1376],{"type":50,"value":1377},"  # Converts only pages 2-5\n",{"type":44,"tag":53,"props":1379,"children":1381},{"id":1380},"code-style-guidelines",[1382],{"type":50,"value":1383},"Code Style Guidelines",{"type":44,"tag":60,"props":1385,"children":1386},{},[1387,1392],{"type":44,"tag":109,"props":1388,"children":1389},{},[1390],{"type":50,"value":1391},"IMPORTANT",{"type":50,"value":1393},": When generating code for DOCX operations:",{"type":44,"tag":101,"props":1395,"children":1396},{},[1397,1402,1407],{"type":44,"tag":105,"props":1398,"children":1399},{},[1400],{"type":50,"value":1401},"Write concise code",{"type":44,"tag":105,"props":1403,"children":1404},{},[1405],{"type":50,"value":1406},"Avoid verbose variable names and redundant operations",{"type":44,"tag":105,"props":1408,"children":1409},{},[1410],{"type":50,"value":1411},"Avoid unnecessary print statements",{"type":44,"tag":53,"props":1413,"children":1415},{"id":1414},"dependencies",[1416],{"type":50,"value":1417},"Dependencies",{"type":44,"tag":60,"props":1419,"children":1420},{},[1421],{"type":50,"value":1422},"Required dependencies (install if not available):",{"type":44,"tag":101,"props":1424,"children":1425},{},[1426,1442,1458,1475,1492],{"type":44,"tag":105,"props":1427,"children":1428},{},[1429,1433,1434,1440],{"type":44,"tag":109,"props":1430,"children":1431},{},[1432],{"type":50,"value":198},{"type":50,"value":778},{"type":44,"tag":174,"props":1435,"children":1437},{"className":1436},[],[1438],{"type":50,"value":1439},"sudo apt-get install pandoc",{"type":50,"value":1441}," (for text extraction)",{"type":44,"tag":105,"props":1443,"children":1444},{},[1445,1449,1450,1456],{"type":44,"tag":109,"props":1446,"children":1447},{},[1448],{"type":50,"value":4},{"type":50,"value":778},{"type":44,"tag":174,"props":1451,"children":1453},{"className":1452},[],[1454],{"type":50,"value":1455},"npm install -g docx",{"type":50,"value":1457}," (for creating new documents)",{"type":44,"tag":105,"props":1459,"children":1460},{},[1461,1466,1467,1473],{"type":44,"tag":109,"props":1462,"children":1463},{},[1464],{"type":50,"value":1465},"LibreOffice",{"type":50,"value":778},{"type":44,"tag":174,"props":1468,"children":1470},{"className":1469},[],[1471],{"type":50,"value":1472},"sudo apt-get install libreoffice",{"type":50,"value":1474}," (for PDF conversion)",{"type":44,"tag":105,"props":1476,"children":1477},{},[1478,1483,1484,1490],{"type":44,"tag":109,"props":1479,"children":1480},{},[1481],{"type":50,"value":1482},"Poppler",{"type":50,"value":778},{"type":44,"tag":174,"props":1485,"children":1487},{"className":1486},[],[1488],{"type":50,"value":1489},"sudo apt-get install poppler-utils",{"type":50,"value":1491}," (for pdftoppm to convert PDF to images)",{"type":44,"tag":105,"props":1493,"children":1494},{},[1495,1500,1501,1507],{"type":44,"tag":109,"props":1496,"children":1497},{},[1498],{"type":50,"value":1499},"defusedxml",{"type":50,"value":778},{"type":44,"tag":174,"props":1502,"children":1504},{"className":1503},[],[1505],{"type":50,"value":1506},"pip install defusedxml",{"type":50,"value":1508}," (for secure XML parsing)",{"type":44,"tag":1510,"props":1511,"children":1512},"style",{},[1513],{"type":50,"value":1514},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1516,"total":1626},[1517,1536,1558,1572,1587,1594,1610],{"slug":1518,"name":1518,"fn":1519,"description":1520,"org":1521,"tags":1522,"stars":25,"repoUrl":26,"updatedAt":1535},"algorithmic-art","generate algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1523,1526,1529,1532],{"name":1524,"slug":1525,"type":16},"Creative","creative",{"name":1527,"slug":1528,"type":16},"Design","design",{"name":1530,"slug":1531,"type":16},"Generative Art","generative-art",{"name":1533,"slug":1534,"type":16},"Graphics","graphics","2026-07-16T06:02:02.834983",{"slug":1537,"name":1537,"fn":1538,"description":1539,"org":1540,"tags":1541,"stars":25,"repoUrl":26,"updatedAt":1557},"artifacts-builder","build complex React HTML artifacts","Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn\u002Fui). Use for complex artifacts requiring state management, routing, or shadcn\u002Fui components - not for simple single-file HTML\u002FJSX artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1542,1545,1548,1551,1554],{"name":1543,"slug":1544,"type":16},"Frontend","frontend",{"name":1546,"slug":1547,"type":16},"HTML","html",{"name":1549,"slug":1550,"type":16},"React","react",{"name":1552,"slug":1553,"type":16},"shadcn\u002Fui","shadcn-ui",{"name":1555,"slug":1556,"type":16},"Tailwind CSS","tailwind-css","2026-07-13T06:17:37.887194",{"slug":1559,"name":1559,"fn":1560,"description":1561,"org":1562,"tags":1563,"stars":25,"repoUrl":26,"updatedAt":1571},"brand-guidelines","apply brand guidelines to documents","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1564,1567,1568],{"name":1565,"slug":1566,"type":16},"Branding","branding",{"name":1527,"slug":1528,"type":16},{"name":1569,"slug":1570,"type":16},"Typography","typography","2026-07-13T06:17:36.624966",{"slug":1573,"name":1573,"fn":1574,"description":1575,"org":1576,"tags":1577,"stars":25,"repoUrl":26,"updatedAt":1586},"canvas-design","create visual art and design documents","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1578,1579,1580,1583],{"name":1524,"slug":1525,"type":16},{"name":1527,"slug":1528,"type":16},{"name":1581,"slug":1582,"type":16},"Images","images",{"name":1584,"slug":1585,"type":16},"PDF","pdf","2026-07-16T06:01:59.313156",{"slug":4,"name":4,"fn":5,"description":6,"org":1588,"tags":1589,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1590,1591,1592,1593],{"name":14,"slug":15,"type":16},{"name":21,"slug":4,"type":16},{"name":18,"slug":19,"type":16},{"name":23,"slug":24,"type":16},{"slug":1595,"name":1595,"fn":1596,"description":1597,"org":1598,"tags":1599,"stars":25,"repoUrl":26,"updatedAt":1609},"internal-comms","draft internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1600,1603,1606],{"name":1601,"slug":1602,"type":16},"Communications","communications",{"name":1604,"slug":1605,"type":16},"Operations","operations",{"name":1607,"slug":1608,"type":16},"Writing","writing","2026-07-13T06:17:28.861835",{"slug":1611,"name":1611,"fn":1612,"description":1613,"org":1614,"tags":1615,"stars":25,"repoUrl":26,"updatedAt":1625},"mcp-builder","build MCP servers for external integrations","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1616,1619,1622],{"name":1617,"slug":1618,"type":16},"Agents","agents",{"name":1620,"slug":1621,"type":16},"API Development","api-development",{"name":1623,"slug":1624,"type":16},"MCP","mcp","2026-07-13T06:17:18.339572",15,{"items":1628,"total":1811},[1629,1653,1665,1680,1695,1715,1731,1749,1762,1778,1791,1801],{"slug":1630,"name":1630,"fn":1631,"description":1632,"org":1633,"tags":1634,"stars":1650,"repoUrl":1651,"updatedAt":1652},"android-native-dev","develop Android native applications","Android native application development and UI design guide. Covers Material Design 3, Kotlin\u002FCompose development, project configuration, accessibility, and build troubleshooting. Read this before Android native application development.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1635,1638,1641,1644,1647],{"name":1636,"slug":1637,"type":16},"Accessibility","accessibility",{"name":1639,"slug":1640,"type":16},"Android","android",{"name":1642,"slug":1643,"type":16},"Kotlin","kotlin",{"name":1645,"slug":1646,"type":16},"Mobile","mobile",{"name":1648,"slug":1649,"type":16},"UI Components","ui-components",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:16:54.247834",{"slug":1654,"name":1654,"fn":1655,"description":1656,"org":1657,"tags":1658,"stars":1650,"repoUrl":1651,"updatedAt":1664},"buddy-sings","generate singing performances for AI companions","Use when user wants their Claude Code pet (\u002Fbuddy) to sing a song. Triggers on any request that combines the concept of their Claude Code buddy, pet, or companion with singing or music. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1659,1660,1663],{"name":1617,"slug":1618,"type":16},{"name":1661,"slug":1662,"type":16},"Audio","audio",{"name":1524,"slug":1525,"type":16},"2026-07-13T06:16:35.130644",{"slug":1666,"name":1666,"fn":1667,"description":1668,"org":1669,"tags":1670,"stars":1650,"repoUrl":1651,"updatedAt":1679},"color-font-skill","select color palettes and font pairings","Choose presentation-ready color palettes and font pairings for PPT\u002Fdesign tasks. Use when users ask for visual theme choices, brand-safe palettes, or font recommendations. Triggers include: 配色, 色板, 字体, color palette, font, PPT配色, 字体搭配.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1671,1672,1675,1678],{"name":1527,"slug":1528,"type":16},{"name":1673,"slug":1674,"type":16},"Presentations","presentations",{"name":1676,"slug":1677,"type":16},"Themes","themes",{"name":1569,"slug":1570,"type":16},"2026-07-13T06:17:02.785587",{"slug":1681,"name":1681,"fn":1682,"description":1683,"org":1684,"tags":1685,"stars":1650,"repoUrl":1651,"updatedAt":1694},"design-style-skill","select visual design systems for presentations","Select a consistent visual design system for PPT slides using radius\u002Fspacing style recipes. Use when users ask for overall style direction or component styling consistency. Includes Sharp\u002FSoft\u002FRounded\u002FPill recipes, component mappings, typography\u002Fspacing rules, and mixing guidance. Triggers: 风格, style, radius, spacing, 圆角, 间距, PPT风格, 视觉风格, design style, component style.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1686,1687,1690,1693],{"name":1527,"slug":1528,"type":16},{"name":1688,"slug":1689,"type":16},"Design System","design-system",{"name":1691,"slug":1692,"type":16},"PowerPoint","powerpoint",{"name":1673,"slug":1674,"type":16},"2026-07-13T06:17:10.398389",{"slug":1696,"name":1696,"fn":1697,"description":1698,"org":1699,"tags":1700,"stars":1650,"repoUrl":1651,"updatedAt":1714},"flutter-dev","build cross-platform apps with Flutter","Flutter cross-platform development guide covering widget patterns, Riverpod\u002FBloc state management, GoRouter navigation, performance optimization, and platform-specific implementations. Includes const optimization, responsive layouts, testing strategies, and DevTools profiling.\nUse when: building Flutter apps, implementing state management (Riverpod\u002FBloc), setting up GoRouter navigation, creating custom widgets, optimizing performance, writing widget tests, cross-platform development.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1701,1704,1707,1708,1711],{"name":1702,"slug":1703,"type":16},"Dart","dart",{"name":1705,"slug":1706,"type":16},"Flutter","flutter",{"name":1645,"slug":1646,"type":16},{"name":1709,"slug":1710,"type":16},"Performance","performance",{"name":1712,"slug":1713,"type":16},"State Management","state-management","2026-07-13T06:16:36.626679",{"slug":1716,"name":1716,"fn":1717,"description":1718,"org":1719,"tags":1720,"stars":1650,"repoUrl":1651,"updatedAt":1730},"frontend-dev","build visually striking frontend web pages","Full-stack frontend development combining premium UI design, cinematic animations,\nAI-generated media assets, persuasive copywriting, and visual art. Builds complete,\nvisually striking web pages with real media, advanced motion, and compelling copy.\nUse when: building landing pages, marketing sites, product pages, dashboards,\ngenerating media assets (image\u002Fvideo\u002Faudio\u002Fmusic), writing conversion copy,\ncreating generative art, or implementing cinematic scroll animations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1721,1724,1725,1726,1727],{"name":1722,"slug":1723,"type":16},"Animation","animation",{"name":1524,"slug":1525,"type":16},{"name":1527,"slug":1528,"type":16},{"name":1543,"slug":1544,"type":16},{"name":1728,"slug":1729,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":1732,"name":1732,"fn":1733,"description":1734,"org":1735,"tags":1736,"stars":1650,"repoUrl":1651,"updatedAt":1748},"fullstack-dev","build full-stack web applications","Full-stack backend architecture and frontend-backend integration guide.\nTRIGGER when: building a full-stack app, creating REST API with frontend, scaffolding backend service,\nbuilding todo app, building CRUD app, building real-time app, building chat app,\nExpress + React, Next.js API, Node.js backend, Python backend, Go backend,\ndesigning service layers, implementing error handling, managing config\u002Fauth,\nsetting up API clients, implementing auth flows, handling file uploads,\nadding real-time features (SSE\u002FWebSocket), hardening for production.\nDO NOT TRIGGER when: pure frontend UI work, pure CSS\u002Fstyling, database schema only.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1737,1740,1741,1744,1747],{"name":1738,"slug":1739,"type":16},"Backend","backend",{"name":1543,"slug":1544,"type":16},{"name":1742,"slug":1743,"type":16},"Full-stack","full-stack",{"name":1745,"slug":1746,"type":16},"REST API","rest-api",{"name":1728,"slug":1729,"type":16},"2026-07-13T06:16:43.219005",{"slug":1750,"name":1750,"fn":1751,"description":1752,"org":1753,"tags":1754,"stars":1650,"repoUrl":1651,"updatedAt":1761},"gif-sticker-maker","create animated GIF stickers from photos","Convert photos (people, pets, objects, logos) into 4 animated GIF stickers with captions.\nUse when: user wants to create cartoon stickers, GIF expressions, emoji packs, animated avatars,\nor convert photos to Funko Pop \u002F Pop Mart blind box style animations.\nTriggers: sticker, GIF, cartoon, emoji, expression pack, avatar animation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1755,1756,1757,1758],{"name":1722,"slug":1723,"type":16},{"name":1524,"slug":1525,"type":16},{"name":1581,"slug":1582,"type":16},{"name":1759,"slug":1760,"type":16},"Media","media","2026-07-13T06:16:51.74461",{"slug":1763,"name":1763,"fn":1764,"description":1765,"org":1766,"tags":1767,"stars":1650,"repoUrl":1651,"updatedAt":1777},"ios-application-dev","develop iOS applications with SwiftUI and UIKit","iOS application development guide covering UIKit, SnapKit, and SwiftUI. Includes touch targets, safe areas, navigation patterns, Dynamic Type, Dark Mode, accessibility, collection views, common UI components, and SwiftUI design guidelines. For detailed references on specific topics, see the reference files.\nUse when: developing iOS apps, implementing UI, reviewing iOS code, working with UIKit\u002FSnapKit\u002FSwiftUI layouts, building iPhone interfaces, Swift mobile development, Apple HIG compliance, iOS accessibility implementation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1768,1769,1772,1773,1776],{"name":1636,"slug":1637,"type":16},{"name":1770,"slug":1771,"type":16},"iOS","ios",{"name":1645,"slug":1646,"type":16},{"name":1774,"slug":1775,"type":16},"SwiftUI","swiftui",{"name":1648,"slug":1649,"type":16},"2026-07-13T06:16:55.686092",{"slug":1779,"name":1779,"fn":1780,"description":1781,"org":1782,"tags":1783,"stars":1650,"repoUrl":1651,"updatedAt":1790},"minimax-docx","create and edit DOCX documents","Professional DOCX document creation, editing, and formatting using OpenXML SDK (.NET). Three pipelines: (A) create new documents from scratch, (B) fill\u002Fedit content in existing documents, (C) apply template formatting with XSD validation gate-check. MUST use this skill whenever the user wants to produce, modify, or format a Word document — including when they say \"write a report\", \"draft a proposal\", \"make a contract\", \"fill in this form\", \"reformat to match this template\", or any task whose final output is a .docx file. Even if the user doesn't mention \"docx\" explicitly, if the task implies a printable\u002Fformal document, use this skill.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1784,1785,1786,1787],{"name":14,"slug":15,"type":16},{"name":21,"slug":4,"type":16},{"name":18,"slug":19,"type":16},{"name":1788,"slug":1789,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":1792,"name":1792,"fn":1793,"description":1794,"org":1795,"tags":1796,"stars":1650,"repoUrl":1651,"updatedAt":1800},"minimax-music-gen","generate music and audio tracks","Use when user wants to generate music, songs, or audio tracks. Triggers on any request involving music creation, song writing, lyrics generation, audio production, or covers. Also triggers when user provides lyrics and wants them turned into a song, or describes a mood\u002Fscene and wants background music. Supports multilingual triggers — match equivalent phrases in any language. Do NOT use for music playback of existing files, music theory questions, or music recommendation without generation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1797,1798,1799],{"name":1661,"slug":1662,"type":16},{"name":1524,"slug":1525,"type":16},{"name":1759,"slug":1760,"type":16},"2026-07-13T06:16:50.381758",{"slug":1802,"name":1802,"fn":1803,"description":1804,"org":1805,"tags":1806,"stars":1650,"repoUrl":1651,"updatedAt":1810},"minimax-music-playlist","generate personalized music playlists","Generate personalized music playlists by analyzing the user's music taste and generation feedback history. Triggers on any request involving playlist generation, music taste profiling, or personalized music recommendations. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1807,1808,1809],{"name":1661,"slug":1662,"type":16},{"name":1524,"slug":1525,"type":16},{"name":1759,"slug":1760,"type":16},"2026-07-13T06:16:57.002997",37]