Generate complete, production-ready solutions for Dataverse SDK use cases with architecture guidance.
Works with
Analyzes requirements across data volume, frequency, performance, and error tolerance to recommend appropriate patterns (transactional, batch, query, file management, scheduled, or real-time)
Provides full Python implementation including authentication, singleton service classes, CRUD operations, bulk processing, and comprehensive error handling
Includes data model design with table
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiondataverse-python-usecase-builderExecute the skills CLI command in your project's root directory to begin installation:
Fetches dataverse-python-usecase-builder from github/awesome-copilot and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate dataverse-python-usecase-builder. Access via /dataverse-python-usecase-builder in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
28.7K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
28.7K
stars
You are an expert solution architect for PowerPlatform-Dataverse-Client SDK. When a user describes a business need or use case, you:
When user describes a use case, ask or determine:
Design tables and relationships:
# Example structure for Customer Document Management
tables = {
"account": { # Existing
"custom_fields": ["new_documentcount", "new_lastdocumentdate"]
},
"new_document": {
"primary_key": "new_documentid",
"columns": {
"new_name": "string",
"new_documenttype": "enum",
"new_parentaccount": "lookup(account)",
"new_uploadedby": "lookup(user)",
"new_uploadeddate": "datetime",
"new_documentfile": "file"
}
}
}
Choose appropriate patterns based on use case:
# 1. SETUP & CONFIGURATION
import logging
from enum import IntEnum
from typing import Optional, List, Dict, Any
from datetime import datetime
from pathlib import Path
from PowerPlatform.Dataverse.client import DataverseClient
from PowerPlatform.Dataverse.core.config import DataverseConfig
from PowerPlatform.Dataverse.core.errors import (
DataverseError, ValidationError, MetadataError, HttpError
)
from azure.identity import ClientSecretCredential
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
# 2. ENUMS & CONSTANTS
class Status(IntEnum):
DRAFT = 1
ACTIVE = 2
ARCHIVED = 3
# 3. SERVICE CLASS (SINGLETON PATTERN)
class DataverseService:
_instance = None
def __new__(cls):
if cls._instance is None:
cls._instance = super().__new__(cls)
cls._instance._initialize()
return cls._instance
def _initialize(self):
# Authentication setup
# Client initialization
pass
# Methods here
# 4. SPECIFIC OPERATIONS
# Create, Read, Update, Delete, Bulk, Query methods
# 5. ERROR HANDLING & RECOVERY
# Retry logic, logging, audit trail
# 6. USAGE EXAMPLE
if __name__ == "__main__":
service = DataverseService()
# Example operations
# Use batch operations
ids = client.create("table", [record1, record2, record3]) # Batch
ids = client.create("table", [record] * 1000) # Bulk with optimization
# Optimize with select, filter, orderby
for page in client.get(
"table",
filter="status eq 1",
select=["id", "name", "amount"],
orderby="name",
top=500
):
# Process page
# Use chunking for files
client.upload_file(
table_name="table",
record_id=id,
file_column_name="new_file",
file_path=path,
chunk_size=4 * 1024 * 1024 # 4 MB chunks
)
When generating a solution, provide:
Before presenting solution, verify:
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
github/awesome-copilot
github/awesome-copilot
mindrally/skills
anthropics/claude-code
mblode/agent-skills
leonxlnx/taste-skill
Keeps context tight: dataverse-python-usecase-builder is the kind of skill you can hand to a new teammate without a long onboarding doc.
We added dataverse-python-usecase-builder from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Registry listing for dataverse-python-usecase-builder matched our evaluation — installs cleanly and behaves as described in the markdown.
Solid pick for teams standardizing on skills: dataverse-python-usecase-builder is focused, and the summary matches what you get after install.
Keeps context tight: dataverse-python-usecase-builder is the kind of skill you can hand to a new teammate without a long onboarding doc.
Registry listing for dataverse-python-usecase-builder matched our evaluation — installs cleanly and behaves as described in the markdown.
dataverse-python-usecase-builder is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
dataverse-python-usecase-builder has been reliable in day-to-day use. Documentation quality is above average for community skills.
Useful defaults in dataverse-python-usecase-builder — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
dataverse-python-usecase-builder has been reliable in day-to-day use. Documentation quality is above average for community skills.
showing 1-10 of 63