Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,6 @@ dist
!.envrc

# Agent skills (managed by Nix via agent-skills-nix)
.claude/skills
.agents/skills
.claude/skills

2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
## Rules and Skills Structure

- **Rules** (`.claude/rules/`): Automatically loaded based on file paths. Source of truth for project conventions.
- **Skills** (`.claude/skills/`): Managed by Nix via [agent-skills-nix](https://github.com/Kyure-A/agent-skills-nix). Skills are sourced from [StackOneHQ/skills](https://github.com/StackOneHQ/skills) and installed automatically when entering `nix develop`.
- **Skills** (`.agents/skills/`, `.claude/skills/`): Managed by Nix via [agent-skills-nix](https://github.com/Kyure-A/agent-skills-nix). Skills are sourced from [StackOneHQ/skills](https://github.com/StackOneHQ/skills) and installed automatically when entering `nix develop`.
- **Cursor rules** (`.cursor/rules/`): Symlinks to `.claude/rules/` for consistency.

## Available Rules
Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 3 additions & 14 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,9 @@
pkgs = nixpkgs.legacyPackages.${system};
bundle = agentLib.mkBundle { inherit pkgs selection; };
# Use symlink-tree instead of copy-tree for skills
localTargets = {
claude = {
dest = ".claude/skills";
structure = "symlink-tree";
enable = true;
systems = [ ];
};
agents = {
dest = ".agents/skills";
structure = "symlink-tree";
enable = true;
systems = [ ];
};
};
localTargets = nixpkgs.lib.mapAttrs (
_: t: t // { structure = "symlink-tree"; }
) agentLib.defaultLocalTargets;
in
{
default = pkgs.mkShellNoCC {
Expand Down
Loading