Source profileQuality 92/100

Postpartum-genushyacinthus29/dotnet-skills/skills/dotnet-sep/SKILL.md

dotnet-sep

Use Sep for high-performance separated-value parsing and writing in .NET, including delimiter inference, explicit parser/writer options, and low-allocation row/column workflows.

Source repository stars
9
Declared platforms
0
Static risk flags
1
Last source update
2026-08-26
Source checked
2026-08-28

Decision brief

What it does: where it fits

Use Sep for high-performance separated-value parsing and writing in . NET, including delimiter inference, explicit parser/writer options, and low-allocation row/column workflows.

Best for

    Not for

    • SepReader.Row and SepWriter.Row are ref structs:
    • avoid patterns that store rows beyond immediate scope

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/Postpartum-genushyacinthus29/dotnet-skills --skill "skills/dotnet-sep"
    Safe inspection promptEditorial

    Inspect the Agent Skill "dotnet-sep" from https://github.com/Postpartum-genushyacinthus29/dotnet-skills/blob/e520b1e9a27485d8b5f3ec0b71dfcd85ab371a40/skills/dotnet-sep/SKILL.md at commit e520b1e9a27485d8b5f3ec0b71dfcd85ab371a40. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Workflow

      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…

      Decide schema shapeheader present or no headerseparator known (;, ,, tab, custom) or infer from first row
    2. 02

      Trigger On

      delimited data needs are performance-sensitive and allocation-aware

      delimited data needs are performance-sensitive and allocation-awareproject needs explicit control over separator inference, escaping, trimming, and header behaviorreading/writing large or long-lived file pipelines in ML, ETL, or analytics workloads
    3. 03

      Install

      NuGet:

      NuGet:dotnet add package Sepdotnet add package Sep --version
    4. 04

      Install and read patterns

      Review the “Install and read patterns” section in the pinned source before continuing.

      Review and apply the “Install and read patterns” source section.
    5. 05

      Write patterns

      Review the “Write patterns” section in the pinned source before continuing.

      Review and apply the “Write patterns” source section.

    Permission review

    Static risk signals and limitations

    Reads files

    low · line 131

    The documentation asks the agent to read local files, directories, or repositories.

    one file-read sample and one file-write sample execute successfully

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score92/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars9SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    Postpartum-genushyacinthus29/dotnet-skills
    Skill path
    skills/dotnet-sep/SKILL.md
    Commit
    e520b1e9a27485d8b5f3ec0b71dfcd85ab371a40
    License
    MIT
    Collected
    2026-08-28
    Default branch
    main
    View the original SKILL.md

    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

    using var reader = Sep.Reader(o => o with
    {
        HasHeader = true,
        Unescape = true,
        Trim = SepTrim.Both
    }).FromText(data);
    
    foreach (var row in reader)
    {
        var id = row["Id"].Parse<int>();
        var name = row[1].ToString();
        // process row
    }
    

    Write patterns

    using var reader = Sep.Reader().FromFile("input.csv");
    using var writer = reader.Spec.Writer().ToFile("output.csv");
    
    foreach (var row in reader)
    {
        using var writeRow = writer.NewRow(row);
        writeRow["Amount"].Format(row["Amount"].Parse<double>() * 1.2);
    }
    

    Async reading and writing

    var text = "A;B\n1;hello\n";
    
    using var reader = await Sep.Reader().FromTextAsync(text);
    await using var writer = reader.Spec.Writer().ToText();
    
    await foreach (var row in reader)
    {
        await using var writeRow = writer.NewRow(row);
        var normalized = row["B"].ToString().ToUpperInvariant();
        writeRow["B"].Set(normalized);
    }
    

    Common configuration patterns

    • Header-driven read
      • default HasHeader = true
      • query by name: row["ColName"]
    • Headerless pipelines
      • HasHeader = false
      • use index-based access: row[0], row[1]
    • Round-trip output
      • start writer with reader.Spec.Writer() to preserve inference and formatting contract
    • Speed-first processing
      • keep default buffer + culture unless profiling proves a need to tune

    Best practices

    • Parse to primitive types with Parse<T> in hot paths to avoid extra allocations.
    • Keep ToString/format conversions at the edge (presentational layers), not in inner loops.
    • Prefer Unescape, Trim, and DisableQuotesParsing settings deliberately and test with realistic samples.
    • For large transforms, isolate heavy CPU work after enumeration and then apply ParallelEnumerate where appropriate.

    Limitations to check before production

    • SepReader.Row and SepWriter.Row are ref structs:
      • avoid patterns that store rows beyond immediate scope
      • materialize if you truly need random async/LINQ-style buffering
    • SepReader row iteration is row-by-row by design; it is intentionally not the same as a classic collection model.

    Deliver

    • installation and usage guide that is ready to copy into a .NET repo
    • practical reader/writer configuration patterns
    • clear notes on defaults, tradeoffs, and constraints

    Validate

    • dotnet add package Sep installs correctly and project compiles
    • one file-read sample and one file-write sample execute successfully
    • header/no-header and explicit-separator cases are covered
    • at least one validation sample for quoting/unescaping or async path exists if required by task

    Load References

    Frequently asked questions

    What to verify before installation and use

    What does the dotnet-sep source document cover?

    Use Sep for high-performance separated-value parsing and writing in . NET, including delimiter inference, explicit parser/writer options, and low-allocation row/column workflows.

    How do I install dotnet-sep?

    The source record exposes this install command: npx skills add https://github.com/Postpartum-genushyacinthus29/dotnet-skills --skill "skills/dotnet-sep". Inspect the command and pinned source before running it.

    Which permission-related actions were detected?

    Static rules flagged read-files in the source; the page lists the matching lines and excerpts.

    Alternatives

    Compare before choosing

    Computed 10029,236

    garrytan/gbrain

    bulk-ingestion

    End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.

    Computed 10025,136

    alirezarezvani/claude-skills

    app-store-optimization

    App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

    Computed 10015,385

    wanshuiyin/Auto-claude-code-research-in-sleep

    citation-audit

    Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.

    Computed 10014,706

    prowler-cloud/prowler

    postgresql-indexing

    PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance