Skip to main content

aidevme/PPTB-skills

SkillsMP는 aidevme/PPTB-skills에서 18개의 skill을 수집했습니다. skill을 열어 소스와 세부 정보를 확인하세요.

최근 기록된 소스 활동
SkillsMP 카탈로그 업데이트
수집된 skills
18
GitHub 스타
3
GitHub 포크
0

이 저장소의 skills

직업 카테고리 2개 · 100% 분류됨

수집된 skill 18개 중 18개를 표시합니다.

직업 분류
소프트웨어 개발자
설명

Scaffolds a new main-process manager for the Power Platform ToolBox host, following the existing settings/connections/tool-lifecycle/auth pattern and wired through `toolboxAPI`/`toolboxAPIBridge.js` so tools never get direct Node.js or Electron access. Use…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Runs lint, type-check, and build steps for the ToolBox host, then produces a platform-specific packaged build from its three Vite bundles. Use when asked to "build the toolbox host and check it's clean", "package a Windows build of the toolbox", "run lint and…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Forks, clones, and bootstraps a local development environment for the Power Platform ToolBox host application. Use when asked to "set up my dev environment for the ToolBox host", "I want to contribute to Power Platform ToolBox", "clone and run the toolbox…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Entry point for building a PPTB tool — a web app that runs inside the Power Platform ToolBox host and talks to Dataverse/Power Platform through injected APIs. Use when asked to "build a PPTB tool", "develop a tool for Power Platform ToolBox", "create a…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Entry point for contributing to the Power Platform ToolBox host application itself — the Electron shell that loads and runs tools. Use when asked to "contribute to the ToolBox host", "set up the ToolBox dev environment", "add a new manager to the ToolBox…

원문 언어: 영어

업데이트
직업 분류
기타 컴퓨터 관련 직업
설명

Exposes a PPTB tool to AI assistants through the ToolBox's built-in MCP server — declaring the `agents` object in `pptb.config.json`, choosing interactive vs. automated execution, and adding a headless `invokeHeadless(input, context)` entry point. Use when…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Wires up `window.dataverseAPI` calls — CRUD, relationship associations, FetchXML/OData queries, entity/attribute/relationship/option-set metadata and schema writes, custom action/function execution, and solution deployment — into an existing PPTB tool's code.…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Wraps a PPTB tool's `toolboxAPI`/`dataverseAPI`/`powerplatformAPI`/file-system calls in `try`/`catch`, adds contextual logging, user-facing notifications, and retry logic for transient failures. Use when asked to "add error handling to this tool", "wrap my…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Wires up `toolboxAPI.events.on()` so a PPTB tool reacts to platform events — connection changes, settings updates, notifications, terminal activity, tool lifecycle — instead of polling. Use when asked to "react when the connection changes", "listen for…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Wires up `toolboxAPI.fileSystem` calls — reading/writing text and binary files, checking existence, listing directories, and native save/select dialogs — into a PPTB tool's code. Use when asked to "read a config file in my tool", "let the user save/export a…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Wires up a PPTB tool as a caller, a callee, or both, so it can launch another installed tool and exchange data with it — the `pptb.config.json` invocation contract plus the `toolboxAPI.invocation.launchTool()`/`getLaunchContext()`/`returnData()` calls. Use…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Wires up `window.powerplatformAPI` namespace calls (environment management, governance, licensing, analytics, and the rest of the Power Platform REST surface) and the Entra app registration prerequisites they depend on. Use when asked to "call the Power…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Wires up `toolboxAPI.settings` calls (`get`/`set`/`getAll`/`setAll`) so a PPTB tool persists user preferences across sessions — page size, theme, grid configuration. Use when asked to "save this preference for my tool", "persist the user's theme/page…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Wires up `window.toolboxAPI` calls — connections (primary/secondary), utils (notifications, clipboard, theme, parallel execution, browser open), terminal sessions, inter-tool invocation, and tool context — into an existing PPTB tool's code. Use when asked to…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Adds and scopes `cspExceptions` entries in a PPTB tool's `package.json` manifest for external domains the tool needs to reach — CDN scripts, external APIs, webfonts, embedded frames. Use when asked to "add a CSP exception", "let my tool call this external…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Scaffolds a new Power Platform ToolBox (PPTB) tool — runs the `yo pptb` generator (or falls back to a manual scaffold), writes a compliant `package.json` manifest, installs `@pptb/types`, and wires a minimal `index.html`/`app.ts` entry point against…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Finalizes, builds, and publishes a PPTB tool to npm, then submits it to the ToolBox registry. Use when asked to "publish my tool", "release my PPTB tool", "submit my tool to the registry", "how do I publish to npm and ToolBox", or when a tool has passed local…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Runs and interprets `pptb-validate` against a PPTB tool's `package.json` manifest before publishing. Use when asked to "validate my PPTB tool", "run pptb-validate", "check my manifest before publishing", "why is my tool failing review", or as the step right…

원문 언어: 영어

업데이트
수집된 skill 18개 중 18개를 표시합니다.