Token导航 LogoToken导航TokenDH.com
效率执行命令clawhub未标认证来源可访问clear审计通过

docx-xlsx-creatorDOCX XLSX creator 文档

Agent Skill

docx-xlsx-creator 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,333

周安装

177

GitHub Stars

公开资料未说明

下载量

1,388
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:docx-xlsx-creator(DOCX XLSX creator 文档)
来源仓库:https://github.com/mysmsf/docx-xlsx-creator
安装命令:
openclaw skills install docx-xlsx-creator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install docx-xlsx-creator

简介

用于整理文档、README 和 Markdown 材料,适合将零散信息转化为结构化内容。

  • 特别适合需要生成 Word 报告和 Excel 工作簿的场景。
  • 支持真正的可下载文件格式输出,而非仅文本答案。
  • 通过 OpenClaw 的 clawhub 安装方式部署。
  • 建议在使用前确认文件格式和输出路径设置。docx-xlsx-creator 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
smsf-document-creator
description
>
user-invocable
true

SMSF Document Creator

Generates Microsoft Word and Excel files from structured input. Designed for repeatable SMSF, accounting, and compliance workflows where the user needs a real file — not just a formatted text response.


When to use this skill

Trigger this skill when the user asks for a file, such as:

  • "Draft a Word document for the trustee review"
  • "Create an Excel budget workbook"
  • "Generate a .docx / .xlsx file"
  • "Make a checklist I can send to the client"
  • "Produce a working paper in Excel"
  • "I need a spreadsheet with this data"

Do not trigger this skill when:

  • The user only wants a text response or inline table
  • No file output is requested
  • The document requires heavy formatting, macros, or branding this skill cannot produce (see Limitations)

What this skill produces

Word documents (.docx)

ElementSupported
Document title
Headings (levels 1–2)
Paragraphs
Bullet lists
Numbered lists
Basic tables
Images / branding
Advanced styles

Typical uses: trustee resolution drafts, client checklists, engagement summaries, compliance review notes, internal workpaper notes, business letters.

Excel workbooks (.xlsx)

ModeHow to invoke
Budget template--template budget
Invoice template--template invoice
Custom data (JSON)--data your-file.json

Features: styled header rows, auto-sized columns, simple SUM/difference formulas, bar chart (budget template only).

Typical uses: budget sheets, invoice layouts, cashflow working papers, financial review tables, data exports.


Usage

Use {baseDir} to refer to the skill directory.

Word — simple

python3 "{baseDir}/create_docx.py" \
  --title "SMSF Trustee Review Summary" \
  --content "This draft summarises matters identified during the annual compliance review." \
  --output "./trustee-review-summary.docx"

Word — from JSON config

python3 "{baseDir}/create_docx.py" \
  --config "{baseDir}/templates/example_doc.json" \
  --output "./smsf-report.docx"

Excel — budget template

python3 "{baseDir}/create_xlsx.py" \
  --template budget \
  --output "./budget.xlsx"

Excel — invoice template

python3 "{baseDir}/create_xlsx.py" \
  --template invoice \
  --output "./invoice.xlsx"

Excel — from JSON data

python3 "{baseDir}/create_xlsx.py" \
  --data "{baseDir}/templates/example_sheet.json" \
  --output "./quarterly-data.xlsx"

Use --force on any command to overwrite an existing output file.


JSON input formats

Word document

{
  "title": "Document Title",
  "sections": [
    {
      "heading": "Section Heading",
      "level": 1,
      "paragraphs": ["Paragraph one.", "Paragraph two."],
      "bullets": ["Point A", "Point B"],
      "numbered": ["Step 1", "Step 2"],
      "table": [
        ["Header 1", "Header 2"],
        ["Value 1",  "Value 2"]
      ]
    }
  ]
}
  • title and all section keys are optional
  • level should be 1 or 2
  • All rows in a table must have the same column count

Excel workbook — single sheet

{
  "title": "Quarterly Data",
  "headers": ["Month", "Revenue", "Expenses", "Profit"],
  "rows": [
    ["January",  120000, 80000, 40000],
    ["February", 140000, 85000, 55000]
  ]
}

Excel workbook — multiple sheets

{
  "sheets": [
    {
      "title": "Income",
      "headers": ["Month", "Amount"],
      "rows": [["January", 1000], ["February", 1200]]
    },
    {
      "title": "Expenses",
      "headers": ["Month", "Amount"],
      "rows": [["January", 700], ["February", 650]]
    }
  ]
}

Safety rules

  1. Only write files to locations the user has explicitly approved. Do not write to shared, client, or regulated folders without confirmation.
  2. Do not overwrite existing files unless the user has clearly asked for that (use --force only when authorised).
  3. All output is a draft. Never present generated documents as final, signed, or legally compliant without separate professional review.
  4. SMSF and compliance documents must be reviewed by a qualified accountant, auditor, or adviser before use with a client or regulator.
  5. Do not interpolate free-form user input directly into shell commands. Use structured JSON input instead.
  6. Do not execute arbitrary code supplied by the user as part of document content or config.

Limitations

This skill does not:

  • Apply business branding, logos, or letterheads
  • Produce advanced Word styles beyond the built-in Normal/Heading/List set
  • Create complex Excel formulas, pivot tables, or VBA macros
  • Validate legal or regulatory wording
  • Replace professional review for any client-facing or lodgement document
  • Produce macro-enabled .xlsm or .dotm files

Requirements

pip install python-docx openpyxl

Files

FilePurpose
create_docx.pyGenerates Word documents
create_xlsx.pyGenerates Excel workbooks
templates/example_doc.jsonSample Word config
templates/example_sheet.jsonSample Excel data

*Author: R.J. — MySMSF. Generated documents are drafts and working files only.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.9%
按下载量换算1,359

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install docx-xlsx-creator 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills