feat: efficacy-benchmark tracer bullet (task 0004) #4

Merged
alexion merged 5 commits from task-0004-efficacy-benchmark-tracer-bullet into main 2026-07-24 15:03:26 -04:00
Showing only changes of commit ab2c05acb2 - Show all commits

View File

@@ -92,6 +92,15 @@
inherit pkgs; inherit pkgs;
}; };
}; };
# A working shell for developing skills in this repo.
# python3 runs the benchmark skill's deterministic core.
# The benchmark-skill is placed into ./.claude/skills/ on entry, so
# /benchmark-skill is available while working in this repo.
devShells.default = pkgs.mkShell {
packages = [ pkgs.python3 ];
shellHook = mkSkillsShellHook [ (skillPackages pkgs).benchmark-skill ];
};
} }
); );
} }