← Back to Skills Marketplace
cp3d1455926-svg

File Super Assistant - 文件超级助手

by cp3d1455926-svg · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
101
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install file-super-assistant
Description
文件创建与 AI 降味助手。支持 docx/xlsx/pptx/pdf 文件创建和编辑,提供 AI 内容改写为人类风格功能。
README (SKILL.md)

\r \r

File Super Assistant - 文件超级助手\r

\r

核心功能\r

\r

1. 文件创建与编写\r

\r | 文件类型 | 支持操作 | 工具/库 |\r |----------|----------|---------|\r | Word 文档 (.docx) | 创建、编辑、格式化、插入表格/图片 | python-docx |\r | Excel 表格 (.xlsx) | 创建、数据填充、公式、图表 | openpyxl / pandas |\r | PPT 演示 (.pptx) | 创建幻灯片、模板应用、动画 | python-pptx |\r | PDF 文件 (.pdf) | 生成、合并、拆分、水印 | reportlab / PyPDF2 |\r \r

2. AI 内容"降味"\r

\r 将 AI 生成的内容改写为更自然、更像人类写作的风格。\r \r AI 味特征(需要避免):\r

  • 过度使用"首先、其次、最后"等连接词\r
  • 句式过于工整、缺乏变化\r
  • 语气过于正式、缺乏情感\r
  • 堆砌形容词、副词\r
  • 缺乏个人体验和具体细节\r \r 降味技巧:\r
  • 加入口语化表达、语气词\r
  • 变化句式长短、结构\r
  • 加入个人经历、具体案例\r
  • 适当使用反问、设问\r
  • 加入情绪表达、主观评价\r \r ---\r \r

使用流程\r

\r

创建文档\r

\r

