tencent-saas-docs

tencent-saas-docs is a skill for Claude Code, Codex from rojim666/SztuCode. It costs 271 tokens per session (2,904 once invoked), scanned A, original, MIT.

A tool for creating, editing, reading, searching, and managing documents in Tencent Docs Enterprise, an online document service for business accounts. It works with documents, spreadsheets, slides, diagrams, and related files when an enterprise account is available.

In plain words
What is it for?
It helps create and manage team documents, Word files, Excel workbooks, presentations, mind maps, flowcharts, and other supported Tencent Docs files.
Why use it?
It lets business users work with cloud documents from an agent instead of managing each file manually in the web service. It also separates enterprise-account access from personal Tencent Docs access.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps create and manage team documents, Word files, Excel workbooks, presentations, mind maps, flowcharts, and other supported Tencent Docs files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rojim666/sztucode/tencent-saas-docs
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add rojim666/SztuCode --skill tencent-saas-docs
Clone the repo
git clone --depth 1 https://github.com/rojim666/SztuCode

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tencent-saas-docs

README.md
[![agentmods](https://agentmods.dev/badge/skills/rojim666/sztucode/tencent-saas-docs/github.svg)](https://agentmods.dev/skills/rojim666/sztucode/tencent-saas-docs)
Your own site
<a href="https://agentmods.dev/skills/rojim666/sztucode/tencent-saas-docs"><img src="https://agentmods.dev/badge/skills/rojim666/sztucode/tencent-saas-docs/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for tencent-saas-docs

Your own site · 80×15
<a href="https://agentmods.dev/skills/rojim666/sztucode/tencent-saas-docs"><img src="https://agentmods.dev/badge/skills/rojim666/sztucode/tencent-saas-docs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 271 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,904 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00271 $0.02904
Opus 5 $0.00135 $0.01452
Sonnet 5 $0.00054 $0.00581
Haiku 4.5 $0.00027 $0.00290

Measured today against content hash c5ca3c79b59f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

tencent-saas-docs scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

不走 OAuth 授权页。所有工具调用一律走 `tencentdocs.py` 的 `tdoc_call` 入口(纯 Python 标准库,跨平台,Windows 无需 bash/curl),由它在调用时通过 HTTP header
packages/runtime-ts/prompts/workbuddy/skills/_builtin-plugins/tencent-docs-plugin/skills/tencent-saas-docs/SKILL.md · 129 lines

How it starts

The opening of the file, as written. The whole thing — 129 lines — stays where its author put it; the contents beside it link to each section on GitHub.

腾讯文档企业版 MCP 使用指南

本 skill 面向腾讯文档企业版saas.docs.qq.com),通过 MCP 对云端文档进行管理与编辑。

🚨 多 endpoint 架构:能力分散在 4 个独立 MCP endpoint 上,调用前认准 service 名—— doc / sheet / slide 的精细编辑分别走 doc-mcp / sheet-mcp / slide-mcp, 文件管理 / 创建 / 搜索 / 剪藏 / smartcanvas / smartsheet 走主服务 tencent-saas-docs。 4 个 endpoint 共用同一套宿主票据。

前置:鉴权 / 调用方式

本 skill 运行在 tencent-docs-plugin 插件中,鉴权完全依赖宿主(如 Workbuddy 连接器)注入的票据, 不走 OAuth 授权页。所有工具调用一律走 tencentdocs.pytdoc_call 入口(纯 Python 标准库,跨平台,Windows 无需 bash/curl),由它在调用时通过 HTTP header 即时透传票据到服务端,不落盘。详见 references/auth.md

首次使用前执行一次环境检查:

python3 tencentdocs.py tdoc_init
#   READY            → 已就绪,直接干活
#   ERROR:no_token   → 请在宿主(Workbuddy)中完成腾讯文档授权后重试

调用任意工具:

python3 tencentdocs.py tdoc_call <service> <tool> '[json_args]'

🚨 调用任何工具前,必须先查它的参数定义,严禁凭记忆/猜测拼参数

python3 tencentdocs.py tdoc_schema <service> <tool>   # 输出该工具描述 + 参数(✓=必填)

tdoc_schema 返回的参数名/类型/必填项构造 json_argstdoc_call;需要原始 JSON Schema 加 --raw。工具清单用 tdoc_list <service>

service endpoint 工具范围
tencent-saas-docs https://saas.docs.qq.com/api/v6/open/agent/mcp 通用工具(manage / smartcanvas / smartsheet / scrape / 创建类)
doc-mcp https://saas.docs.qq.com/api/v6/doc/mcp doc(Word)精细编辑,工具名无 doc. 前缀
sheet-mcp https://saas.docs.qq.com/api/v6/sheet/mcp sheet(Excel)精细编辑,工具名无 sheet. 前缀
slide-mcp https://saas.docs.qq.com/api/v6/slide/mcp slide(PPT)精细编辑,工具名带 slide_ 前缀

查看某 endpoint 的真实工具清单:python3 tencentdocs.py tdoc_list <service>; 查单个工具的参数定义:python3 tencentdocs.py tdoc_schema <service> <tool>

能力总览

A. 文档列表 / 空间管理 ·(tencent-saas-docs

跨品类的文件与空间管理(增删改、移动、搜索、权限、导入导出、网页剪藏、知识库空间),不区分文档类型。 完整工具清单见 manage.md;知识库空间见 references/space_references.md

file_id 的来源在这里 —— 一切内容操作都先在本类工具里拿到目标文档的 file_id

Read the full file on GitHub · 129 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 129 lines · 271 tokens per session scan A c5ca3c79b59f

Subscribe to this mod's changes

tencent-saas-docs is a skill published in the GitHub repository rojim666/SztuCode (64 stars, last pushed today), licensed MIT. It adds 271 tokens to every session and 2,904 once invoked, about $0.0014 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-12.

Related

Other skills, from other repositories

google

Gmail, Google Calendar, Drive, Docs, Sheets and Contacts for a connected Google account: read and search mail, send and reply, book and move meetings, find files, read and write Docs and Sheets, look people up. Use whenever the user mentions their email, inbox, calendar, meetings, Drive, a Google Doc or Sheet.

intentic/intentic · 0 tokens

feishu

Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.

Hmbown/CodeWhale · 33 tokens

xlsx-official

Use this skill to build, edit, clean, or inspect a spreadsheet file (.xlsx, .xlsm, .xltx, .csv, or .tsv) when that file is the deliverable or the record being changed: financial and operating models, formula-driven summaries, template fills, cell and row patches, messy-data repair, sheet-to-CSV export, and workbook…

evoelsewhere/evoflux · 109 tokens

google-workspace

Manage Gmail, Google Calendar, Drive, Sheets, Docs, Contacts, and Tasks via the gogcli CLI. TRIGGER: "gmail", "google calendar", "google drive", "google sheets". NOT FOR: outlook-assistant, xlsx, docx use cases.

xg-gh-25/SwarmAI · 61 tokens

gog

Manage Google Workspace from the CLI via gog: Gmail, Drive, Calendar, Sheets, Docs, Chat, Tasks, and Admin. Invoke with --account (any account in the local registry) and --user person|sa. Use when the user mentions gmail, drive, calendar, sheets, docs, workspace, gog, email, files, events, or a configured account.

vanducng/skills · 83 tokens

google

Google Workspace integration — Gmail, Drive, Calendar, Contacts, Tasks, and Sheets via gogcli.

thewolffish/wolffish-app · 21 tokens