Univer Pro Integrate
SkillWeb & browsingIntegrate current Univer Pro features into browser applications. Use for licensed Sheets, Docs, Slides, Bases, Boards, or PDFs; advanced Sheets presets; collaboration and edit history; Office import/export; printing; pivot tables; charts; sparklines; shapes; Pro workers; license ordering; or Pro Facade APIs.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Univer Pro Integrate skill
What this skill tells your AI
The instructions your AI receives, as published by dream-num/skills in skills/univer-pro-integrate/SKILL.md and read by ahel’s review.
Add licensed Univer Pro capabilities to an existing Univer application.
Source baseline: Univer and Univer Pro
1.0.0-beta.0, synchronized with the currentdream-num/univeranddream-num/univer-prosources. Inspect the target project's installed versions first and preserve that exact release line.
Prerequisite: Use
univer-integratefor the base application, container, locale, unit creation, and ordinary Facade patterns. Useuniver-customize-themefor application palettes, dark mode, and the separate Pro Chart theme registry.
Choose the integration path
- Use
@univerjs/preset-sheets-advancedfor ordinary Pro Sheets integration. It composes the license, Pro formula, pivot table, print, chart, outline, shape, sparkline, and Sheets exchange plugins plus their Facade extensions. - Add
@univerjs/preset-sheets-collaborationfor collaboration and edit history. Register it after the Advanced preset. - Use
@univerjs/preset-docs-advancedand@univerjs/preset-docs-collaborationfor ordinary Pro Docs integration. - Use Plugin Mode only for custom loading, exact bundle composition, or hosts without a matching Pro preset, such as Slides, Bases, Boards, and PDFs.
- Never register both a preset and a plugin already owned by that preset.
In 1.0.0-beta.0, Slides, Bases, Boards, and PDFs are real Pro product hosts with their own runtime/UI packages, host /facade entry, and creation method (createPresentation, createBase, createBoard, and createPdf). They do not have unified Pro presets. Follow the product matrix and Plugin Mode chains in references/pro-features-guide.md; do not infer a preset merely because a product or Facade exists.
Version policy
- Read
package.json, the lockfile, or an installed Univer package manifest. - Keep every
@univerjs/*,@univerjs-pro/*, and@univerjs/preset-*package on the same exact Univer version. - For a new project targeting this source baseline, use
1.0.0-beta.0. - Treat a package-version mismatch as an integration error; Univer validates plugin versions at runtime.
Quick start: add Pro Sheets to the base preset
Install the Pro preset at the same version as the base preset:
npm install @univerjs/preset-sheets-advanced@1.0.0-beta.0
Extend the univer-integrate Sheets preset example with the Advanced locale, stylesheet, and preset:
import { UniverSheetsAdvancedPreset } from '@univerjs/preset-sheets-advanced';
import UniverPresetSheetsAdvancedEnUS from '@univerjs/preset-sheets-advanced/locales/en-US';
import '@univerjs/preset-sheets-advanced/lib/index.css';
declare const clientLicense: string;
const { univer, univerAPI } = createUniver({
locale: LocaleType.EN_US,
locales: {
[LocaleType.EN_US]: mergeLocales(
UniverPresetSheetsCoreEnUS,
UniverPresetSheetsAdvancedEnUS,
),
},
theme: defaultTheme,
presets: [
UniverSheetsCorePreset({ container: 'app' }),
UniverSheetsAdvancedPreset({
license: clientLicense,
universerEndpoint: 'https://your-universer.example.com',
}),
],
});
Keep the license outside source control. universerEndpoint is the Universer origin; the preset derives the upload, import, export, task, sign, and download routes from it.
Add collaboration
npm install @univerjs/preset-sheets-collaboration@1.0.0-beta.0
import { UniverSheetsCollaborationPreset } from '@univerjs/preset-sheets-collaboration';
import UniverPresetSheetsCollaborationEnUS from '@univerjs/preset-sheets-collaboration/locales/en-US';
import '@univerjs/preset-sheets-collaboration/lib/index.css';
const collaborationPreset = UniverSheetsCollaborationPreset({
universerEndpoint: 'https://your-universer.example.com',
univerContainerId: 'app',
enableOfflineEditing: true,
});
Set collaboration: true in the top-level createUniver options, merge the collaboration locale, and append collaborationPreset after UniverSheetsAdvancedPreset(...). Pass collaboration: true to OSS feature presets that expose that option, such as the Drawing preset. Load a shared server unit with univerAPI.loadServerUnit(unitId, type) rather than creating a blank local workbook with the same ID.
Plugin Mode rules
Register a configured license before every Pro plugin:
import { UniverLicensePlugin } from '@univerjs-pro/license';
import { UniverSheetsPrintPlugin } from '@univerjs-pro/sheets-print';
import '@univerjs-pro/sheets-print/facade';
univer.registerPlugin(UniverLicensePlugin, { license: clientLicense });
univer.registerPlugin(UniverSheetsPrintPlugin);
Many Pro plugins declare UniverLicensePlugin as a dependency. If a dependent plugin runs first, Univer can auto-register the license plugin with default empty configuration; a later explicit registration is then a duplicate. Configure dependencies before dependents, register all plugins before creating units, and import each required /facade side-effect entry before calling its Facade methods.
Plugin registration, Facade side-effect imports, CSS, and locales are independent requirements. In particular, importing @univerjs-pro/<package>/facade does not register its plugin or load its stylesheet. Import each selected CSS-owning package's /lib/index.css in Plugin Mode; a preset integration instead imports that preset's aggregate /lib/index.css.
Current Facade examples
Import and export Sheets:
const unitId = await univerAPI.importSheetToUnitIdAsync(file);
if (!unitId) throw new Error('The workbook could not be imported');
const exported = await univerAPI.exportSheetByUnitIdAsync(unitId);
if (!exported) throw new Error('The workbook could not be exported');
univerAPI.downloadFile(exported, 'report', 'xlsx');
Print the active workbook:
const workbook = univerAPI.getActiveWorkbook();
if (!workbook) throw new Error('No active workbook');
workbook.openPrintDialog();
Insert a chart:
const worksheet = workbook.getActiveSheet();
if (!worksheet) throw new Error('No active worksheet');
const chartInfo = worksheet
.newChart(univerAPI.Enum.ChartTypeString.Column)
.setSource({
range: 'A1:D8',
orientation: univerAPI.Enum.ChartSourceOrientation.Columns,
})
.setPosition('F2')
.setSize(640, 360)
.setTitle('Quarterly sales')
.build();
await worksheet.insertChart(chartInfo);
Feature routing
- Read
references/pro-features-guide.mdfor presets, worker composition, and the current package families. - Read
references/collaboration-guide.mdfor server routes, loading shared units, status, collaborators, and flushing pending changes. - Read
references/exchange-guide.mdfor Sheets, Docs, Slides, Bases, Boards, and PDFs exchange methods and snapshot conversion. - Read
references/print-guide.mdfor Sheets print configuration, range screenshots, and Slides print. - Read
references/license-guide.mdfor registration order and worker-license propagation. - Read
references/facade-extension-pro.mdfor current pivot, chart, shape, sparkline, and collaboration Facade methods.
Anti-patterns
- Do not migrate a
0.25.0entry by changing only version strings. Current presets, aggregate CSS, Facade export surfaces, product hosts, and registration composition differ; use the verified comparison inpro-features-guide.md. - Do not copy
0.xmethod names such asimportXLSXToUnitIdAsync,newChart()without a type,setChartType,newShape, orPrintOrientationinto a1.0.0-beta.0project. - Do not put Sheets-specific exchange options on
UniverExchangeClientPlugin; configureUniverSheetsExchangeClientPlugininstead. - Do not instantiate or mutate internal models for an operation that has a Facade or Command API.
- Do not commit client licenses or embed server-license files in frontend bundles.
- Do not omit Pro locale bundles or package styles in browser integrations.
Signals
- GitHub stars
- 66
- Forks
- 3
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
univer-pro-integrate- Source
- github.com/dream-num/skills