fsi
Installation
SKILL.md
F# Interactive
Trigger On
- the task asks for F# Interactive, FSI,
.fsx, ordotnet fsi - a quick typed experiment is needed before changing compiled project code
- a script should reference NuGet packages directly with
#r "nuget: ..." - an investigation needs quick access to F# type inference, pattern matching, or pipelines
- a repeatable one-file probe is better than a temporary project
Do Not Use For
- long-lived application code that needs a compiled
.fsproj - production automation that should be versioned as a CLI, test project, or build target
- C# script work
- package restore from untrusted sources