dataverse-python-usecase-builder

dataverse-python-usecase-builder is a skill for Claude Code, Codex from boshi-xixixi/TraeSkill. It costs 20 tokens per session (1,528 once invoked), scanned A, original, MIT.

A solution-design guide for Microsoft Dataverse, a cloud data platform for business applications. It turns a described business need into a proposed data model, architecture, implementation, and explanation of the design choices.

In plain words
What is it for?
Use it to design Dataverse solutions for tasks such as creating, querying, updating, deleting, or processing records in bulk.
Why use it?
It helps developers move from vague requirements to decisions about tables, relationships, operations, scale, performance, retries, and auditing.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to design Dataverse solutions for tasks such as creating, querying, updating, deleting, or processing records in bulk.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/boshi-xixixi/traeskill/dataverse-python-usecase-builder
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.

Any agent
npx skills add boshi-xixixi/TraeSkill --skill dataverse-python-usecase-builder
Clone the repo
git clone --depth 1 https://github.com/boshi-xixixi/TraeSkill

Made for: Claude Code, Codex.

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 dataverse-python-usecase-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/boshi-xixixi/traeskill/dataverse-python-usecase-builder.svg)](https://agentmods.dev/skills/boshi-xixixi/traeskill/dataverse-python-usecase-builder)
Your own site
<a href="https://agentmods.dev/skills/boshi-xixixi/traeskill/dataverse-python-usecase-builder"><img src="https://agentmods.dev/badge/skills/boshi-xixixi/traeskill/dataverse-python-usecase-builder.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,528 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00020 $0.01528
Opus 5 $0.00010 $0.00764
Sonnet 5 $0.00004 $0.00306
Haiku 4.5 $0.00002 $0.00153

Measured 3d ago against content hash ce508ea0fc88, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

dataverse-python-usecase-builder 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 3d 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.

.trae/Skills/.agents/skills/dataverse-python-usecase-builder/SKILL.md · 247 lines

How it starts

The opening of the file, as written. The whole thing — 247 lines — stays where its author put it; the contents beside it link to each section on GitHub.

System Instructions

You are an expert solution architect for PowerPlatform-Dataverse-Client SDK. When a user describes a business need or use case, you:

  1. Analyze requirements - Identify data model, operations, and constraints
  2. Design solution - Recommend table structure, relationships, and patterns
  3. Generate implementation - Provide production-ready code with all components
  4. Include best practices - Error handling, logging, performance optimization
  5. Document architecture - Explain design decisions and patterns used

Solution Architecture Framework

Phase 1: Requirement Analysis

When user describes a use case, ask or determine:

  • What operations are needed? (Create, Read, Update, Delete, Bulk, Query)
  • How much data? (Record count, file sizes, volume)
  • Frequency? (One-time, batch, real-time, scheduled)
  • Performance requirements? (Response time, throughput)
  • Error tolerance? (Retry strategy, partial success handling)
  • Audit requirements? (Logging, history, compliance)

Phase 2: Data Model Design

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"
        }
    }
}

Phase 3: Pattern Selection

Choose appropriate patterns based on use case:

Pattern 1: Transactional (CRUD Operations)

  • Single record creation/update
  • Immediate consistency required
  • Involves relationships/lookups
  • Example: Order management, invoice creation

Pattern 2: Batch Processing

  • Bulk create/update/delete
  • Performance is priority
  • Can handle partial failures
  • Example: Data migration, daily sync

Read the full file on GitHub · 247 lines

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. 3d ago First seen · 247 lines · 20 tokens per session scan A ce508ea0fc88

Subscribe to this mod's changes

dataverse-python-usecase-builder is a skill published in the GitHub repository boshi-xixixi/TraeSkill (261 stars, last pushed 3mo ago), licensed MIT. It adds 20 tokens to every session and 1,528 once invoked, about $0.0001 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-09-03.

Related

Other skills, from other repositories

azure-data-api-builder

Expert knowledge for Azure Data Api Builder development including troubleshooting, best practices, decision making, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when exposing DB objects via REST/GraphQL, tuning paging/timeouts, securing auth/RLS, or deploying DAB to…

MicrosoftDocs/Agent-Skills · 114 tokens

supabase

Use when doing ANY task involving Supabase. Triggers: Supabase products (Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron, Queues); client libraries and SSR integrations (supabase-js, @supabase/ssr) in Next.js, React, SvelteKit, Astro, Remix; auth issues (login, logout, sessions, JWT, cookies…

supabase/agent-skills · 185 tokens

old-coder-api

Design, change, or review an HTTP/JSON API surface — endpoints, request/response shapes, authentication and authorization, pagination, idempotency, rate limits, versioning, and deprecations. Use when adding or modifying an HTTP endpoint, reviewing an OpenAPI spec or HTTP route diff, or deciding whether an HTTP API…

AmazingAng/old-coder · 106 tokens

supabase-node

Express/Hono with Supabase and Drizzle ORM.

alinaqi/maggy · 14 tokens

ring:using-lib-systemplane

Using lib-systemplane, the hot-reload runtime-config plane (Postgres LISTEN/NOTIFY or MongoDB change streams), in two modes. Sweep Mode detects DIY config reload (SIGHUP, fsnotify, viper, pgx LISTEN), manual tenant-scoping, hand-built admin CRUD, and v4 residue. Reference Mode catalogs client lifecycle and…

LerianStudio/ring · 106 tokens

ring:using-outbox

Using the transactional-outbox pattern across lib-streaming (writer) and lib-commons/v5/commons/outbox (repository + relay), in two modes. Sweep Mode detects DIY outbox tables, hand-rolled relay loops, send-and-pray emits, missing WithOutboxTx wrapping, and broker calls inside DB transactions. Reference Mode catalogs…

LerianStudio/ring · 98 tokens