skills/nix-shell/SKILL.md
A skill that describing how to use nix shell and nix run to create a temporary environment. Use when you want to run a command that isn't in your PATH.
npx skillsauth add beiyanyunyi/skills nix-shellInstall 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.
When you want to execute a command but it's not in your PATH, you can use nix shell or nix run to create a temporary environment. nix shell will create a new shell with the specified packages available, while nix run will run a command directly without a shell.
Before using nix shell or nix run, you may want to figure out which packages you need for your command. User will have nix in their system with package index available. You can use nix-locate to search for packages. For example:
nix-locate /bin/w | rg "/bin/w\$" # to find the package that provides /bin/w
After finding the package, you can use nix shell to create a temporary environment with that package available, or nix run to run the command directly. For example, to use ffmpeg:
# using nix shell
nix shell nixpkgs#ffmpeg
ffmpeg <params>
# using nix run
nix run nixpkgs#ffmpeg <params>
When you want to run a command that isn't in your PATH.
(optional) Find the package using nix-locate.
Use nix shell to create a temporary environment with that package available, or nix run to run the command directly.
If the package isn't cached, nix will download it from the internet. In this case, you may get nix's output before the actual command starts, like:
this path will be fetched (0.68 MiB download, 1.94 MiB unpacked):
/nix/store/hzyllvnksfjiy4bh3j7jd70j0qr2nq9z-eza-0.23.4
copying path '/nix/store/hzyllvnksfjiy4bh3j7jd70j0qr2nq9z-eza-0.23.4' from 'https://cache.nixos.org'...
you should ignore nix's output and wait for the actual command to start.
tools
A commit style that combines conventional commits with gitmoji. Use when you're writing a git commit message, or you're asked to use this skill.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------