nix-tasuke
v1.1.0Nix best practices, command patterns, and more guidance for AI coding assistants.
By ncaqLicense: Apache-2.03 GitHub starsUpdated 1 hour ago
Directory evidence
- Runtimes
- Claude Code
- Parsed components
- 7 skill or MCP entries
- Source updated
- Aug 29, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install plugin
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install nix-tasuke@agent-plugin-marketplacePaste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/ncaq/konokaClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/nix-tasuke/.
Plugin files
├── .claude-plugin/plugin.json├── skills/naming-convention/SKILL.md├── skills/nix-command/SKILL.md├── skills/nix-fast-build/SKILL.md├── skills/nix-store-scan/SKILL.md├── skills/treefmt/SKILL.md├── skills/writer-function/SKILL.md└── .mcp.json
Included Skills6
Nix naming conventions for files, variables, packages, and NixOS options based on nixpkgs official coding standards. Use when writing or reviewing Nix code.
Nix CLI command guidelines. Use new unified CLI (nix subcommand) instead of legacy commands (nix-build, nix-env, nix-shell, etc.). Use when running or suggesting Nix commands.
nix-fast-build command reference. Parallel Nix evaluation and build tool using nix-eval-jobs. Use when running or configuring nix-fast-build.
Never scan /nix/store without limits, such as shell wildcard/glob expansion or recursive search over the whole store, because it contains hundreds of thousands of entries and can crash the agent process via OOM. Resolve the exact store path with nix commands first and operate scoped to that single path, or cap depth and result count like fd --max-depth 1 --max-results. Use when searching, listing, or accessing files under /nix/store.
treefmt-nix and nix fmt guide. Unified formatting and linting with treefmt. Use when configuring or running nix fmt, treefmt, or adding formatters/linters to a Nix project.
Nix writer functions (writeShellApplication, writeText, etc.) for generating scripts, text files, and data. Use when creating derivations that produce scripts or configuration files.
MCP servers1
- url
- https://mcp-nixos.ncaq.net/mcp
Plugin manifests1
{
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "nix-tasuke",
"version": "1.1.0",
"description": "Nix best practices, command patterns, and more guidance for AI coding assistants.",
"author": {
"name": "ncaq",
"email": "[email protected]",
"url": "https://github.com/ncaq"
},
"homepage": "https://github.com/ncaq/konoka/tree/master/plugins/nix-tasuke",
"repository": "https://github.com/ncaq/konoka",
"license": "Apache-2.0",
"keywords": [
"nix",
"nixos",
"flake"
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[nix-tasuke on Agent Plugins Marketplace](https://pluginsmp.com/plugins/nix-tasuke)