import

import is a command for Claude Code from Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace. It costs 10 tokens per session (467 once invoked), scanned A, original, MIT.

A command for importing CSV or JSON data into a Microsoft Dataverse table, a structured data store used by business applications. It checks the table and file, maps columns, imports records in batches, and reports results.

In plain words
What is it for?
It is for loading rows from CSV or arrays of objects from JSON into Dataverse, confirming column mappings, processing records in batches, and reporting successes, errors, and created IDs.
Why use it?
It replaces manual record entry and reduces errors by checking the file and table schema before importing data.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Part of the dataverse plugin — 6 skills, 5 commands, 1 MCP server shipped together

Good fit It is for loading rows from CSV or arrays of objects from JSON into Dataverse, confirming column mappings, processing records in batches, and reporting successes, errors, and created IDs.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/import
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.

Clone the repo
git clone --depth 1 https://github.com/Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace

Made for: Claude Code.

Or install dataverse, the plugin that ships this one along with the rest of its 6 skills, 5 commands, 1 MCP server.

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 import

README.md
[![agentmods](https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/import/github.svg)](https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/import)
Your own site
<a href="https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/import"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/import/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for import

Your own site · 80×15
<a href="https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/import"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/import.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 10 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 467 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.00010 $0.00467
Opus 5 $0.00005 $0.00234
Sonnet 5 $0.00002 $0.00093
Haiku 4.5 $0.00001 $0.00047

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

Security

Grade A, and why

import 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 12d 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.

plugins/dataverse/commands/import.md · 77 lines

What it actually says

Dataverse Import Command

Import data from a CSV or JSON file into a Dataverse table.

Instructions

When the user runs /dataverse:import <table> <file>:

  1. Parse arguments

    • Table name (schema name like "account" or "new_mytable")
    • File path (CSV or JSON)
  2. Validate inputs

    • Check file exists
    • Determine file type from extension
    • Get table schema to validate columns
  3. Read and parse file

    • For CSV: Parse with headers as column names
    • For JSON: Expect array of objects
  4. Map columns

    • Show detected columns
    • Ask user to confirm mapping to Dataverse columns
    • Handle column name case differences
  5. Import data

    • Use dataverse_create_records for bulk import
    • Process in batches of 100 records
    • Report progress
  6. Report results

    • Records imported successfully
    • Any errors encountered
    • Record IDs created

CSV Format Example

name,telephone1,websiteurl
Contoso,555-0100,https://contoso.com
Fabrikam,555-0200,https://fabrikam.com

JSON Format Example

[
  {"name": "Contoso", "telephone1": "555-0100"},
  {"name": "Fabrikam", "telephone1": "555-0200"}
]

Column Mapping

If CSV/JSON column names don't match Dataverse exactly:

  • Show the mapping
  • Allow user to confirm or adjust
  • Lowercase column names automatically

Error Handling

  • Validate required columns exist
  • Check data types match
  • Report failed records with reason
  • Continue processing on individual record errors
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. 12d ago First seen · 77 lines · 10 tokens per session scan A 47c0d65a0d76

Subscribe to this mod's changes

import is a command published in the GitHub repository Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace (4 stars, last pushed 8mo ago), licensed MIT. It adds 10 tokens to every session and 467 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-08-31.