/SKILL.md
Comprehensive Nushell scripting best practices, idioms, security, and code review. Use when writing, reviewing, auditing, or refactoring Nushell (.nu) scripts to ensure they follow idiomatic patterns, naming conventions, proper type annotations, functional style, security best practices, and Nushell's unique design principles. Triggers on tasks involving Nushell scripts, modules, custom commands, pipelines, or any .nu file editing. Also helps convert Bash/POSIX scripts to idiomatic Nushell. Covers the type system, data manipulation, performance optimization, security hardening, script review, and common gotchas.
npx skillsauth add hustcer/nushell-craft nushell-proInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Write idiomatic, performant, secure, and maintainable Nushell scripts. This skill enforces Nushell conventions, catches security issues, and helps avoid common pitfalls.
Use this sequence whenever writing, reviewing, refactoring, or converting Nushell code:
.nu files and nearby project conventions before changing code.peek, parse, par-each, performance, closures, or version-sensitive command behavior -> Advanced Patternsnu -c 'source path/to/file.nu' for modules or nu path/to/script.nu for scripts when the command is safe to run.If validation fails -> read the Nushell diagnostic, fix the syntax or type signature, and rerun the smallest safe validation command. If a command has side effects -> validate only parseability or use a fixture/temp directory. If a reference conflicts with local project style -> keep project style unless it violates safety, parseability, or Nushell semantics.
STOP CHECKPOINT: Before approving code that runs external commands, deletes files, reads credentials, mutates $env, or executes user-provided paths/patterns, explicitly confirm the safe argument boundaries and failure behavior.
let by default; only use mut when functional alternatives don't applysource/use require parse-time constantsecho or returndef --env when caller-side changes are neededmatch for branching — Use match instead of long if/else if chains when dispatching on one value or handling many branchespar-each parallelizationPipeline input ($in) is NOT interchangeable with function parameters!
# WRONG — treats pipeline data as first parameter
def my-func [items: list, value: any] {
$items | append $value
}
# CORRECT — declares pipeline signature
def my-func [value: any]: list -> list {
$in | append $value
}
# Usage
[1 2 3] | my-func 4 # Works correctly
Why this matters:
$list | func arg vs func $list argdef func [x: int] { ... } # params only
def func []: string -> int { ... } # pipeline only
def func [x: int]: string -> int { ... } # both pipeline and params
def func []: [list -> list, string -> list] { ... } # multiple I/O types
| Entity | Convention | Example |
| ---------------- | ---------------------- | ------------------------------------ |
| Commands | kebab-case | fetch-user, build-all |
| Subcommands | kebab-case | "str my-cmd", date list-timezone |
| Flags | kebab-case | --all-caps, --output-dir |
| Variables/Params | snake_case | $user_id, $file_path |
| Environment vars | SCREAMING_SNAKE_CASE | $env.APP_VERSION |
| Constants | snake_case | const max_retries = 3 |
url ok, usr not ok)--all-caps -> $all_caps[1 2 3] | each {|x| $x * 2 }
{name: 'Alice', age: 30}
[1 2 3 4] | each {|x|
$x * 2
}
[
{name: 'Alice', age: 30}
{name: 'Bob', age: 25}
]
||params| in closures: {|x| ...} not { |x| ...}: in records: {x: 1} not {x:1}[1 2 3] not [1, 2, 3], when used (closure params, etc.)# Fully typed with I/O signature
def add-prefix [text: string, --prefix (-p): string = 'INFO']: nothing -> string {
$'($prefix): ($text)'
}
# Multiple I/O signatures
def to-list []: [
list -> list
string -> list
] {
# implementation
}
# Fetch user data from the API
#
# Retrieves user information by ID and returns
# a structured record with all available fields.
@example 'Fetch user by ID' { fetch-user 42 }
@category 'network'
def fetch-user [
id: int # The user's unique identifier
--verbose (-v) # Show detailed request info
]: nothing -> record {
# implementation
}
--output (-o): stringdef greet [name: string = 'World']? for optional positional params: def greet [name?: string]def multi-greet [...names: string]def --wrapped to wrap external commands and forward unknown flagsKeep short custom command calls with named flags on one line. If the invocation
must span lines, wrap the whole command in parentheses so the continuation is
explicit. A bare newline can terminate the command, leaving following --flags
as separate statements that produce plain output or parse errors.
# Prefer for short calls
build-report $target --format json --strict
# Good — explicit multiline invocation
let report = (
build-report $target
--format json
--strict
)
# Bad — flags start new statements
build-report $target
--format json
--strict
def --env setup-project [] {
cd project-dir
$env.PROJECT_ROOT = (pwd)
}
{name: 'Alice', age: 30} # Create record
$rec1 | merge $rec2 # Merge (right-biased)
[$r1 $r2 $r3] | into record # Merge many records
$rec | update name {|r| $'Dr. ($r.name)' } # Update field
$rec | insert active true # Insert field
$rec | upsert count {|r| ($r.count? | default 0) + 1 } # Update or insert
$rec | reject password secret_key # Remove fields
$rec | select name age email # Keep only these fields
$rec | items {|k, v| $'($k): ($v)' } # Iterate key-value pairs
$rec | transpose key val # Convert to table
$table | where age > 25 # Filter rows
$table | insert retired {|row| $row.age > 65 } # Add column
$table | rename -c {age: years} # Rename column
$table | group-by status --to-table # Group by field
$table | transpose name data # Transpose rows/columns
$table | join $other_table user_id # Inner join
$table | join --left $other user_id # Left join
$list | enumerate | where {|e| $e.index > 5 } # Filter with index
$list | reduce --fold 0 {|it, acc| $acc + $it } # Accumulate
$list | window 3 # Sliding window
$list | chunks 100 # Process in batches
$list | flatten # Flatten nested lists
$record.field? # Returns null if missing (no error)
$record.field? | default 'N/A' # Provide fallback
if ($record.field? != null) { } # Check existence
$list | default -e $fallback # Default for empty collections
default's argument is eager: $x | default $rec.maybe_missing evaluates (and can error on) the fallback even when $x is non-null. Make the fallback null-safe (default ($rec.maybe? | default 0)) or branch with if. See Anti-Patterns.
Native list/table ops are row-oriented — ideal for small, interactive data.
For large datasets and heavy analytics (multi-million row group-by,
joins, aggregations, big CSV/Parquet), push the work into the polars plugin's
columnar dataframes instead of each/reduce. They are lazy by default.
# For large data, let Polars plan and execute the whole pipeline:
polars open big.csv # lazy by default (a plan, not yet run)
| polars group-by category
| polars agg (polars col amount | polars sum | polars as total)
| polars sort-by total -r [true]
| polars collect # execute the optimized plan once
Choose native vs Polars (and eager vs lazy), and see the full command set, in Dataframes.
# Bad — imperative with mutable variable
mut total = 0
for item in $items { $total += $item.price }
# Good — functional pipeline
$items | get price | math sum
# Bad — mutable counter
mut i = 0
for file in (ls) { print $'($i): ($file.name)'; $i += 1 }
# Good — enumerate
ls | enumerate | each {|it| $'($it.index): ($it.item.name)' }
# each: transform each element
$list | each {|item| $item * 2 }
# each --flatten: stream outputs (turns list<list<T>> into list<T>)
ls *.txt | each --flatten {|f| open $f.name | lines } | find 'TODO'
# each --keep-empty: preserve null results
[1 2 3] | each --keep-empty {|e| if $e == 2 { 'found' } }
# par-each: parallel processing (I/O or CPU-bound)
$urls | par-each {|url| http get $url }
$urls | par-each --threads 4 {|url| http get $url }
# reduce: accumulate (first element is initial acc if no --fold)
[1 2 3 4] | reduce {|it, acc| $acc + $it }
# generate: create values from arbitrary sources without mut
generate {|state| { out: ($state * 2), next: ($state + 1) } } 1 | first 5
# Row conditions — short-hand syntax, auto-expands $it
ls | where type == file # Simple and readable
$table | where size > 100 # Expands to: $it.size > 100
# Closures — full flexibility, can be stored and reused
let big_files = {|row| $row.size > 1mb }
ls | where $big_files
$list | where {$in > 10} # Use $in or parameter
Use row conditions for simple field comparisons; use closures for complex logic or reusable conditions.
matchNushell's match is a parser keyword: match <value> <match_block>.
Prefer it over if/else if chains when multiple branches depend on the same
value, such as status dispatch, command routing, type guards, or enum-like
options. Use if for a single boolean condition or when each branch has a
different predicate.
# Less clear — repeated checks against the same value
if $status == 'ok' {
handle-ok
} else if $status == 'error' {
handle-error
} else if $status == 'pending' {
handle-pending
} else {
handle-unknown
}
# Preferred — one dispatch expression with an explicit fallback
match $status {
ok => { handle-ok }
error => { handle-error }
pending => { handle-pending }
_ => { handle-unknown }
}
def double-all []: list<int> -> list<int> {
$in | each {|x| $x * 2 }
}
# Capture $in early when needed later (it's consumed on first use)
def process []: table -> table {
let input = $in
let count = $input | length
$input | first ($count // 2)
}
let config = (open config.toml)
let names = $config.users | get name
# Acceptable — mut when no functional alternative
mut retries = 0
loop {
if (try-connect) { break }
$retries += 1
if $retries >= 3 { error make {msg: 'Connection failed'} }
sleep 1sec
}
const lib_path = 'src/lib.nu'
source $lib_path # Works: const is resolved at parse time
let lib_path = 'src/lib.nu'
source $lib_path # Error: let is runtime only
mut count = 0
ls | each {|f| $count += 1 } # Error! Closures can't capture mut
# Solutions:
ls | length # Use built-in commands
[1 2 3] | reduce {|x, acc| $acc + $x } # Use reduce
for f in (ls) { $count += 1 } # Use a loop if mutation truly needed
Refer to String Formats Reference for the full priority and rules.
String form mistakes are common and high impact. Decide with this table before writing or reviewing any string:
| Need | Use | Do not use |
| --- | --- | --- |
| Simple literal text | 'hello world' | "hello world" or $"hello world" |
| Simple values inside arrays or match arms | [foo bar baz], match $x { ok => ... } | ["foo" "bar" "baz"] when quotes add no meaning |
| Interpolation without escape sequences | $'User: ($name)' | $"User: ($name)" |
| Literal escape sequence such as newline or tab | "line1\nline2" | 'line1\nline2' |
| Interpolation plus real escape sequences | $"($name)\n" | $'($name)\n' |
| Regex pattern or text with many quotes/backslashes | r#'(?:src|lib)/.*\.nu'# | "(?:src|lib)/.*\\.nu" |
| Path or glob argument with spaces | `./My Dir/*.nu` | Escaped Bash-style strings |
Decision order:
[foo bar baz]r#'(?:pattern)'#'simple string'$'Hello, ($name)!'`./My Dir/*.nu`"line1\nline2"$"tab:\t($value)\n"Non-negotiable string rules:
$'...' and '...' do not process escapes. \n, \t, and \' remain literal characters.(...) only evaluates it when prefixed with $: $'(ansi g)OK(ansi rst)', not '(ansi g)OK(ansi rst)'.char nl inside $'...' when interpolation is needed but the only escape-like value is a newline: $'(char nl)Done'.$"..." only when the final string truly needs escape processing and interpolation in the same literal.^git commit -m $msg, not ^sh -c $'git commit -m "($msg)"'.^git log --format="%H\t%an"). Do not double the backslash ("%H\\t%an"), because that produces a literal \t. Use (char tab) / (char nl) when interpolation is needed or explicit separators are clearer.# delimiters when the pattern contains quotes: r#'name="[^"]+"'#.Common corrections:
# Wrong: interpolation is missing because there is no $ prefix
print 'User: ($name)'
# Right
print $'User: ($name)'
# Wrong: $'...' does not turn \n into a newline
print $'Done\n'
# Right: command interpolation, no escape processing needed
print $'Done(char nl)'
# Right: escape processing is required
print $"Done\n"
# Wrong: double-quoted interpolation without escapes
let label = $"($pkg.name)@($pkg.version)"
# Right
let label = $'($pkg.name)@($pkg.version)'
# Wrong: regex backslashes are hard to audit
let pattern = "(?:src|lib)/.*\\.nu"
# Right
let pattern = r#'(?:src|lib)/.*\.nu'#
# Wrong: single quotes pass literal \t to the external formatter
^git log --format='%H\t%an'
# Wrong: double backslash preserves literal \t
^git log --format="%H\\t%an"
# Preferred: Nushell turns \t into an actual tab before calling git
^git log --format="%H\t%an"
# Also right: explicit separator, useful with interpolation
let tab = (char tab)
^git log --format=$'%H($tab)%an'
my-module/
├── mod.nu # Module entry point
├── utils.nu # Submodule
└── tests/
└── mod.nu # Test module
export definitions are public; non-exported are privateexport def main when command name matches module nameexport use submodule.nu * to re-export submodule commandsexport-env for environment setup blocks#!/usr/bin/env nu
# Build the project
def "main build" [--release (-r)] {
print 'Building...'
}
# Run tests
def "main test" [--verbose (-v)] {
print 'Testing...'
}
def main [] {
print 'Usage: script.nu <build|test>'
}
For stdin access in shebang scripts: #!/usr/bin/env -S nu --stdin
def validate-age [age: int] {
if $age < 0 or $age > 150 {
error make {
msg: 'Invalid age value'
label: {
text: $'Age must be between 0 and 150, got ($age)'
span: (metadata $age).span
}
}
}
$age
}
let result = try {
http get $url
} catch {|err|
print -e $'Request failed: ($err.msg)'
null
}
# Use complete for detailed external command error info
let result = (^some-external-cmd | complete)
if $result.exit_code != 0 {
print -e $'Error: ($result.stderr)'
}
do -ido -i (ignore errors) runs a closure and suppresses any errors, returning null on failure. do -c (capture errors) catches errors and returns them as values.
# Ignore errors — returns null if the closure fails
do -i { rm non_existent_file }
# Use as a concise fallback
let val = (do -i { open config.toml | get setting } | default 'fallback')
# Capture errors as values (instead of aborting the pipeline)
let result = (do -c { ^some-cmd })
When to use each approach:
do -i — Fire-and-forget, or when you only need a default on failuredo -c — Catch errors as values to abort downstream pipeline on failuretry/catch — When you need to inspect or log the errorcomplete — When you need exit code + stdout + stderr from external commandsuse std/assert
for t in [[input expected]; [0 0] [1 1] [2 1] [5 5]] {
assert equal (fib $t.input) $t.expected
}
def "assert even" [number: int] {
assert ($number mod 2 == 0) --error-label {
text: $'($number) is not an even number'
span: (metadata $number).span
}
}
$value | describe # Inspect type
$data | each {|x| print $x; $x } # Print intermediate values (pass-through)
timeit { expensive-command } # Measure execution time
metadata $value # Inspect span and other metadata
Refer to Security Reference for the full guide.
Nushell is safer than Bash by design (no eval, arguments passed as arrays not through shell), but security risks remain.
# DANGEROUS — arbitrary code execution
^nu -c $user_input
source $user_provided_file
# DANGEROUS — shell interprets the string
^sh -c $'echo ($user_input)'
^bash -c $user_input
Validating a command string (e.g. an allowlist regex) before nu -c is not sufficient: \s matches newlines, regex shortcuts like \b/\w are not command-token rules, and the string is still re-interpreted. Prefer validated argv/list data and run the binary with separated args instead. See Security.
# Bad — constructing command strings
let cmd = $'ls ($user_path)'
^sh -c $cmd
# Good — pass arguments directly (no shell interpretation)
^ls $user_path
run-external 'ls' $user_path
# Bad — path traversal possible
def read-file [name: string] { open $name }
# Good — validate against traversal
def read-file [name: string, --base-dir: string = '.'] {
let full = ($base_dir | path join $name | path expand)
let base = ($base_dir | path expand)
if not ($full | str starts-with $base) {
error make {msg: $'Path traversal detected: ($name)'}
}
open $full
}
# Bad — credential visible to all child processes and in env
$env.API_KEY = 'secret-key-123'
^curl -H $'Authorization: Bearer ($env.API_KEY)' $url
# Good — scope credentials, use with-env
with-env {API_KEY: (open ~/.secrets/api_key | str trim)} {
^curl -H $'Authorization: Bearer ($env.API_KEY)' $url
}
# Bad — predictable temp file, race condition
let tmp = '/tmp/my-script-tmp'
'data' | save $tmp
# Good — use mktemp for unique temp files
let tmp = (^mktemp | str trim)
'data' | save $tmp
# ... use $tmp ...
rm $tmp
let result = (^cargo build o+e>| complete)
if $result.exit_code != 0 {
error make {msg: $'Build failed: ($result.stderr)'}
}
# Bad — glob from variable, could match unintended files
^rm $'($user_dir)/*'
# Good — validate then use trash or explicit paths
if ($user_dir | path type) == 'dir' {
rm -r $user_dir
}
Refer to Script Review Reference for the full checklist.
When reviewing a Nushell script, check these categories in order:
nu -c / source / ^sh -c with untrusted inputmktemp, not predictable pathsrm operations are guarded and intentionaltry/catch for fallible operationscomplete when error handling matters? operatorfor as final expression (use each instead)if/else if chains on one value prefer match unless if is clearermut not captured in closuresparse gets lines first when line-by-line parsing of stream input is intended'...'; interpolation without escapes -> $'...'; escapes -> "..."; interpolation plus escapes -> $"..."; regex -> r#'...'#(...) that should run Nushell expressions have $ prefix$'...' is not used for \n, \t, \', or other escape processingchar tab / char nl when interpolation is needed^ prefix on external commandspar-each for I/O or CPU-bound parallel workeach --flatten for streaming when appropriatepeek used when inspecting stream metadata/sample values without collectinglet bindingsRefer to Anti-Patterns Reference for detailed explanations.
| Anti-Pattern | Fix |
| ------------------------------------- | ------------------------------------------------ |
| echo $value | Just $value (implicit return) |
| echo 'msg' to print output | print 'msg' (echo returns a value; non-final value is dropped) |
| $"simple text" | 'simple text' (no interpolation needed) |
| 'User: ($name)' | $'User: ($name)' |
| $'line\n' | $"line\n" or $'line(char nl)' |
| "[a-z]+\\.nu" | r#'[a-z]+\.nu'# |
| for as final expression | Use each (for doesn't return a value) |
| mut for accumulation | Use reduce or math sum |
| Long if/else if chains on one value | Prefer match with _ fallback |
| let path = ...; source $path | const path = ...; source $path |
| "hello" > file.txt | 'hello' \| save file.txt |
| grep pattern | where $it =~ pattern or built-in find |
| Parsing string output | Use structured commands (ls, ps, http get) |
| $env.FOO = bar inside def | Use def --env |
| { \| x \| ... } (space before pipe) | {\|x\| ...} (no space before params) |
| $record.missing (error) | $record.missing? (returns null) |
| val \| default $rec.missing (arg is eager) | default ($rec.missing? \| default ...) (fallback evaluated even when non-null) |
| each on single record | Use items or transpose instead |
| External cmd without ^ | Use ^grep to be explicit about externals |
| Native loop/group-by on huge data | Use polars dataframes (lazy open + group-by + collect) |
| parse on stream expecting old line splitting | Insert lines before parse for line-by-line parsing |
| Custom command flags on new lines | Keep one line or wrap the invocation in (...) |
| Single-quoted or double-escaped external format \t | Use "%H\t%an" or (char tab) / (char nl) |
# above def for help integrationdefault — Handle null/missing gracefully^ — ^grep not grep; Nushell builtins take precedence (e.g., find is Nushell's, not Unix find)^rg for large file search, ^jq for giant JSON(...)(char tab) / (char nl) when interpolation or explicit separators are needed$"..." just because a string contains interpolation; use $'...' unless escapes are required.\', \n, or \t work inside single-quoted or single-interpolated strings.\t or \n; use one backslash in double quotes, (char tab), or (char nl).$ from strings containing command interpolation such as (ansi g), (char nl), or ($value).echo to print user-facing messages — echo has no print side effect; its returned value is shown only when it becomes final output. Use print for side-effect output (echo 'msg'; exit 1 prints nothing).nu -c, source, ^sh -c, ^bash -c, or ^cmd.exe /C strings.When writing or reviewing Nushell code:
match over long if/else if chains on one valuenu -c 'source file.nu' or nu file.nunu -c 'help <command>' to check command signatures and examplesdevelopment
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.