File Super Assistant - 文件超级助手
/install file-super-assistant
\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
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install file-super-assistant - After installation, invoke the skill by name or use
/file-super-assistant - Provide required inputs per the skill's parameter spec and get structured output
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.