Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

nixomaticnixomatic 搜索

Agent Skill

nixomatic 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

326

周安装

14

GitHub Stars

1

下载量

114
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:nixomatic(nixomatic 搜索)
来源仓库:https://github.com/curriedsoftware/nixomatic-skill
仓库路径:skills/nixomatic
安装命令:
npx skills add https://github.com/curriedsoftware/nixomatic-skill --skill nixomatic
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/curriedsoftware/nixomatic-skill --skill nixomatic

简介

nixomatic 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需确认权限与维护状态。
  • 使用前应核实是否会触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 和仓库路径进一步了解具体功能与限制。

SKILL.md

Nixomatic Skill

Overview

Nixomatic is a Nix flake generator service that gives you instant access to any software without altering the current system. You construct a URL like https://nixomatic.com/?p=poppler-utils and pass it to nix develop. The service generates a Nix flake with the requested packages — nothing is permanently installed, no configuration or flake authoring required.

Nixomatic is your universal package runner. Whenever you need a tool that is not on the current system, nixomatic provides it instantly and cleanly:

  • One-shot tasks: You need to convert a PDF to text? Use poppler-utils. Resize an image? imagemagick. Transcode video? ffmpeg. Parse JSON? jq. Compress files? p7zip. Run a spell checker? aspell. Any tool available in nixpkgs is at your disposal.
  • Development environments: Build, compile, test, lint, format, type-check, or set up a project with the right toolchain.
  • Missing tool recovery: When any command fails with "command not found", use nixomatic to provide the missing tool and retry — no permanent installation needed.

Use this skill whenever you need software that is not installed. This applies to one-shot tasks, development workflows, file conversions, data processing, or anything else where you need a tool that is not on PATH.

Detecting Nix vs Docker

Before running any environment command, determine which runtime is available:

  1. Check if nix is on PATH (which nix). If found, use Nix directly.
  2. If nix is not found, check if docker is on PATH (which docker). If found, use the Docker wrapper.
  3. If neither is available, inform the user that one of Nix or Docker must be installed and provide links:

- Nix: https://nixos.org/download/ - Docker: https://docs.docker.com/get-docker/

Analyzing the Project

Important: Never read or access files that may contain secrets (.env, .env.*, credentials.json, *-credentials.*, *.pem, *.key, private key files, or token files). Only inspect filenames to determine which packages are needed — do not read file contents unless they are project manifests (e.g., package.json, Cargo.toml, go.mod).

Determine what packages the project needs by scanning files in this order:

  1. Check for existing nixomatic URL in README.md: Look for a ## Development Environment section containing a nixomatic.com URL. If found, reuse that URL as the baseline (it represents the last known-good package set). Add packages only if something is missing.
  2. Check for flake.nix: If the project root contains a flake.nix, prefer the project's own flake over nixomatic. Run commands with nix develop --command -- <cmd> using the local flake. Do not generate a nixomatic URL in this case.
  3. Detect languages and runtimes from project files:

- package.json -> nodejs - Cargo.toml -> rustc,cargo - go.mod -> go - requirements.txt, setup.py, pyproject.toml -> python3 - Gemfile -> ruby - build.gradle, build.gradle.kts, pom.xml -> jdk - mix.exs -> elixir - *.sln, *.csproj, *.fsproj -> dotnet-sdk - composer.json -> php - Package.swift -> swift - dune-project, *.opam -> ocaml - stack.yaml, *.cabal -> ghc,cabal-install - pubspec.yaml -> dart - zig.zon, build.zig -> zig

  1. Detect build tools:

- Makefile -> gnumake - CMakeLists.txt -> cmake - meson.build -> meson - Justfile -> just - Taskfile.yml -> go-task - Rakefile (without Gemfile) -> ruby

  1. Detect additional tools from config files:

- .eslintrc*, eslint.config.* -> (already covered by nodejs) - Dockerfile -> docker - .terraform* -> terraform - serverless.yml -> nodejs - Makefile containing protoc -> protobuf

Common Package Mappings

Project file / indicatorNix packages
package.jsonnodejs
Cargo.tomlrustc, cargo
go.modgo
requirements.txtpython3
pyproject.tomlpython3
Gemfileruby
pom.xml / build.gradlejdk
mix.exselixir
composer.jsonphp
*.csproj / *.fsprojdotnet-sdk
Package.swiftswift
stack.yaml / *.cabalghc, cabal-install
pubspec.yamldart
build.zig / zig.zonzig
Makefilegnumake
CMakeLists.txtcmake
meson.buildmeson
Justfilejust
Taskfile.ymlgo-task
curl neededcurl
git neededgit
jq neededjq
openssl neededopenssl
pkg-config neededpkg-config
protobuf neededprotobuf

Constructing the URL

Build the nixomatic URL from the detected packages:

https://nixomatic.com/?p=pkg1,pkg2,pkg3

Use the short p query parameter with comma-separated package names. For example, a Node.js project with a Makefile becomes:

https://nixomatic.com/?p=nodejs,gnumake

To pin a specific package version, use @version syntax:

https://nixomatic.com/?p=nodejs@20.11.1,python3

To pin to a specific nixpkgs revision, use :revision syntax:

https://nixomatic.com/?p=python3:3b93cf5

Command Templates

Nix (direct)

Run a command inside the environment:

nix \
    --extra-experimental-features 'nix-command flakes' \
    develop 'https://nixomatic.com/?p=<packages>' \
      --accept-flake-config \
      --command -- <cmd>

Enter an interactive shell:

