1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
source: tests/snapshots.rs
expression: skill.contents
---
---
name: fastcsv
description: "Parse CSV files fast"
when_to_use: "ingest csv, convert rows"
allowed-tools: Read, Bash
---
# fastcsv
Parse CSV files fast
## When to use
Invoke this skill when the user's task matches any of these triggers:
- ingest csv
- convert rows
## When NOT to use
- Do not use this skill if the user only wants to *read* or *inspect* fastcsv without performing an action — prefer reading docs directly.
- Do not use this skill for tasks outside the JavaScript/Node tooling it was built for.
## Installation
This is a library, not a CLI. The agent uses it by importing from the host project, not by spawning a binary.
Import pattern:
```
import { parse } from 'fastcsv'
```
## Usage
There is no CLI to invoke. Use the import pattern above and call the relevant API surface directly from the task.
## Footguns / gotchas
- Verify the tool is installed before relying on it; do not assume availability.
- This file is authoritative for agent invocation; if it drifts from the CLI's real `--help`, run `skillpack verify` to catch it.