CtrlK
BlogDocsLog inGet started
Tessl Logo

setup-datamodel

This skill should be used when the user asks to "create Dataverse tables", "set up the data model", "setup dataverse", "create tables for my site", "setup dataverse schema", "create the database", "build my data model", or wants to create Dataverse tables, columns, and relationships for their Power Pages site based on a data model proposal.

Install with Tessl CLI

npx tessl i github:microsoft/power-platform-skills --skill setup-datamodel
What are skills?

88

Quality

87%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SKILL.md
Review
Evals

Set Up Dataverse Data Model

Guide the user through creating Dataverse tables, columns, and relationships for their Power Pages site. Follow a systematic approach: verify prerequisites, obtain a data model (via AI analysis or user-provided diagram), review and approve, then create all schema objects via OData API.

Core Principles

  • Never create without approval: Always present the full data model proposal and get explicit user confirmation before making any Dataverse changes.
  • Use TaskCreate/TaskUpdate: Track all progress throughout all phases — create the todo list upfront with all phases before starting any work.
  • Resilient execution: Refresh tokens proactively, check for existing tables before creating, and report failures without automated rollback.

Initial request: $ARGUMENTS


Phase 1: Verify Prerequisites

Goal: Confirm PAC CLI authentication, acquire an Azure CLI token, and verify API access

Actions:

  1. Create todo list with all 8 phases (see Progress Tracking table)
  2. Follow the prerequisite steps in ${CLAUDE_PLUGIN_ROOT}/references/dataverse-prerequisites.md to verify PAC CLI auth, acquire an Azure CLI token, and confirm API access. Store the environment URL as $envUrl.

Output: Verified PAC CLI auth, valid Azure CLI token, confirmed API access, $envUrl stored


Phase 2: Choose Data Model Source

Goal: Determine whether the user will upload an existing ER diagram or let AI analyze the site

Actions:

  1. Ask the user how they want to define the data model using the AskUserQuestion tool:

    Question: "How would you like to define the data model for your site?"

    OptionDescription
    Upload an existing ER diagramProvide an image (PNG/JPG) or Mermaid diagram of your existing data model
    Let the Data Model Architect figure it outThe Data Model Architect will analyze your site's source code and propose a data model automatically
  2. Route to the appropriate path:

Path A: Upload Existing ER Diagram

If the user chooses to upload an existing diagram:

  1. Ask the user to provide their ER diagram. Supported formats:

    • Image file (PNG, JPG) — Use the Read tool to view the image and extract tables, columns, relationships, and cardinalities from it
    • Mermaid syntax — The user can paste Mermaid ER diagram text directly in chat
    • Text description — A structured list of tables, columns, and relationships
  2. Parse the diagram into the same structured format used by the data-model-architect agent:

    • Publisher prefix (ask the user, or retrieve from the environment via pac env who)
    • Table definitions: logicalName, displayName, status (new/modified/reused), columns, relationships
    • Column definitions: logicalName, displayName, type, required
    • Relationship definitions: type (1:N or M:N), referenced/referencing tables
  3. Query existing Dataverse tables (same as Phase 3 would) to mark each table as new, modified, or reused.

  4. Generate a Mermaid ER diagram from the parsed data (if the user provided an image or text) for visual confirmation.

  5. Proceed directly to Phase 4: Review Proposal with the parsed data model.

Path B: Let the Data Model Architect Figure It Out

If the user chooses to let the Data Model Architect figure it out, proceed to Phase 3: Invoke Data Model Architect (the existing automated flow).

Output: Data model source chosen and, for Path A, parsed data model ready for review


Phase 3: Invoke Data Model Architect

Goal: Spawn the data-model-architect agent to autonomously analyze the site and propose a data model

Actions:

  1. Use the Task tool to spawn the data-model-architect agent. This agent autonomously:

    • Analyzes the site's source code to infer data requirements
    • Queries existing Dataverse tables via OData GET requests
    • Identifies reuse opportunities (reuse, extend, or create new)
    • Proposes a complete data model with an ER diagram
  2. Spawn the agent:

    Task tool:
      subagent_type: general-purpose
      prompt: |
        You are the data-model-architect agent. Follow the instructions in
        the agent definition file at:
        ${CLAUDE_PLUGIN_ROOT}/agents/data-model-architect.md
    
        Analyze the current project and Dataverse environment, then propose
        a complete data model. Return:
        1. Publisher prefix
        2. Table definitions (logicalName, displayName, status, columns, relationships)
        3. Mermaid ER diagram
  3. Wait for the agent to return its structured proposal before proceeding.

