一键导入
xmind-generator
Tạo file XMind (.xmind) từ mô tả văn bản. Khi người dùng yêu cầu tạo mind map, sơ đồ tư duy, hoặc file xmind, Skill này sẽ được kích hoạt.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Tạo file XMind (.xmind) từ mô tả văn bản. Khi người dùng yêu cầu tạo mind map, sơ đồ tư duy, hoặc file xmind, Skill này sẽ được kích hoạt.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Dùng skill này khi người dùng muốn tạo đơn hàng CRM, nhập thông tin đơn hàng, điền phiếu đặt hàng, hoặc tạo file Excel đơn hàng từ thông tin khách hàng và sản phẩm — dù người dùng nói bằng ngôn ngữ tự nhiên, đọc danh sách, hay viết tắt. Trigger ngay cả khi người dùng chỉ nêu tên khách hàng và sản phẩm mà không đề cập đến file Excel. Skill này tự động xử lý toàn bộ quy trình mà không cần hỏi lại người dùng.
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like "the xlsx in my downloads") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.
Tạo kịch bản video YouTube hoàn chỉnh với thumbnail, tiêu đề, mô tả và bài viết LinkedIn. Sử dụng skill này khi người dùng muốn tạo script video YouTube, lên ý tưởng nội dung video, chuẩn bị tài liệu đăng video, hoặc tạo bài viết quảng bá video trên mạng xã hội. Kích hoạt khi người dùng nhắc đến: kịch bản video, script youtube, tạo video youtube, youtube content, đăng video, quảng bá video.
Create XMind mind map files (.xmind). Use this skill when the user asks to create a mind map, mindmap, XMind file, or brainstorming diagram. Produces native .xmind files that open directly in the XMind application.
| name | XMind Generator |
| description | Tạo file XMind (.xmind) từ mô tả văn bản. Khi người dùng yêu cầu tạo mind map, sơ đồ tư duy, hoặc file xmind, Skill này sẽ được kích hoạt. |
| triggers | ["tạo xmind","tạo mind map","tạo sơ đồ tư duy","create xmind","generate mind map"] |
Bạn là chuyên gia tạo file XMind. Sinh code Python để tạo file .xmind hợp lệ.
XMind files là ZIP archives chứa:
content.xml (cấu trúc mind map - BẮT BUỘC)meta.xml (metadata - BẮT BUỘC)META-INF/manifest.xml (file registry - BẮT BUỘC)zipfile để tạo file .xmind& → &, < → <, > → >.xmindXMind files are ZIP archives containing:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xmap-content xmlns="urn:xmind:xmap:xmlns:content:2.0" version="2.0">
<sheet id="sheet1">
<topic id="root" structure-class="org.xmind.ui.logic.right">
<title>Root Topic</title>
<children>
<topics type="attached">
<topic id="t1">
<title>Branch 1</title>
<children>
<topics type="attached">
<topic id="t1a"><title>Sub-branch 1.1</title></topic>
</topics>
</children>
</topic>
</topics>
</children>
</topic>
<title>Sheet 1</title>
</sheet>
</xmap-content>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<meta xmlns="urn:xmind:xmap:xmlns:meta:2.0" version="2.0"/>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<manifest xmlns="urn:xmind:xmap:xmlns:manifest:1.0">
<file-entry full-path="content.xml" media-type="text/xml"/>
<file-entry full-path="meta.xml" media-type="text/xml"/>
</manifest>
<topics type="attached">import zipfile
import uuid
# Generate unique IDs
def gen_id():
return str(uuid.uuid4())[:8]
# Escape XML special characters
def escape_xml(text):
return text.replace('&', '&').replace('<', '<').replace('>', '>')
# Build content.xml based on user requirements
# Use zipfile to create .xmind
with zipfile.ZipFile('output.xmind', 'w', zipfile.ZIP_DEFLATED) as zf:
zf.writestr('content.xml', content_xml.encode('utf-8'))
zf.writestr('meta.xml', meta_xml.encode('utf-8'))
zf.writestr('META-INF/manifest.xml', manifest_xml.encode('utf-8'))
print('XMind file created: output.xmind')