# 调用脚本创建文档\r
python scripts/create_doc.py --type docx --output "报告.docx" --content "内容..."\r
```\r
\r
### 降 AI 味\r
\r
```bash\r
# 调用脚本处理 AI 内容\r
python scripts/remove_ai_flavor.py --input "ai_text.txt" --output "human_text.txt"\r
```\r
\r
---\r
\r
## 脚本说明\r
\r
### scripts/create_doc.py\r
\r
**功能:** 创建各类文档文件\r
\r
**参数:**\r
- `--type`: 文件类型 (docx/xlsx/pptx/pdf)\r
- `--output`: 输出文件名\r
- `--content`: 内容(或从 stdin 读取)\r
- `--template`: 可选模板文件\r
\r
**示例:**\r
```bash\r
python scripts/create_doc.py --type docx --output "周报.docx" --content "本周工作内容..."\r
python scripts/create_doc.py --type xlsx --output "数据表.xlsx" --data data.csv\r
python scripts/create_doc.py --type pptx --output "汇报.pptx" --template assets/template.pptx\r
```\r
\r
### scripts/remove_ai_flavor.py\r
\r
**功能:** 将 AI 生成内容改写为人类风格\r
\r
**参数:**\r
- `--input`: 输入文件(AI 生成的内容)\r
- `--output`: 输出文件(处理后的人类风格)\r
- `--style`: 风格选项 (casual/professional/story)\r
- `--intensity`: 降味强度 (1-5,默认 3)\r
\r
**示例:**\r
```bash\r
python scripts/remove_ai_flavor.py --input "article.txt" --output "article_human.txt"\r
python scripts/remove_ai_flavor.py --input "post.txt" --output "post_human.txt" --style casual --intensity 4\r
```\r
\r
---\r
\r
## 降味规则参考\r
\r
详见 `references/ai-flavor-rules.md`\r
\r
---\r
\r
## 文件模板\r
\r
### assets/templates/\r
\r
- `docx_report_template.docx` - 报告模板\r
- `pptx_business_template.pptx` - 商务 PPT 模板\r
- `xlsx_data_template.xlsx` - 数据表格模板\r
\r
---\r
\r
## 使用场景\r
\r
### 场景 1:创建周报\r
\r
```\r
用户:帮我写一份周报\r
→ 使用 create_doc.py 创建 docx 文件\r
→ 调用 remove_ai_flavor.py 降味\r
→ 输出自然的人类风格周报\r
```\r
\r
### 场景 2:制作 PPT\r
\r
```\r
用户:做个产品汇报 PPT\r
→ 使用 assets 中的商务模板\r
→ 用 create_doc.py 生成 pptx\r
→ 人工微调\r
```\r
\r
### 场景 3:文章去 AI 味\r
\r
```\r
用户:这篇文章 AI 味太重了,帮我改改\r
→ 调用 remove_ai_flavor.py\r
→ 选择 casual 风格,强度 4\r
→ 输出更自然的文章\r
```\r
\r
---\r
\r
## 注意事项\r
\r
1. **文件路径**:所有文件路径使用绝对路径或相对于 workspace 的路径\r
2. **编码问题**:中文文件使用 UTF-8 编码\r
3. **字体问题**:Windows 使用中文字体(宋体、微软雅黑)\r
4. **降味适度**:不要过度降味导致内容失真\r
\r
---\r
\r
## 相关资源\r
\r
- `scripts/create_doc.py` - 文档创建脚本\r
- `scripts/remove_ai_flavor.py` - AI 降味脚本\r
- `references/ai-flavor-rules.md` - AI 味特征与降味规则\r
- `assets/templates/` - 文件模板\r
Usage Guidance
This skill appears to implement what it says (file creation and AI-to-human text rewrites) and does not contact external servers or request credentials. However, before installing or running: 1) Be aware the scripts default to writing files to D:/OneDrive/Desktop/公众号文章 — this may create/overwrite files in your OneDrive Desktop folder; change OUTPUT_DIR in file_assistant.py and template/output paths in the create_* scripts to a safe, expected directory (or pass explicit output paths when running the scripts). 2) files.json contains a local path from the author — treat that as leftover personal data and delete or replace it if unwanted. 3) The PDF script tries Windows font paths; on non-Windows systems behavior will differ (it may create a directory named "D:"). 4) Run the scripts in a sandbox or with a non-synced workspace first to confirm behavior. If you need higher assurance, ask the publisher to remove hard-coded absolute paths or to make output directories configurable via arguments or environment variables.
Capability Analysis
Type: OpenClaw Skill Name: file-super-assistant Version: 1.0.0 The skill bundle provides legitimate functionality for creating Word, Excel, PPT, and PDF documents and humanizing AI-generated text. While it contains hardcoded absolute Windows file paths (e.g., 'D:/OneDrive/Desktop/公众号文章' in file_assistant.py and scripts/create_openclaw_guide.py), these appear to be user-specific configurations for organizing output rather than malicious indicators. The code uses standard libraries (python-docx, openpyxl, reportlab) and lacks any evidence of data exfiltration, unauthorized network access, or harmful prompt injection.
Capability Assessment
Purpose & Capability
Name/description (file creation + AI 'humanize') aligns with the included scripts and code: create_doc.py, create_xlsx/create_pptx/create_pdf implementations and remove_ai_flavor.py implement the advertised features. However, several scripts (file_assistant.py, create_openclaw_guide.py) use a hard-coded Windows OneDrive output directory (D:/OneDrive/Desktop/公众号文章) and files.json contains a local path — this is disproportionate to a generic 'file assistant' and reduces portability.
Instruction Scope
SKILL.md instructs running local scripts (create_doc.py, remove_ai_flavor.py) which is expected. The scripts perform only local file read/write and string transformations (no network calls). Concern: default behavior writes into an absolute OneDrive Desktop path and will create files there without prompting, which may be surprising and could cause data exposure via user's cloud sync. The skill does not read unrelated system files, environment variables, or external endpoints.
Install Mechanism
No install spec — instruction-only with bundled scripts. No external downloads or package installs embedded in the skill. The scripts import common Python libraries but only when executed; missing deps are handled by informative ImportError messages. This is low-risk from an install/execution mechanism perspective.
Credentials
The skill requests no environment variables, no credentials, and no config paths in metadata. The code also does not attempt to access external secrets or network endpoints. The only notable environment interaction is writing files to a hard-coded filesystem location (OneDrive path) and trying to register Windows fonts for PDF creation — these are plausible for document generation but should be configurable.
Persistence & Privilege
The skill does not request always: true and does not alter other skills or system-wide agent settings. It does, however, persist records to files.json and will create/write files under the hard-coded OUTPUT_DIR. That persistent file I/O is normal for a document tool but the fixed OneDrive path increases the impact of writes (cloud-synced folder).
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install file-super-assistant
  3. After installation, invoke the skill by name or use /file-super-assistant
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug file-super-assistant
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is File Super Assistant - 文件超级助手?

文件创建与 AI 降味助手。支持 docx/xlsx/pptx/pdf 文件创建和编辑,提供 AI 内容改写为人类风格功能。 It is an AI Agent Skill for Claude Code / OpenClaw, with 101 downloads so far.

How do I install File Super Assistant - 文件超级助手?

Run "/install file-super-assistant" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is File Super Assistant - 文件超级助手 free?

Yes, File Super Assistant - 文件超级助手 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does File Super Assistant - 文件超级助手 support?

File Super Assistant - 文件超级助手 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created File Super Assistant - 文件超级助手?

It is built and maintained by cp3d1455926-svg (@cp3d1455926-svg); the current version is v1.0.0.

💬 Comments