Output: Structured data model proposal from the agent (publisher prefix, table definitions, ER diagram)


Phase 4: Review Proposal

Goal: Present the data model proposal to the user and get explicit approval before creating anything

Actions:

4.1 Present Proposal

Present the data model proposal directly to the user as a formatted message, including:

  • Publisher prefix
  • All proposed tables with columns (logical names + display names)
  • Relationship descriptions
  • Mermaid ER diagram
  • Which tables are new vs. modified vs. reused

4.2 Get User Approval

Use AskUserQuestion to get approval:

QuestionHeaderOptions
Does this data model look correct?Data Model ProposalApprove and create tables (Recommended), Request changes, Cancel
  • If "Approve and create tables (Recommended)": Proceed to Phase 5
  • If "Request changes": Ask what they want changed, modify the proposal, and re-present for approval
  • If "Cancel": Stop the skill

Only proceed to creation after explicit user approval.

Output: User-approved data model proposal


Phase 5: Pre-Creation Checks

Goal: Refresh the token, verify what already exists in Dataverse, and build the creation plan to avoid duplicates

Actions:

5.1 Refresh Token

Re-acquire the Azure CLI token (tokens expire after ~60 minutes):

$token = az account get-access-token --resource "$envUrl" --query accessToken -o tsv

5.2 Query Existing Tables

For each table in the approved proposal marked as new, check whether it already exists:

$headers = @{ Authorization = "Bearer $token"; Accept = "application/json" }
Invoke-RestMethod -Uri "$envUrl/api/data/v9.2/EntityDefinitions(LogicalName='<table_logical_name>')" -Headers $headers
  • If 404: Table does not exist, proceed to create it
  • If 200: Table already exists — skip creation, warn the user

For tables marked as modified, verify the table exists (it should) and check which columns are missing.

5.3 Build Creation Plan

