Token导航 LogoToken导航TokenDH.com
研究检索可写文件github未标认证来源可访问许可证需确认审计通过

syncfusion-flutter-pdfsyncfusion Flutter PDF 搜索

Agent Skill

syncfusion-flutter-pdf 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

861

周安装

37

GitHub Stars

公开资料未说明

下载量

302
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/document-sdk-skills --skill syncfusion-flutter-pdf

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • syncfusion-flutter-pdf 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

PDF Document Processing Using Syncfusion Flutter PDF Library

Create, edit, and save PDF documents (.pdf) using the Syncfusion Flutter PDF library. This skill supports generating Dart code snippets for Flutter projects targeting mobile, web, and desktop platforms.


Generate Dart Code for the User's Flutter Project *(default)*

Trigger keywords: "show me how", "how to", "how can I", "how do I", "provide code", "provide an example", "give an example", "demonstrate", "code snippet", "sample code", "example", "sample", "give me", "show me", "main.dart", "example code", "generate code for", "codesnippet".

Workflow:

Step 1 — Detect the Platform and Suggest the Correct Package

  • Inspect the workspace project files (pubspec.yaml, main.dart, etc.) to identify the Flutter platform target (mobile, web, desktop).
  • Tell the user to add syncfusion_flutter_pdf to their pubspec.yaml before generating any code.

Step 2 — Generate Code from Reference Files Only

Do NOT invent, guess, or suggest any API, class, method, or property not explicitly present in the reference files.

  • Read the relevant references/*.md file(s) for the requested feature
  • Build Dart code strictly from the APIs and snippets found in those files
  • Use the correct save/launch pattern for the target platform:

- MobilegetApplicationSupportDirectory() + OpenFile.open() - DesktopgetApplicationSupportDirectory() + OpenFile.open() - Web → base64 + JavaScript download or web package approach

  • Do not create or run any standalone Dart script

Code References

All snippets are in the references/ folder:

FileContents
document-structure.mdCreate/load document, page settings, orientation, margins, sections, save to file/stream, incremental update, compression, open encrypted PDF, dispose
pages.mdAdd/insert/remove/rotate pages, get page count, set margins, sections with different page settings, get client size
flow-layout.mdChain elements using PdfLayoutResult, paginate text across pages, PdfLayoutFormat options
text.mdDraw text (drawString, PdfTextElement), standard/TrueType/CJK fonts, RTL text, multicolumn text, pens and brushes
images.mdInsert JPEG/PNG images (PdfBitmap), apply transparency and rotation, insert from web URL
shapes.mdDraw polygon, line, curve, path, rectangle, pie, arc, bezier, ellipse
tables.mdCreate PdfGrid, add columns/headers/rows, cell/row/column customization, built-in styles, pagination, multiple tables
lists.mdOrdered lists (PdfOrderedList), unordered lists (PdfUnorderedList), sub-lists
header-footer.mdAdd headers and footers (PdfPageTemplateElement), automatic fields (page number, page count, date/time), composite fields
bookmarks.mdAdd/insert/remove/modify bookmarks (PdfBookmark), child bookmarks, destination, color, text style
annotations.mdRectangle, ellipse, line, polygon, URI, document link, text web link, text markup, popup annotations; flatten, modify, remove annotations; import/export FDF/XFDF/JSON
hyperlinks.mdWeb navigation links (PdfTextWebLink), URI annotations, internal document navigation (PdfDocumentLinkAnnotation), destination modes
watermarks.mdText and image watermarks with transparency and rotation, apply to all pages via PdfPageTemplateElement stamp
pdf-templates.mdCreate PdfTemplate, draw templates on pages, extract page as template using createTemplate, stamp overlays with PdfPageTemplateElement
digital-signature.mdPdfSignatureField, PdfCertificate, sign new/existing PDF, signature appearance, external signer, multiple signatures, timestamp, LTV
text-extraction.mdExtract text (full/page/range), extract text lines/words/characters with bounds and font info, find text with MatchedItem
pdf-conformance.mdPDF/A-1b, PDF/A-2b, PDF/A-3b conformance levels, embedded fonts requirement, attachment relationships for PDF/A-3b
attachments.mdAdd/remove file attachments (PdfAttachment), attach from base64, extract and save to disk, PDF/A-3b attachment metadata
layers.mdAdd/toggle/remove layers (PdfPageLayer), nested layers (PdfLayer), visibility control, flatten layers
forms.mdAcroForm fields: text box, combo box, radio button, list box, check box, signature, button; fill/modify/flatten/remove fields; import/export FDF/XFDF/JSON/XML
encryption.mdRC4 and AES encryption, user/owner passwords, permissions (print, copy, edit), protect existing PDF, change/remove password

Rules

  • Output files go in ./output/ directory
  • Temp .dart scripts must be created inside {skill-root}/flutter/pdf/scripts/ — never in the workspace root or customer scripts/ folder
  • Never leave temp .dart files after execution
  • Always call document.dispose() after saving
  • All units in PDF are in points (not pixels)
  • Use PdfLayoutResult to chain elements and avoid content overlap

Prerequisites

  • Flutter SDK installed
  • Add to pubspec.yaml: dependencies: syncfusion_flutter_pdf: ^xx.x.xx
  • Run: flutter pub get
  • Import in Dart code: import 'package:syncfusion_flutter_pdf/pdf.dart';

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.6%
按下载量换算98

Claude

31.19%
按下载量换算94

Cursor

20.22%
按下载量换算61

Gemini CLI

9.43%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills