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.
npx skills add dream-num/univer-sdk-skills --skill univer-integrategit clone --depth 1 https://github.com/dream-num/univer-sdk-skillsWrote 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.
[](https://agentmods.dev/skills/dream-num/univer-sdk-skills/univer-integrate)<a href="https://agentmods.dev/skills/dream-num/univer-sdk-skills/univer-integrate"><img src="https://agentmods.dev/badge/skills/dream-num/univer-sdk-skills/univer-integrate/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.
<a href="https://agentmods.dev/skills/dream-num/univer-sdk-skills/univer-integrate"><img src="https://agentmods.dev/badge/skills/dream-num/univer-sdk-skills/univer-integrate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00118 | $0.03898 |
| Opus 5 | $0.00059 | $0.01949 |
| Sonnet 5 | $0.00024 | $0.00780 |
| Haiku 4.5 | $0.00012 | $0.00390 |
Grade A, and why
univer-integrate scanned grade A with 0 findings 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 12d ago.
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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 337 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Univer Integrate
Guide for embedding Univer into existing web applications.
Compatibility: This skill is written for Univer
v0.21.x. Core concepts (plugin architecture, Facade API patterns) remain stable across minor versions, but specific method signatures may shift. When in doubt, check the user's installed@univerjs/*versions and prefer their project's existing API patterns.
Quick Start
1. Install dependencies
npm install react react-dom rxjs
npm install @univerjs/core @univerjs/design @univerjs/docs @univerjs/docs-ui @univerjs/engine-formula @univerjs/engine-render @univerjs/sheets @univerjs/sheets-formula @univerjs/sheets-formula-ui @univerjs/sheets-numfmt @univerjs/sheets-numfmt-ui @univerjs/sheets-ui @univerjs/ui
Requirements: Use npm ≥ 8 or pnpm ≥ 8. npm 6–7 may fail to resolve
peerDependenciescorrectly. Yarn is not recommended — it does not auto-installpeerDependencies, which leads to missingreact,react-dom, orrxjsat runtime.
2. Import CSS
Style import order matters. Import base styles before plugin-specific styles:
import '@univerjs/design/lib/index.css';
import '@univerjs/ui/lib/index.css';
import '@univerjs/docs-ui/lib/index.css';
import '@univerjs/sheets-ui/lib/index.css';
import '@univerjs/sheets-formula-ui/lib/index.css';
import '@univerjs/sheets-numfmt-ui/lib/index.css';
3. Initialize
import { LocaleType, mergeLocales, Univer, UniverInstanceType } from '@univerjs/core';
import { FUniver } from '@univerjs/core/facade';
import DesignEnUS from '@univerjs/design/locale/en-US';
import { UniverDocsPlugin } from '@univerjs/docs';
import { UniverDocsUIPlugin } from '@univerjs/docs-ui';
import DocsUIEnUS from '@univerjs/docs-ui/locale/en-US';
import { UniverFormulaEnginePlugin } from '@univerjs/engine-formula';
import { UniverRenderEnginePlugin } from '@univerjs/engine-render';
import { UniverSheetsPlugin } from '@univerjs/sheets';
import { UniverSheetsFormulaPlugin } from '@univerjs/sheets-formula';
import { UniverSheetsFormulaUIPlugin } from '@univerjs/sheets-formula-ui';
import { UniverSheetsNumfmtPlugin } from '@univerjs/sheets-numfmt';
import { UniverSheetsNumfmtUIPlugin } from '@univerjs/sheets-numfmt-ui';
import { UniverSheetsUIPlugin } from '@univerjs/sheets-ui';
import SheetsEnUS from '@univerjs/sheets/locale/en-US';
import SheetsFormulaUIEnUS from '@univerjs/sheets-formula-ui/locale/en-US';
import SheetsNumfmtUIEnUS from '@univerjs/sheets-numfmt-ui/locale/en-US';
import SheetsUIEnUS from '@univerjs/sheets-ui/locale/en-US';
import { UniverUIPlugin } from '@univerjs/ui';
import UIEnUS from '@univerjs/ui/locale/en-US';
// Side-effect imports to register Facade methods
import '@univerjs/core/facade';
import '@univerjs/engine-formula/facade';
import '@univerjs/ui/facade';
import '@univerjs/docs-ui/facade';
import '@univerjs/sheets/facade';
import '@univerjs/sheets-ui/facade';
import '@univerjs/sheets-formula/facade';
import '@univerjs/sheets-numfmt/facade';
const univer = new Univer({
locale: LocaleType.EN_US,
locales: {
[LocaleType.EN_US]: mergeLocales(
DesignEnUS,
UIEnUS,
DocsUIEnUS,
SheetsEnUS,
SheetsUIEnUS,
SheetsFormulaUIEnUS,
SheetsNumfmtUIEnUS,
),
},
});
// Registration order: engines → UI infra → unit core → unit UI → features
univer.registerPlugins([
[UniverRenderEnginePlugin],
[UniverFormulaEnginePlugin],
[UniverUIPlugin, { container: 'app' }], // or DOM node
[UniverDocsPlugin],
[UniverDocsUIPlugin],
[UniverSheetsPlugin],
[UniverSheetsUIPlugin],
[UniverSheetsFormulaPlugin],
[UniverSheetsFormulaUIPlugin],
[UniverSheetsNumfmtPlugin],
[UniverSheetsNumfmtUIPlugin],
]);
univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData);
const univerAPI = FUniver.newAPI(univer);
What ships with it
17 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/openai.yaml 318 B
- assets/templates/node/index.ts 1.8 KB runs code
- assets/templates/node/package.json 329 B
- assets/templates/plain-html/index.html 2.7 KB
- assets/templates/react-vite/main.tsx 2.7 KB
- assets/templates/react-vite/package.json 815 B
- assets/templates/vue3-vite/main.ts 2.8 KB runs code
- assets/templates/vue3-vite/package.json 720 B
- references/common-tasks.md 12 KB
- references/custom-functions.md 6.0 KB
- references/facade-api-guide.md 17 KB
- references/framework-integration.md 7.5 KB
- references/multi-unit-management.md 6.9 KB
- references/network-and-others.md 5.5 KB
- references/permissions.md 8.5 KB
- references/plugin-registry.md 7.7 KB
- references/worker-setup.md 2.3 KB
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.
- 12d ago First seen · 337 lines · 0 tokens per session scan A eb1aa7d8d1d0
univer-integrate is a skill published in the GitHub repository dream-num/univer-sdk-skills (9 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 118 tokens to every session and 3,898 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
officecli-financial-model
Use this skill when the user wants to build a financial model — 3-statement model, DCF valuation, LBO, SaaS unit economics, sensitivity / scenario analysis, debt schedule, or fundraising projections — in Excel. Trigger on: 'financial model', '3-statement model', 'P&L + BS + CF', 'DCF', 'WACC', 'NPV', 'terminal value'…
officecli-xlsx
Use this skill any time a .xlsx file is involved -- as input, output, or both. This includes: creating spreadsheets, financial models, dashboards, or trackers; reading, parsing, or extracting data from any .xlsx file; editing, modifying, or updating existing workbooks; working with formulas, charts, pivot tables, or…
xlsx
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or…
xlsx
A guide for working with spreadsheet files such as Excel workbooks, CSV files, and TSV files.
officecli
Create, analyze, proofread, and modify Office documents (.docx, .xlsx, .pptx) using the officecli CLI tool. Use when the user wants to create, inspect, check formatting, find issues, add charts, or modify Office documents.
officecli-data-dashboard
Use this skill to build a multi-element Excel dashboard — Dashboard sheet on open, multiple formula-driven KPI cards, multiple charts, sparklines, and conditional formatting — from CSV or tabular input. Trigger on: 'dashboard', 'KPI dashboard', 'analytics dashboard', 'executive dashboard', 'metrics dashboard', 'CSV to…