univer-integrate

univer-integrate is a skill for Codex from dream-num/univer-sdk-skills. It costs 118 tokens per session (3,898 once invoked), scanned A, original, Apache-2.0.

An integration guide for embedding Univer’s spreadsheet, document, and presentation tools into React, Vue 3, HTML, or Node.js applications. It explains setup, plugins, themes, locales, and programmatic workbook access.

In plain words
What is it for?
Use it to embed Sheets, Docs, or Slides and manipulate workbooks, worksheets, and cell ranges through Univer’s programming interface.
Why use it?
It gives developers a structured way to add editable office-style content to an existing application.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to embed Sheets, Docs, or Slides and manipulate workbooks, worksheets, and cell ranges through Univer’s programming interface.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dream-num/univer-sdk-skills/univer-integrate
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 dream-num/univer-sdk-skills --skill univer-integrate
Clone the repo
git clone --depth 1 https://github.com/dream-num/univer-sdk-skills

Made for: 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 univer-integrate

README.md
[![agentmods](https://agentmods.dev/badge/skills/dream-num/univer-sdk-skills/univer-integrate/github.svg)](https://agentmods.dev/skills/dream-num/univer-sdk-skills/univer-integrate)
Your own site
<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.

agentmods 80×15 button for univer-integrate

Your own site · 80×15
<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>
Per session 118 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,898 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00118 $0.03898
Opus 5 $0.00059 $0.01949
Sonnet 5 $0.00024 $0.00780
Haiku 4.5 $0.00012 $0.00390

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

Security

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.

The scan reads SKILL.md. This mod also ships 2 executable files (assets/templates/node/index.ts, assets/templates/vue3-vite/main.ts), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/univer-integrate/SKILL.md · 337 lines

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 peerDependencies correctly. Yarn is not recommended — it does not auto-install peerDependencies, which leads to missing react, react-dom, or rxjs at 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);

Read the full file on GitHub · 337 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. 12d ago First seen · 337 lines · 0 tokens per session scan A eb1aa7d8d1d0

Subscribe to this mod's changes

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.

Related

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'…

iOfficeAI/OfficeCLI · 222 tokens

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…

iOfficeAI/OfficeCLI · 119 tokens

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…

agentscope-ai/QwenPaw · 201 tokens

xlsx

A guide for working with spreadsheet files such as Excel workbooks, CSV files, and TSV files.

agentscope-ai/QwenPaw · 232 tokens

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.

iOfficeAI/OfficeCLI · 56 tokens

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…

iOfficeAI/OfficeCLI · 157 tokens