一键导入
docx
Use this skill for Word documents (.docx) — create, read, edit, format with headings, tables, images, page numbers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill for Word documents (.docx) — create, read, edit, format with headings, tables, images, page numbers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Automated research pipeline — find, index, and surface insights from papers, docs, and web sources.
Use this skill for anything involving PDF files — read, create, merge, split, extract text, add watermarks, fill forms, encrypt/decrypt, OCR.
Qorven platform self-knowledge — architecture, capabilities, installable plugins, and self-evolution guide.
Self-hosted Firecrawl — deep web crawling, scraping, and search for AI agents. Converts websites into clean markdown.
Use this skill for PowerPoint presentations — create, read, edit .pptx files with slides, layouts, images, charts.
Create or update Qorven agent skills with structured SKILL.md files, scripts, and references.
| name | docx |
| description | Use this skill for Word documents (.docx) — create, read, edit, format with headings, tables, images, page numbers. |
Use exec to run Python with python-docx for Word document operations.
python3 -c "import docx; print('python-docx OK')" 2>/dev/null || pip3 install python-docx
python3 -c "
from docx import Document
doc = Document('INPUT_PATH')
for para in doc.paragraphs:
if para.text.strip():
print(para.text)
for table in doc.tables:
for row in table.rows:
print(' | '.join(cell.text for cell in row.cells))
"
python3 -c "
from docx import Document
from docx.shared import Inches, Pt
doc = Document()
doc.add_heading('Title', 0)
doc.add_paragraph('Your content here.')
doc.add_heading('Section', level=1)
doc.add_paragraph('More content.')
# Add table
table = doc.add_table(rows=2, cols=3)
table.style = 'Table Grid'
table.cell(0,0).text = 'Header 1'
table.cell(0,1).text = 'Header 2'
table.cell(0,2).text = 'Header 3'
table.cell(1,0).text = 'Data 1'
table.cell(1,1).text = 'Data 2'
table.cell(1,2).text = 'Data 3'
doc.save('OUTPUT_PATH')
print('Created OUTPUT_PATH')
"