nix \
    --extra-experimental-features 'nix-command flakes' \
    develop 'https://nixomatic.com/?p=<packages>' \
      --accept-flake-config

Docker

Run a command inside the environment:

docker run -v nix-store:/nix -v "$PWD:/workspace" -w /workspace --rm nixos/nix nix \
    --extra-experimental-features 'nix-command flakes' \
    develop 'https://nixomatic.com/?p=<packages>' \
      --accept-flake-config \
      --command -- <cmd>

Enter an interactive shell:

docker run -v nix-store:/nix -v "$PWD:/workspace" -w /workspace --rm -it nixos/nix nix \
    --extra-experimental-features 'nix-command flakes' \
    develop 'https://nixomatic.com/?p=<packages>' \
      --accept-flake-config

Note: The Docker commands include -v "$PWD:/workspace" -w /workspace to mount the current project directory into the container. This is essential for real project work so that build tools can access project files.

Agent Workflow

One-shot tasks (running any tool on demand)

When you need to run a tool that is not installed — for file conversion, data processing, or any other task:

  1. Identify the package: Determine which nixpkgs package provides the tool you need. If unsure, search at https://search.nixos.org/packages.
  2. Detect runtime: Check for nix on PATH, then docker. Select the appropriate command template.
  3. Run the command: Use the nixomatic URL with the required package(s) and execute your command in one shot. For example, to convert a PDF to text: nix \ --extra-experimental-features 'nix-command flakes' \ develop 'https://nixomatic.com/?p=poppler-utils' \ --accept-flake-config \ --command -- pdftotext input.pdf output.txt
  4. Handle missing packages: If the command fails because a tool is not found, add the missing package to the URL and retry.

There is no need to update README.md for one-shot tasks.

Project development environments

When the user asks to build, test, lint, format, or set up a project:

  1. Check for flake.nix: If the project has its own flake.nix, use it directly with nix develop --command -- <cmd>. Skip the remaining steps.
  2. Check README.md for existing URL: Look for a ## Development Environment section containing a nixomatic.com/?p= URL. If found, use that URL as the starting point.
  3. Analyze project files: Scan the project root for language files, build tool configs, and other indicators. Determine the required package set using the mappings above.
  4. Construct the URL: Build https://nixomatic.com/?p=pkg1,pkg2,... from the detected packages. If reusing a README URL, merge any new packages into it.
  5. Detect runtime: Check for nix on PATH, then docker. Select the appropriate command template.
  6. Execute the command: Run the user's requested operation (build, test, lint, etc.) inside the nixomatic environment using the appropriate command template.
  7. Handle missing packages: If a command fails because a tool is not found (e.g., command not found: cmake), add the missing package to the URL and retry the command.
  8. Update README.md: After a successful command execution, ensure the project's README.md contains an up-to-date ## Development Environment section with the working nixomatic URL. See the README.md Maintenance section below.

README.md Maintenance

After successfully running commands in a nixomatic environment, ensure the project's README.md documents how to reproduce it. This is the primary artifact of this skill.

Finding or creating the section

  • Search README.md for a ## Development Environment heading that contains a nixomatic.com URL.
  • If found, update the URL if the package set has changed.
  • If not found, append the section to the end of README.md (before any final sections like "License" or "Contributing" if they exist).

Section template

Use this template for the Development Environment section. Replace <packages> with the actual comma-separated package list:

## Development Environment

This project uses [nixomatic](https://nixomatic.com) for reproducible development environments.

### Using Nix

nix \ --extra-experimental-features 'nix-command flakes' \ develop 'https://nixomatic.com/?p=<packages>' \ --accept-flake-config


### Using Docker

docker run -v nix-store:/nix -v "$PWD:/workspace" -w /workspace --rm -it nixos/nix nix \ --extra-experimental-features 'nix-command flakes' \ develop 'https://nixomatic.com/?p=<packages>' \ --accept-flake-config

Keeping the URL in sync

  • When packages are added (e.g., a missing tool was discovered), update the URL in the README.md section.
  • When packages are removed (e.g., a dependency was dropped), update the URL accordingly.
  • Always use the same URL in both the Nix and Docker command blocks.

Security Considerations

  • Nix sandbox: Nix builds run inside a sandbox by default — build-time derivations have no network access and no filesystem access outside the Nix store. The nix develop command only makes packages available on PATH; it does not execute arbitrary scripts at evaluation time.
  • Deterministic flakes: nixomatic.com serves deterministic Nix flakes generated from the requested package list. The flake only pulls packages from the official nixpkgs repository.
  • Docker isolation: When using the Docker runtime, the container only has access to the mounted workspace directory and a persistent Nix store volume. No other host paths are exposed.

Error Handling

ErrorCauseFix
command not found: <tool>Package missing from URLAdd the package to the p= parameter and retry
error: unable to downloadNetwork issue or invalid URLCheck internet connectivity and verify the URL is well-formed
error: flake has no attributeUnknown package nameVerify the package name exists in nixpkgs (search at https://search.nixos.org/packages)
docker: command not foundDocker not installedFall back to Nix, or ask user to install Docker
nix: command not foundNix not installedFall back to Docker, or ask user to install Nix
error: experimental Nix feature 'flakes' is disabledOld Nix without flakes flagThe --extra-experimental-features 'nix-command flakes' flag should handle this; if not, the user needs to update Nix
Permission denied on Docker socketUser not in docker groupThe user must have permission to access the Docker daemon; ask them to verify their Docker setup

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.91%
按下载量换算39

Claude

30.66%
按下载量换算35

Cursor

18.15%
按下载量换算21

Gemini CLI

10.51%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills