tencent-docs-routing

Routes local Office and WPS file tasks to the correct document, spreadsheet, or presentation Skill.

68|25|Updated Jul 24, 2026
One-click install
npx skills add https://github.com/rojim666/SztuCode --skill tencent-docs-routing-rojim666
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: tencent-docs-routing
Source: https://github.com/rojim666/SztuCode/tree/main/py-runtime/src/sztu_code/core/prompts/workbuddy/skills/tencent-docs-routing
Command: npx skills add https://github.com/rojim666/SztuCode --skill tencent-docs-routing-rojim666

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When a user uploads, edits, or asks to create a local Office/WPS file, an agent must decide which specialized Skill should handle it. This Skill acts as the mandatory routing gate for doc/docx, xls/xlsx/csv, and ppt/pptx files, ensuring every document task reaches the right handler instead of being processed ad hoc. ## Core Features & Use Cases - File-type routing: Classifies local files by extension (doc, sheet, slide families including macro-enabled variants) and dispatches them to the appropriate editing, generation, or analysis Skill. - Creation routing: Directs new DOCX creation and whole-document beautification to the tencent-docx plugin, new PPTs from source materials to tencent-pptx, and new spreadsheets without a source file to tencent-docs-sheet-generation. - Spreadsheet task triage: Splits sheet work between deterministic edits (local office edit Skill) and data-dependent analysis (tencent-docs-sheetagent), with atomic delegation rules that forbid pre-reading data. - Use Case: A user says "根据这份 PDF 整理成一个 Excel 表格" — the Skill recognizes no source spreadsheet exists and routes the request, with the PDF as reference material, to the sheet-generation Skill without pre-parsing. ## Quick Start Load this Skill first whenever I upload or ask you to create a local Word, Excel, or PowerPoint file so you can route the task correctly.

Frequently Asked Questions about tencent-docs-routing

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I route a local Excel file task to the right tool?▼

Decide from the request text alone: direct deterministic edits like writing a named cell or sorting a column go to the local office edit Skill, while data-dependent work like analysis, pivot tables, or cleaning goes to tencent-docs-sheetagent. Never inspect the data first to make this decision.

Which Skill handles creating a new spreadsheet from a PDF?▼

New spreadsheets with no source spreadsheet file route to tencent-docs-sheet-generation, which accepts PDF, DOCX, or PPTX as reference materials. Hand the material directly to that Skill without pre-parsing it yourself.

Does this routing support WPS-specific file formats?▼

WPS formats .wps and .wpt are supported as doc types, but .et, .ett, .dps, and .dpt are not supported. Ask the user to save those files as .xlsx or .pptx before processing.

When should a DOCX task use the tencent-docx plugin instead of the edit Skill?▼

Use the tencent-docx plugin for from-scratch DOCX creation (full_pipeline) or abstract whole-document beautification of an existing file (beauty_only). Editing existing documents, localized style changes, and creation from source materials stay with the local office edit Skill.

Why must I not read spreadsheet data before delegating to sheetagent?▼

Pre-reading splits the task and violates atomic delegation. Data discovery such as sheets, headers, and ranges is the subagent's job; you should only resolve the file_id, then invoke tencent-docs-sheetagent and forward the request verbatim.