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…