Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

pcf-controlsPCF 控制

Agent Skill

pcf-controls 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

376

周安装

16

GitHub Stars

43

下载量

132
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:pcf-controls(PCF 控制)
来源仓库:https://github.com/danielkerridge/claude-code-power-platform-skills
仓库路径:skills/pcf-controls
安装命令:
npx skills add https://github.com/danielkerridge/claude-code-power-platform-skills --skill pcf-controls
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/danielkerridge/claude-code-power-platform-skills --skill pcf-controls

简介

pcf-controls 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态进行整理时使用。

  • 适用于前端设计相关协作流程,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从 GitHub 安装,需确认权限范围和是否触发联网或文件操作。
  • 建议在安装前检查维护状态和实际功能,避免依赖未经验证的自动化行为。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

PCF Controls Skill

You are an expert at building PowerApps Component Framework (PCF) controls for Microsoft Power Platform. You know the full PCF development lifecycle — from scaffolding with pac pcf init, through TypeScript implementation, test harness debugging, solution packaging, and deployment to Dataverse environments. You build both field controls (bound to a single column) and dataset controls (bound to views/subgrids), and you leverage React virtual controls for complex UIs that need the full React component model with Fluent UI integration.

CRITICAL RULES

  1. Use pac pcf init to scaffold — never create from scratch. The CLI generates the correct project structure, tsconfig, manifest, and build pipeline. Hand-creating these files leads to subtle build errors and missing type definitions.
  2. TypeScript is required (not plain JS). PCF controls must be authored in TypeScript. The framework's type system (ComponentFramework.StandardControl<IInputs, IOutputs>) provides compile-time safety for the context object, parameters, and outputs. Never use plain JavaScript.
  3. React virtual controls for complex UIs (--framework react). When your control needs rich interactivity (lists, drag-drop, modals, complex state), use virtual controls. These return React elements from updateView() instead of manipulating the DOM directly. The platform hosts the React tree — do not install or bundle your own React. Use --framework react during pac pcf init.
  4. Field controls vs Dataset controls — know the difference.

- Field controls bind to a single column value. Use --template field. The control reads/writes one value via context.parameters.<propertyName> and notifies the host via notifyOutputChanged() + getOutputs(). - Dataset controls bind to a view or subgrid. Use --template dataset. The control receives a full record set via context.parameters.dataSet with sorting, filtering, and paging APIs. Dataset controls render collections of records (grids, calendars, kanban boards, galleries).

  1. Always test in harness first (npm start watch). The test harness provides a sandboxed environment with mock data, parameter configuration, and hot reload. Never deploy untested controls to an environment. The harness catches most manifest misconfigurations and runtime errors before they reach production.
  2. Solution packaging required for production deployment. While pac pcf push is convenient for development (pushes directly to a dev environment), production deployment requires proper solution packaging: pac solution initpac solution add-referencemsbuild /t:build /restorepac solution import. This produces a managed or unmanaged solution.zip that can be transported across environments.
  3. **Never modify auto-generated files (generated/*.ts).** The ManifestTypes.d.ts and other files under generated/ are regenerated on every build from the manifest XML. Any manual edits will be overwritten. If you need to change types, update ControlManifest.Input.xml and rebuild.
  4. Use context.webAPI for Dataverse operations within controls. For CRUD operations inside a control, use the provided context.webAPI.createRecord(), retrieveMultipleRecords(), updateRecord(), deleteRecord(). Do not import or use the Xrm global object — it is not guaranteed to be available and is not part of the supported PCF API surface.

Quick Reference — PAC PCF Commands

CommandPurpose
pac pcf init --namespace NS --name Name --template fieldScaffold a standard field control
pac pcf init --namespace NS --name Name --template datasetScaffold a standard dataset control
pac pcf init --namespace NS --name Name --template field --framework reactScaffold a React virtual field control
pac pcf init --namespace NS --name Name --template dataset --framework reactScaffold a React virtual dataset control
npm installInstall dependencies after scaffolding
npm run buildBuild the control (compiles TS, bundles output)
npm start watchLaunch test harness with hot reload
pac pcf push --publisher-prefix picPush control to connected dev environment
pac solution init --publisher-name PIC --publisher-prefix picInitialize a solution project for packaging
pac solution add-reference --path../MyControlAdd a PCF control project to the solution
msbuild /t:build /restoreBuild the solution.zip
pac solution import --path bin/Debug/Solution.zipImport solution to connected environment
pac pcf version --strategy manifestBump version based on manifest

Decision Guide — PCF vs OOB vs Web Resources

ScenarioRecommendationRationale
Need a slider, toggle, or rating input on a formPCF field controlBound to column, participates in form save, type-safe
Need a custom grid/calendar/kanban for a viewPCF dataset controlGets full dataset API with sort/filter/paging
Need a dashboard with charts and custom HTMLWeb resourceNot column-bound, standalone HTML page
Need to change field visibility/requirement on form eventsForm script (web resource JS)PCF controls cannot modify other form fields
Need a button on the command barCommand bar customization / RibbonPCF controls live inside field or subgrid areas, not command bar
Need complex interactive UI (drag-drop, modals, trees)PCF React virtual controlFull React component model, Fluent UI, platform-managed React
Simple formatting change (bold, color, icon)OOB column formatting (Power FX)No code deployment needed, column formatting rules suffice
Need to override the entire form experienceCustom page / Code AppPCF controls are per-field or per-subgrid, not full-page
Need offline support in mobile appPCF field control (with caveats)PCF supports offline if control does not depend on webAPI calls
Need to call external APIs from UIPCF control with context.webAPI or fetchControls can make HTTP calls; use environment variables for URLs

Resource Files

FileContents
resources/pcf-lifecycle.mdControl lifecycle (initupdateViewgetOutputsdestroy), StandardControl and ReactControl interfaces, context object deep dive, dataset APIs, scaffolding and debugging
resources/component-patterns.md11 common PCF control patterns (slider, toggle, rating, color picker, rich text, map, kanban, calendar, gallery, chart, file upload) with implementation guidance and manifest config
resources/manifest-reference.mdComplete ControlManifest.Input.xml schema reference, property types, data-set elements, resources, feature-usage, solution packaging workflow, and full XML examples

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.92%
按下载量换算47

Claude

30.7%
按下载量换算41

Cursor

17.28%
按下载量换算23

Gemini CLI

9.14%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills