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
11 changes: 6 additions & 5 deletions flake.lock

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

13 changes: 10 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@
nixpkgs.follows = "holonix/nixpkgs";
flake-parts.follows = "holonix/flake-parts";

# Agent skills — plain source trees (not flakes).
# Agent skills — consumed as plain source trees (flake = false), even where
# upstream ships its own flake.
# Pin: set url to "github:owner/repo/vX.Y.Z"
# Update to latest: nix flake update holochain-agent-skill
# The upstream repo was renamed to holochain-agent-skills (plural) at
# v1.0.0-rc.1. The input attribute stays singular so the update command above
# and the references in CONTRIBUTING.md / pai/README.md keep working.
holochain-agent-skill = {
url = "github:Soushi888/holochain-agent-skill";
url = "github:Soushi888/holochain-agent-skills/v1.0.0-rc.1";
flake = false;
};
};
Expand Down Expand Up @@ -65,7 +69,10 @@
# Materialize agent skills into .claude/, .cursor/, and .agents/
mkdir -p .cursor/skills .agents/skills
${agentSkillsHook [
{ src = inputs.holochain-agent-skill; name = "holochain"; }
# Since v1.0.0-rc.1 the skill lives under skills/<name>/ rather than at
# the repo root, so the whole workshop (book.toml, docs/, .github/)
# no longer lands inside the installed skill.
{ src = "${inputs.holochain-agent-skill}/skills/holochain"; name = "holochain"; }
{ src = "${./pai/claude}/skills/nondominium-domain"; name = "nondominium-domain"; }
{ src = "${./pai/claude}/skills/complexity-oriented-programming"; name = "complexity-oriented-programming"; }
]}
Expand Down
Loading