— No reviews yet
0 installs
5 views
0.0% view→install
Install
$ agentstack add skill-managedcode-dotnet-skills-sep ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Sep? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
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 Sepdotnet add package Sep --version- XML package reference:
- ``
- Verify baseline support by checking the package page:
- NuGet: Sep
- Source:
- GitHub: nietras/Sep
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]
- Decide schema shape
- header present or no header
- separator known (
;,,, tab, custom) or infer from first row - row/column quoting rules
- Build reader with
Sep.Reader(...)and explicit options only where needed:
Sep.Reader()for inferred separator from header-like first rowSep.New(',').Reader(...)for explicit separator modeSep.Reader(o => o with { HasHeader = false })if header is absent
- Read rows and map columns as
ReadOnlySpanfirst, convert only when needed. - For output, use
reader.Spec.Writer()when you need the same separator/culture as input. - Control writer behavior with
Sep.Writer(...)andSepWriterOptions(WriteHeader,Escape,DisableColCountCheck). - Add async only where it brings value and your runtime is C# 13 / .NET 9+ for
await foreachover async reader rows. - Use
ParallelEnumeratefor 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();
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() * 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
Parsein hot paths to avoid extra allocations. - Keep
ToString/format conversions at the edge (presentational layers), not in inner loops. - Prefer
Unescape,Trim, andDisableQuotesParsingsettings deliberately and test with realistic samples. - For large transforms, isolate heavy CPU work after enumeration and then apply
ParallelEnumeratewhere appropriate.
Limitations to check before production
SepReader.RowandSepWriter.Rowareref structs:- avoid patterns that store rows beyond immediate scope
- materialize if you truly need random async/LINQ-style buffering
SepReaderrow 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 Sepinstalls 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
- [references/overview.md](references/overview.md) - official links and practical decision notes.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: managedcode
- Source: managedcode/dotnet-skills
- License: MIT
- Homepage: https://skills.managed-code.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.