Agent skill
Powerplatform
Generate Power Automate flows from natural language. Reads connector schemas from work repo, outputs deployable solution files. USE WHEN user says 'create flow', 'power automate', 'automate workflow', or describes a business process to automate.
Install this agent skill to your Project
npx add-skill https://github.com/robdtaylor/personal-ai-infrastructure/tree/main/skills/PowerPlatform
SKILL.md
PowerPlatform - Flow Generation Skill
Generate Power Automate flows from natural language descriptions using connector schemas exported from your work environment.
Examples
Example: Simple notification flow
Example: Approval workflow
User: "Make a flow for document approval - when a file is added to SharePoint, start an approval, then move to approved/rejected folder"
-> Uses SharePoint trigger + Approvals + SharePoint actions
-> Includes conditional branching
-> Outputs deployable solution
Architecture
Work Repo (schemas) PAI (this skill)
~/Projects/work/scripts/ ~/.claude/skills/PowerPlatform/
power-platform/
├── connectors/ ──reads──> ├── SKILL.md
│ ├── shared_teams.json ├── templates/
│ ├── shared_outlook.json ├── reference/
│ └── ... └── examples/
├── manifest.json
└── generated/ <──writes── [Solution ZIPs]
Workflow
1. Check Available Connectors
Before generating, read the manifest to see what connectors are available:
cat ~/Projects/work/scripts/power-platform/manifest.json
If manifest.json doesn't exist or is stale, inform user to run the export script at work.
2. Parse User Request
Extract from natural language:
- Trigger: What starts the flow (email arrives, file created, scheduled, manual)
- Actions: What the flow does (send message, create item, update record)
- Conditions: Any branching logic (if/then, switch)
- Data flow: What data passes between steps
3. Generate Flow Definition
Create the flow JSON following Power Automate schema. Key structure:
{
"properties": {
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"triggers": { ... },
"actions": { ... }
},
"connectionReferences": { ... }
}
}
4. Package as Solution
Wrap in solution structure for import:
solution/
├── [Content_Types].xml
├── customizations.xml
├── solution.xml
└── Workflows/
└── {flow-guid}-{flow-name}.json
5. Output
Save to: ~/Projects/work/scripts/power-platform/generated/
Connection References
Flows use connection references that map to actual connections in the target environment. Use placeholder IDs that will be resolved on import:
"connectionReferences": {
"shared_teams": {
"connectionName": "shared_teams",
"source": "Embedded",
"id": "/providers/Microsoft.PowerApps/apis/shared_teams",
"tier": "NotSpecified"
}
}
On import, Power Platform prompts user to map these to their actual connections.
Expression Syntax
Power Automate uses a specific expression language. Common patterns:
Dynamic Content References
@{triggerOutputs()?['body/subject']} # Email subject from trigger
@{body('Get_item')?['Title']} # Field from previous action
@{items('Apply_to_each')?['name']} # Current item in loop
Functions
@{utcNow()} # Current timestamp
@{concat('Hello ', triggerBody()?['name'])} # String concatenation
@{if(equals(1,1),'yes','no')} # Conditional
@{length(body('Get_items')?['value'])} # Array length
@{formatDateTime(utcNow(),'yyyy-MM-dd')} # Date formatting
Conditions
"expression": {
"and": [
{ "contains": ["@triggerOutputs()?['body/subject']", "urgent"] },
{ "equals": ["@triggerOutputs()?['body/importance']", "high"] }
]
}
See reference/expressions.md for full syntax guide.
Common Triggers
| Trigger | Connector | Use Case |
|---|---|---|
When_a_new_email_arrives |
Office365 | Email automation |
When_a_file_is_created |
SharePoint | Document workflows |
When_an_item_is_created |
SharePoint | List automation |
When_a_row_is_added |
Dataverse | Database triggers |
Recurrence |
Schedule | Scheduled jobs |
manual |
Manual | Button-triggered |
When_a_HTTP_request_is_received |
HTTP | Webhook/API trigger |
Common Actions
| Action | Connector | Use Case |
|---|---|---|
Send_an_email |
Office365 | Email notifications |
Post_message_in_a_chat_or_channel |
Teams | Team notifications |
Create_item |
SharePoint | Add list items |
Update_item |
SharePoint | Modify list items |
Start_and_wait_for_an_approval |
Approvals | Approval workflows |
Create_a_row |
Dataverse | Database writes |
HTTP |
HTTP | External API calls |
Templates
Pre-built patterns in templates/:
approval-flow.json- Standard approval workflownotification-flow.json- Event-triggered notificationsscheduled-report.json- Scheduled data collectionform-processing.json- Forms response handlingfile-sync.json- Cross-system file operations
Generation Process
When asked to create a flow:
-
Read available schemas:
bashls ~/Projects/work/scripts/power-platform/connectors/ cat ~/Projects/work/scripts/power-platform/manifest.json -
Load relevant connector schemas for the requested functionality
-
Select appropriate template or build from scratch
-
Generate flow JSON with:
- Unique GUID for flow
- Proper trigger configuration
- Action sequence with correct operation IDs
- Connection references for all connectors used
- Expression syntax for dynamic content
-
Create solution package using
tools/package-solution.sh -
Save to generated folder and inform user
Limitations
- Cannot deploy directly - User must import at work
- Connection mapping required - User maps connections on import
- Premium connectors - Some require premium licenses
- Custom connectors - Not supported without schema export
- Schema freshness - Depends on export frequency at work
Files Reference
| File | Purpose |
|---|---|
templates/*.json |
Pre-built flow patterns |
reference/expressions.md |
Expression syntax guide |
reference/triggers.md |
Trigger configurations |
reference/actions.md |
Action configurations |
examples/*.json |
Working example flows |
tools/package-solution.sh |
Solution packager script |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
Cncsetup
Generate standardized CNC setup sheets for MNMUK machine shop. Covers DMG MORI mills/lathes, CITIZEN Swiss, MITSUBISHI EDM, and Haas machines. USE WHEN user says 'setup sheet', 'create setup', 'job setup', 'machine setup', 'tooling list', 'fixture setup', or 'new job' for any CNC operation.
Costengineering
Manufacturing cost accounting, analysis, and reduction for automotive operations. Covers overhead/burden rate calculation, variance analysis, make vs buy decisions, value engineering, and cycle time to cost conversion. USE WHEN user says 'cost analysis', 'overhead rate', 'burden rate', 'variance analysis', 'make vs buy', 'value engineering', 'cost reduction', 'should cost', 'labour rate', or needs manufacturing cost guidance.
Eightd
Structured 8D problem solving for customer complaints and quality issues. D0-D8 phases with containment, root cause analysis, and escape point identification. USE WHEN user says '8D', 'eight disciplines', 'customer complaint', 'corrective action', 'root cause analysis', 'containment', 'escape point', or 'problem solving report'.
Toolcrib
Tool inventory management for MNMUK machine shop. Tracks tooling, inserts, consumables with reorder points and usage. USE WHEN user asks 'tool inventory', 'what inserts', 'reorder', 'tool crib', 'do we have', 'tooling cost', or 'tool usage'.
Damperassembly
Dept 71 damper assembly operations for DSSV (Dynamic Suspensions Spool Valve) dampers. Covers component receipt, sub-assembly, fluid fill, gas charging, functional testing, and troubleshooting. USE WHEN user says 'damper', 'Dept 71', 'DSSV', 'spool valve', 'damper assembly', 'damper test', 'dyno test', 'fluid fill', 'gas charge', or needs damper-specific guidance.
Skillsmatrix
Operator training and competency tracking for MNMUK machine shop. Supports IATF 16949 competency requirements and workforce planning. USE WHEN user asks 'who can run', 'training matrix', 'competency', 'skills matrix', 'operator certification', 'who is trained on', or workforce planning questions.
Didn't find tool you were looking for?