Add Claude Task Master AI package and documentation

- Add Nix package for task-master-ai in packages/claude-task-master-ai.nix
- Update packages/default.nix to export the new package
- Add comprehensive documentation for packaging and MCP integration
- Add guile scripting solution documentation
This commit is contained in:
Geir Okkenhaug Jerstad 2025-06-14 15:40:23 +02:00
parent acb6a0b6ce
commit a17326a72e
4 changed files with 479 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{
lib,
buildNpmPackage,
fetchurl,
nodejs,
}:
buildNpmPackage rec {
pname = "task-master-ai";
version = "0.16.2";
src = fetchurl {
url = "https://github.com/eyaltoledano/claude-task-master/archive/refs/tags/v${version}.tar.gz";
hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; # Will be replaced after first build attempt
};
npmDepsHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; # Will be replaced after first build attempt
# buildInputs = [ nodejs ]; # buildNpmPackage usually brings in nodejs
meta = with lib; {
description = "Claude Task Master AI - An intelligent task management and project breakdown tool";
homepage = "https://github.com/eyaltoledano/claude-task-master";
license = licenses.mit;
maintainers = [ ]; # Add your GitHub username if you want
platforms = platforms.all;
mainProgram = "task-master-ai";
};
}

View file

@ -6,6 +6,9 @@
# Home-lab administration command-line tool
lab = pkgs.callPackage ./home-lab-tools.nix { };
# Claude Task Master AI package
claude-task-master-ai = pkgs.callPackage ./claude-task-master-ai.nix { };
# Re-export commonly used packages with custom configurations
# (Basic CLI tools moved to base.nix)
}