AI Agent Hub
Back to skills
Workplace Efficiency Master icon

Workplace Efficiency Master

AI Agent Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Please follow https://skillhub.cn/install/skillhub.md to install @user_ef64daef/zhichangxiaolv.

About this skill

Problem It Solves

Repetitive office work often comes from moving the same data between files, spreadsheets, documents, and mail: renaming by date, merging columns from multiple Excel workbooks, exporting reports, checking page fields, or sending processed files. This skill frames those actions as executable Python scripts, which fits engineers who want to batch office workflows locally or inside an agent environment.

How It Works

The core is a set of directory-based modules rather than one monolithic command:

  • File processing: batch_rename.py handles bulk renaming, file_search.py searches content, and file_classifier.py applies classification rules.
  • Spreadsheet and reporting: excel_merge.py, excel_pivot.py, and excel_report.py target merging, pivoting, and output, built on pandas and openpyxl.
  • Document conversion: word_processor.py and pdf_processor.py cover common Word and PDF operations, using python-docx and PyPDF2.
  • Email and data: email_sender.py and data_processor.py are useful for sending results or normalizing structured data.
  • Scheduling and monitoring: task_scheduler.py, backup_manager.py, and web_monitor.py can support recurring jobs, backups, and page checks.

A typical run prepares input files and rule parameters, calls the relevant module script, inspects output or logs, and then decides whether to hand the result to email, reporting, or backup steps.

Boundaries and Notes

This is closer to a local office scripting toolkit than a full cloud productivity suite. It expects a Python 3.8+ environment plus dependencies such as pandas, openpyxl, python-docx, PyPDF2, Pillow, and qrcode. Email sending, scheduled tasks, and web monitoring depend on local permissions, account configuration, and external site stability. Cross-format conversion quality also depends on source file structure, so parameters and scripts may need updates when file permissions, template fields, or website layouts change.

Use Cases

  • Bulk-rename 100 exported files by date and template.
  • Merge and pivot monthly Excel data into a summary report.
  • Convert Word or PDF files into editable deliverables.
  • Schedule directory backups and check web page fields.

Best For

  • Operations staff who bulk-rename exported files by date and archive them.
  • Financial analysts who merge monthly Excel data into pivot summaries.
  • Consultants who convert Word or PDF files into editable deliverables.
  • Support engineers who schedule key-directory backups and check page fields.