power-platform-developer-suite copilot-instructions.md

power-platform-developer-suite copilot-instructions.md is an instructions file for GitHub Copilot from joshsmithxrm/power-platform-developer-suite. It costs 402 tokens per session, scanned A, original, MIT.

Code-review instructions for a Power Platform developer suite, covering its architecture and rules for user interfaces, services, file access, errors, and Dataverse. Dataverse is Microsoft's data platform used by Power Platform applications.

In plain words
What is it for?
Reviewing CLI and TUI changes, checking service boundaries, validating progress and cancellation handling, and reviewing Dataverse operations.
Why use it?
It prevents business logic and file operations from being placed in the wrong layer and guides consistent error handling and data access.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/joshsmithxrm/power-platform-developer-suite/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/joshsmithxrm/power-platform-developer-suite

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for power-platform-developer-suite copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/joshsmithxrm/power-platform-developer-suite/copilot-instructions.svg)](https://agentmods.dev/instructions/joshsmithxrm/power-platform-developer-suite/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/joshsmithxrm/power-platform-developer-suite/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/joshsmithxrm/power-platform-developer-suite/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 402 This file is loaded in full into every session.
When invoked 402 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00402 $0.00402
Opus 5 $0.00201 $0.00201
Sonnet 5 $0.00080 $0.00080
Haiku 4.5 $0.00040 $0.00040

Measured 4d ago against content hash e824cfb79f05, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

power-platform-developer-suite copilot-instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/copilot-instructions.md · 58 lines

What it actually says

Copilot Code Review Instructions

This file guides GitHub Copilot's code review behavior for the PPDS repository.

Architecture (ADRs 0015, 0024, 0025, 0026)

Layer Rules

  • CLI/TUI are THIN presentation adapters - no business logic
  • Application Services own all business logic
  • Services are UI-agnostic - no Console.WriteLine, no Spectre/Terminal.Gui references

File I/O

  • UIs never read/write files directly
  • All file access through Application Services
  • WRONG: File.ReadAllText in command handler
  • CORRECT: await _profileService.GetProfilesAsync()

Progress Reporting

  • Services accept IProgressReporter, not write to console
  • UIs implement adapters for their display medium
  • Services return data, presentation layers format it

Error Handling

  • Services throw PpdsException with ErrorCode and UserMessage
  • Never expose technical details (GUIDs, stack traces) in UserMessage
  • UIs format errors for their medium

Dataverse Patterns

  • Use bulk APIs (CreateMultiple, UpdateMultiple) not loops with single operations
  • Use FetchXML aggregate for counting, not retrieve-and-count
  • Propagate CancellationToken through all async methods
  • Get pool client INSIDE parallel loops, not outside

Style Preferences

Do NOT suggest:

  • Converting foreach loops with if conditions to LINQ .Where() chains
  • Replacing if/else with ternary operators
  • "Simplifying" explicit control flow

These are intentional style choices per project conventions.

Valuable Findings

DO flag:

  • Code duplication across files
  • Resource leaks (missing disposal, using statements)
  • Missing CancellationToken propagation
  • Sync-over-async patterns (.GetAwaiter().GetResult())
  • Thread safety issues in async code
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 58 lines · 402 tokens per session scan A e824cfb79f05

Subscribe to this mod's changes

power-platform-developer-suite copilot-instructions.md is an instructions file published in the GitHub repository joshsmithxrm/power-platform-developer-suite (5 stars, last pushed 10d ago), licensed MIT. It adds 402 tokens to every session, about $0.0020 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.