sep

sep is a skill for Claude Code, Codex from managedcode/dotnet-skills. It costs 113 tokens per session (1,319 once invoked), scanned A, original, MIT.

A .NET library for reading and writing separated-value files such as CSV and TSV, including control over separators, quoting, headers, and whitespace.

In plain words
What is it for?
Use it for CSV or TSV import and export in machine-learning, ETL, and analytics workflows, including files with inferred or custom separators.
Why use it?
It supports large or performance-sensitive data pipelines without relying on loosely defined parsing behavior or unnecessary memory allocations.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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.

agentmods
npx agentmods add skills/managedcode/dotnet-skills/sep
Any agent
npx skills add managedcode/dotnet-skills --skill sep
Clone the repo
git clone --depth 1 https://github.com/managedcode/dotnet-skills

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 sep

README.md
[![agentmods](https://agentmods.dev/badge/skills/managedcode/dotnet-skills/sep.svg)](https://agentmods.dev/skills/managedcode/dotnet-skills/sep)
Your own site
<a href="https://agentmods.dev/skills/managedcode/dotnet-skills/sep"><img src="https://agentmods.dev/badge/skills/managedcode/dotnet-skills/sep.svg" alt="Measured on agentmods" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,319 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00113 $0.01319
Opus 5 $0.00056 $0.00660
Sonnet 5 $0.00023 $0.00264
Haiku 4.5 $0.00011 $0.00132

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

Security

Grade A, and why

sep 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 2d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

catalog/Libraries/Sep/skills/sep/SKILL.md · 144 lines

How it starts

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

Sep for .NET separated values

Trigger On

  • delimited data needs are performance-sensitive and allocation-aware
  • project needs explicit control over separator inference, escaping, trimming, and header behavior
  • reading/writing large or long-lived file pipelines in ML, ETL, or analytics workloads
  • startup/perf tests require AOT/trimming-friendly CSV/TSV processing

Install

  • NuGet:
    • dotnet add package Sep
    • dotnet add package Sep --version <version>
  • XML package reference:
    • <PackageReference Include="Sep" Version="x.y.z" />
  • Verify baseline support by checking the package page:
  • Source:

Workflow

flowchart LR
  A[Input source: file/text/stream] --> B[Sep.Reader or Sep.New(...).Reader]
  B --> C[SepReaderOptions]
  C --> D[Rows -> Cols -> Span/Parse]
  D --> E[Transform and validate]
  E --> F[SepWriter via SepWriterOptions]
  F --> G[To file/text output]
  1. Decide schema shape
    • header present or no header
    • separator known (;, ,, tab, custom) or infer from first row
    • row/column quoting rules
  2. Build reader with Sep.Reader(...) and explicit options only where needed:
    • Sep.Reader() for inferred separator from header-like first row
    • Sep.New(',').Reader(...) for explicit separator mode
    • Sep.Reader(o => o with { HasHeader = false }) if header is absent
  3. Read rows and map columns as ReadOnlySpan<char> first, convert only when needed.
  4. For output, use reader.Spec.Writer() when you need the same separator/culture as input.
  5. Control writer behavior with Sep.Writer(...) and SepWriterOptions (WriteHeader, Escape, DisableColCountCheck).
  6. Add async only where it brings value and your runtime is C# 13 / .NET 9+ for await foreach over async reader rows.
  7. Use ParallelEnumerate for CPU-heavy transformations only after benchmarking single-threaded baseline.

Install and read patterns

Read the full file on GitHub · 144 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 2d ago First seen · 144 lines · 113 tokens per session scan A 537a3231dc6d

Subscribe to this mod's changes

sep is a skill published in the GitHub repository managedcode/dotnet-skills (477 stars, last pushed yesterday), licensed MIT. It adds 113 tokens to every session and 1,319 once invoked, about $0.0006 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

winui-packaging

MSIX packaging, code signing, and distribution for WinUI 3 apps — build for release, certificate generation (winapp cert generate), certificate trust, code signing (winapp sign), self-contained deployment, CI/CD with GitHub Actions, and Microsoft Store submission. Use when preparing for release, creating MSIX…

microsoft/win-dev-skills · 86 tokens

kg-builder

Designs and builds knowledge graphs from documents — ontology modeling with domain/range constraints, entity/relation/event extraction, entity resolution, provenance and supersession, and GraphRAG serving. Use when asked to "build a knowledge graph", "design an ontology", "extract entities and relations", "deduplicate…

Mathews-Tom/armory · 100 tokens

ollama-optimizer

Optimize Ollama configuration for the current machine's hardware. Use when asked to speed up Ollama, tune local LLM performance, or pick models that fit available GPU/RAM. Don't use for LM Studio, llama.cpp, vLLM, or hosted-API LLM providers.

luongnv89/skills · 62 tokens

PuerTS Agent Development Guide

Guide for developing LLM agents based on PuerTsAgent framework — covers resource directory structure, system-prompt, skills, builtin modules, and best practices.

Tencent/puerts · 39 tokens

iterate-from-user

Source the next ML experiment proposal from the user via one of three entry points selected by AskUserQuestion: (a) a scientific article URL the agent must read and synthesize, (b) a resource link or path (GitHub issue / spec file / reference repo), or (c) free-text the user types directly. In every branch, the agent…

probabl-ai/skills · 401 tokens

observability-debugging

Feilsøk produksjonsproblemer med Mimir-metrikker, Loki-logger og Tempo-traces — strukturerte debugging-workflows for Nav-utviklere.

navikt/copilot · 38 tokens