一键导入
task-automation
Common automation workflows and repetitive tasks. Use when you need to batch operations, schedule tasks, or execute repetitive workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Common automation workflows and repetitive tasks. Use when you need to batch operations, schedule tasks, or execute repetitive workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Search the web for information. Use when you need to find current information, research topics, or fetch web content.
Fetch web pages and convert HTML to clean Markdown. Use when you need to read article content, documentation, or any web page as structured text.
Create, read, and modify PowerPoint (.pptx) presentations. Use when the user wants to build or edit slide decks, add charts, images, tables, or formatted text to presentations.
Create, read, and modify Word (.docx) and Excel (.xlsx/.xls) documents. Use when the user wants to work with office documents.
Conversational task management and automation control. Use when the user wants to create, manage, monitor, or query scheduled tasks and background jobs via natural language.
Analyze code structure and quality. Use when reviewing code for bugs, anti-patterns, security issues, or best practices.
| name | task_automation |
| description | Common automation workflows and repetitive tasks. Use when you need to batch operations, schedule tasks, or execute repetitive workflows. |
This skill enables you to automate common workflows, perform batch operations, and execute repetitive tasks efficiently.
Use this skill when:
list_files(path=".")
read_file(path="config.txt")
write_file(path="output.txt", content="...")
delete_file(path="temp/file.txt")
# Copy files
cp -r source/ destination/
# Move files
mv *.txt archive/
# Delete old files
find . -name "*.tmp" -mtime +7 -delete
# Create backup
tar -czf backup.tar.gz data/
User: "Automate backup of my documents"
Your approach:
User: "Clean up temporary files older than 7 days"
Your approach: