Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

syncfusion-blazor-spreadsheet-editorsyncfusion Blazor 电子表格编辑器

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

1,093

周安装

46

GitHub Stars

公开资料未说明

下载量

383
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-blazor-spreadsheet-editor(syncfusion Blazor 电子表格编辑器)
来源仓库:https://github.com/syncfusion/spreadsheet-editor-sdk-skills
仓库路径:skills/syncfusion-blazor-spreadsheet-editor
安装命令:
npx skills add https://github.com/syncfusion/spreadsheet-editor-sdk-skills --skill syncfusion-blazor-spreadsheet-editor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/spreadsheet-editor-sdk-skills --skill syncfusion-blazor-spreadsheet-editor

简介

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。

  • 适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。
  • 使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • syncfusion-blazor-spreadsheet-editor 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Syncfusion Blazor Spreadsheet Editor

Overview

Generates production-ready C# and Razor code for integrating the Syncfusion Blazor Spreadsheet component into Blazor Server or WebAssembly applications. The skill produces copy-pasteable code snippets with Excel-like functionality including cell editing, formatting, formulas, data operations, and worksheet management.

Key Capabilities

  • Data & Binding: Load from byte[], local JSON file, remote JSON URL, or Google Drive; save via Ribbon
  • Cell & Range Operations: Editing with events, UpdateCell, set formulas, autofill, range actions, merge/unmerge cells, cell formatting, number formats
  • Rows, Columns & Worksheets: Insert/resize rows and columns; insert, delete, move, and duplicate worksheets
  • Data Operations: filtering, sorting, hyperlink add/edit/remove, cut/copy/paste, cell and range selection
  • UI & Interactivity: Hide/show Formula bar, Hide/show Context Menu, custom data rendered via XlsIO
  • Protection & History: Sheet and workbook protection/unprotection, undo/redo operations
  • Images: Insert, resize, and move images through UI (enabled by default)

Quick Start Examples

Example 1: Display a basic spreadsheet

User: "Add a basic Spreadsheet to my Blazor page" Result: C# + Razor code snippet displayed (no files created)

Example 2: Disable filtering and sorting

User: "Create a spreadsheet with filtering and sorting disabled" Result: Basic sample merged with filtering.md and sorting.md snippets


Generate C# Code for the User's Project *(default)*

Trigger keywords: "how to", "add spreadsheet", "code sample", "show me", "example", "snippet", "integrate", "component", "create sample", "code", "sample code", "generate code", "implement", "add to project", "configure spreadsheet"

Step 1 - Analyze Request & Select Snippets

  • Parse the user's intent and identify the requested features.
  • Always start with references/basic-sample.md as the base.
  • Map each requested feature to its corresponding references/*.md file.
  • If no feature keywords match, output only the basic sample.

Step 2 - Consent & Destination Gate (MUST ASK FIRST - STOP HERE UNTIL USER RESPONDS)

Before generating or writing any files, ask the user:

I'm ready to generate your Syncfusion Blazor Spreadsheet sample.

Where should I place it?
1) Create a new Razor file in the skill's "output" folder (recommended for quick tryout)
2) Add/modify an existing file in your project (please provide full path; choose append or replace)
Or, say "Just show me the code" to get the snippet here without changing files.
  • Do not proceed until the user explicitly chooses an option or says "Just show me the code."
  • If the user declines file changes, only output the code in chat (no files created/modified).

For Option 2 only: Before generating code, check if the project has the prerequisites from references/basic-sample.md (Prerequisites and Setup Requirements section). If missing, ask user consent and add them.

Step 3 - Generate Code (Dry-Run)

Build the code in-memory by merging:

  • Base: references/basic-sample.md
  • Merge matched feature snippets into its anchors: PROPERTY, EVENTS, BUTTON, API METHOD
  • Do not invent or modify any property, event, or API beyond what the reference files contain

Step 4 - Apply Changes (Only After Consent)

Option A - Create new file in skill's folder:

  • Create a output/ folder at the skill's root and place the file there
  • Default file name: SpreadsheetSample.razor (configurable via user reply)
  • If the file already exists, ask: A file named "SpreadsheetSample.razor" already exists. Overwrite, append, or use a different name? Stop and wait for the user's decision before proceeding.
  • Write the generated Razor/C# content.

Option B - Add to user's project file:

  • Ask the user for the full path of the target file and whether to append or replace
  • If the path does not exist, ask: I can create this file. Proceed with creation?
  • If replacing, make a backup copy (e.g., .bak) before writing (if the environment supports it)
  • Apply the change per the user's instruction.

Step 5 - Report Outcome

Done
- Location: {path}
- Action: {created|overwritten|appended}
- Notes: {any warnings or unsupported features}

If file operations were skipped, confirm that the code was only displayed in chat.


Code References

All templates and feature snippets live in references/*.md. Each file is a focused snippet the agent combines when generating samples.

Flow: Always start with references/basic-sample.md, then merge matched feature snippets into its anchors (PROPERTY, EVENTS, BUTTON, API METHOD). If no feature keywords match, return only the basic sample.

Supported Features: Editing, Filtering, Sorting, Cell merging, Insert row/column, Hyperlink, Clipboard actions, Cell formatting, open and save, selection

FilePurpose
basic-sample.mdMinimal Spreadsheet sample with byte[] DataSource and Ribbon
open-save.mdOpen (byte[], local JSON, remote JSON URL, Google Drive) and Save via Ribbon
worksheet.mdWorksheet insert, delete, move, and duplicate
cell-range.mdAutofill & range actions
merge.mdMerge cells, unmerge cells
editing.mdBind editing events, UpdateCell, set formula
formula.mdFormula bar toggle
formatting.mdNumber formats and cell formatting
contextmenu.mdToggle context menu
rows-columns.mdInsert rows/columns, resizing rows/columns
filtering.mdColumn filtering
sorting.mdMulti-column sorting
hyperlink.mdHyperlink add and remove
clipboard.mdCut, Copy, Paste
selection.mdCell and range selection
undo-redo.mdUndo and redo actions
protection.mdSheet and workbook protection and unprotection
custom-data.mdCreate a custom data spreadsheet using XlsIO
common.mdHeight, Width, ID, CssClass, ActiveSheetIndex, Image

Rules

  1. Use Only Reference Snippets

- Generate code exclusively from the Markdown files under references/ - Do not invent/guess/include any properties, events, API methods, component names, or parameters not present in references/*.md

  1. UI interaction feature

- The following features support only UI interaction and have no customization options (no methods, events, or properties): - Gridlines - Toggle visibility through UI only - Clear - Clear content through UI context menu only - Named Ranges - Create and manage through UI only - Protection - Protect/unprotect sheets through UI only - Undo/Redo - Undo and redo actions through UI only - Images - Image insert, resize and move actions through UI only - Do not generate methods, events, or properties for these features - Only add these features if they are explicitly mentioned in references/*.md files - If a user requests customization for these features, inform them: This feature supports only UI interaction and does not have programmatic customization options in the Blazor Spreadsheet component.

  1. Unsupported Feature Handling

- If the user requests a feature with no corresponding snippet in references/*.md, respond with: That feature is not currently supported by the Syncfusion Blazor Spreadsheet component. - Suggest the closest supported features only if they have snippets - Explicitly list unsupported items and do not synthesize code for them

  1. Validation Before Write

- Re-validate before writing that all code blocks originate from references/*.md files - If validation fails, stop and inform the user

  1. Transparency

- Include a Supported vs. Unsupported summary in the final report when applicable


适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.48%
按下载量换算128

Claude

29.28%
按下载量换算112

Cursor

19.72%
按下载量换算76

Gemini CLI

9.4%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills