export

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

A command that saves records from a Microsoft Dataverse table to a CSV or JSON file. CSV is a simple table-shaped text format, while JSON is a format commonly used by programs.

In plain words
What is it for?
Use it to extract filtered or sorted table data for spreadsheets, backups, scripts, reports, or transfer to another system.
Why use it?
It removes the manual work of selecting records, choosing columns, handling pages of results, and formatting the exported file.

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 Use it to extract filtered or sorted table data for spreadsheets, backups, scripts, reports, or transfer to another system.

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

README.md
[![agentmods](https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/export/github.svg)](https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/export)
Your own site
<a href="https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/export"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/export/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 export

Your own site · 80×15
<a href="https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/export"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/export.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 510 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.00510
Opus 5 $0.00005 $0.00255
Sonnet 5 $0.00002 $0.00102
Haiku 4.5 $0.00001 $0.00051

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

Security

Grade A, and why

export 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/export.md · 78 lines

What it actually says

Dataverse Export Command

Export data from a Dataverse table to a CSV or JSON file.

Instructions

When the user runs /dataverse:export <table> [file]:

  1. Parse arguments

    • Table name (required)
    • Output file path (optional, default: <table>_export.csv)
  2. Get table schema

    • Use dataverse_get_table_info to get columns
    • Show available columns to user
  3. Configure export

    • Ask which columns to export (or all)
    • Ask for any filter criteria
    • Ask for max records (default: 1000)
  4. Query data

    • Use dataverse_query with select and filter
    • Handle paging for large datasets
  5. Write output file

    • CSV: Write with headers
    • JSON: Write as array of objects
    • Determine format from file extension
  6. Report results

    • Records exported
    • Output file path
    • File size

Export Options

Ask user about:

  • Columns to include
  • Filter expression (e.g., "statecode eq 0")
  • Sort order
  • Maximum records

Output Formats

CSV (default):

accountid,name,telephone1
00000000-0000-0000-0000-000000000001,Contoso,555-0100
00000000-0000-0000-0000-000000000002,Fabrikam,555-0200

JSON:

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

Best Practices

  • Always include the primary key column
  • Use filters to limit data exported
  • Be cautious with large tables
  • Consider security/privacy of exported data
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 · 78 lines · 10 tokens per session scan A dc4c66fff476

Subscribe to this mod's changes

export 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 510 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.