From the pre-creation checks, build a list of:

  • Tables to create (new tables that don't exist yet)
  • Columns to add (new columns on existing/modified tables)
  • Relationships to create
  • Tables/columns to skip (already exist)

Inform the user of any skipped items.

Output: Finalized creation plan with tables, columns, and relationships to create or skip


Phase 6: Create Tables & Columns

Goal: Create each approved table and its columns using the Dataverse OData Web API

Actions:

Refer to references/odata-api-patterns.md for full JSON body templates.

6.1 Create Tables

For each new table, POST to the EntityDefinitions endpoint:

$body = <JSON body from references/odata-api-patterns.md>
$headers = @{
  Authorization = "Bearer $token"
  "Content-Type" = "application/json"
  Accept = "application/json"
}
Invoke-RestMethod -Method Post -Uri "$envUrl/api/data/v9.2/EntityDefinitions" -Headers $headers -Body $body

Use the deep-insert pattern to create the table and its columns in a single POST request. See references/odata-api-patterns.md for the complete JSON structure.

6.2 Add Columns to Existing Tables

For tables marked as modified, add new columns one at a time:

$body = <column JSON from references/odata-api-patterns.md>
Invoke-RestMethod -Method Post -Uri "$envUrl/api/data/v9.2/EntityDefinitions(LogicalName='<table>')/Attributes" -Headers $headers -Body $body

6.3 Track Progress

Track each creation attempt and its result (success/failure/skipped). Do NOT attempt automated rollback on failure — report failures and continue with remaining items.

6.4 Refresh Token if Needed

If creating many tables, refresh the token between batches (every 3–4 tables) to avoid expiration:

$token = az account get-access-token --resource "$envUrl" --query accessToken -o tsv

Output: All approved tables and columns created (or failures reported)


Phase 7: Create Relationships

Goal: Create all relationships between the newly created and existing tables

Actions:

7.1 One-to-Many Relationships

Create lookup columns that establish 1:N relationships:

$body = <relationship JSON from references/odata-api-patterns.md>
Invoke-RestMethod -Method Post -Uri "$envUrl/api/data/v9.2/RelationshipDefinitions" -Headers $headers -Body $body

7.2 Many-to-Many Relationships

Create M:N relationships (intersect tables are created automatically):

$body = <M:N relationship JSON from references/odata-api-patterns.md>
Invoke-RestMethod -Method Post -Uri "$envUrl/api/data/v9.2/RelationshipDefinitions" -Headers $headers -Body $body

7.3 Track Relationship Creation

Track each relationship creation attempt. Report failures without rolling back.

Output: All approved relationships created (or failures reported)


Phase 8: Publish & Verify

Goal: Publish all customizations, verify tables exist, write the manifest, and present a summary

Actions:

8.1 Publish Customizations

Publish all customizations so the new tables and columns become available:

$publishBody = @{
  ParameterXml = "<importexportxml><entities><entity>$( ($tables | ForEach-Object { $_.logicalName }) -join '</entity><entity>' )</entity></entities></importexportxml>"
} | ConvertTo-Json

Invoke-RestMethod -Method Post -Uri "$envUrl/api/data/v9.2/PublishXml" -Headers $headers -Body $publishBody -ContentType "application/json"

See references/odata-api-patterns.md for the full PublishXml pattern.

8.2 Verify Tables Exist

For each created table, run a verification query:

Invoke-RestMethod -Uri "$envUrl/api/data/v9.2/EntityDefinitions(LogicalName='<table>')?`$select=LogicalName,DisplayName" -Headers $headers

8.3 Write Manifest

After successful verification, write .datamodel-manifest.json to the project root. This file records which tables and columns were verified to exist, and is used by the validation hook.

{
  "environmentUrl": "https://org12345.crm.dynamics.com",
  "tables": [
    {
      "logicalName": "cr123_project",
      "displayName": "Project",
      "status": "new",
      "columns": [
        { "logicalName": "cr123_name", "type": "String" },
        { "logicalName": "cr123_description", "type": "Memo" }
      ]
    }
  ]
}

Use the Write tool to create this file at <PROJECT_ROOT>/.datamodel-manifest.json. Only include tables and columns that were confirmed to exist in Step 8.2. See ${CLAUDE_PLUGIN_ROOT}/references/datamodel-manifest-schema.md for the full schema specification.

8.4 Record Skill Usage

Reference: ${CLAUDE_PLUGIN_ROOT}/references/skill-tracking-reference.md

Follow the skill tracking instructions in the reference to record this skill's usage. Use --skillName "SetupDatamodel".

8.5 Present Summary

Present a summary to the user:

TableStatusColumnsRelationships
cr123_project (Project)Created5 columns2 relationships
contact (Contact)Reused1 column added
cr123_task (Task)Created4 columns1 relationship

Include:

  • Total tables created/modified/reused/failed
  • Total columns created/skipped/failed
  • Total relationships created/failed
  • Any errors encountered with details
  • Location of the manifest file (.datamodel-manifest.json)

8.6 Suggest Next Steps

After the summary, suggest:

  • Review created tables in the Power Pages maker portal
  • Populate tables with sample data for testing: /power-pages:add-sample-data
  • Integrate tables with your site's frontend via Web API: /power-pages:integrate-webapi
  • If the site is not yet built: /power-pages:create-site
  • If the site is ready to deploy: /power-pages:deploy-site

Output: Published customizations, verified tables, manifest written, summary presented


Important Notes

Throughout All Phases

  • Use TaskCreate/TaskUpdate to track progress at every phase
  • Ask for user confirmation at key decision points (see list below)
  • Refresh tokens proactively — re-acquire the Azure CLI token before any batch of API calls, especially if more than a few minutes have passed
  • Report failures without rollback — track each creation attempt and continue with remaining items on failure

Key Decision Points (Wait for User)

  1. After Phase 2: Data model source chosen (upload vs. AI)
  2. After Phase 4: Approve data model proposal before any creation
  3. After Phase 5: Acknowledge any skipped items before proceeding
  4. After Phase 8: Review summary and choose next steps

Progress Tracking

Before starting Phase 1, create a task list with all phases using TaskCreate:

Task subjectactiveFormDescription
Verify prerequisitesVerifying prerequisitesConfirm PAC CLI auth, acquire Azure CLI token, verify API access
Choose data model sourceChoosing data model sourceAsk user to upload ER diagram or let AI analyze the site
Invoke data model architectInvoking data model architectSpawn agent to analyze site and propose data model
Review and approve proposalReviewing proposalPresent data model proposal to user, get explicit approval
Pre-creation checksRunning pre-creation checksRefresh token, query existing tables, build creation plan
Create tables and columnsCreating tables and columnsPOST to OData API to create tables and columns
Create relationshipsCreating relationshipsPOST to OData API to create 1:N and M:N relationships
Publish and verifyPublishing and verifyingPublish customizations, verify tables, write manifest, present summary

Mark each task in_progress when starting it and completed when done via TaskUpdate. This gives the user visibility into progress and keeps the workflow deterministic.


Begin with Phase 1: Verify Prerequisites

Repository
microsoft/power-platform-skills
Last updated
Created

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.