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
12 changes: 12 additions & 0 deletions packages/herdr-skills/data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"_meta": {
"default": "0.9.0",
"releases": "https://github.com/herdrdev/herdr/releases"
},
"0.9.0": {
"owner": "herdrdev",
"repo": "herdr",
"rev": "b99002ac99b09e00b4ca692436cb15a6b0d676f1",
"sha256": "sha256-SUYF4bbaYwNgoe498VoCUzuLPcjBLQXR0o0DWjjoSnI="
}
}
17 changes: 17 additions & 0 deletions packages/herdr-skills/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{ pkgs, lib, toolbox, toolboxLib }:

# Herdr's agent skill (`skills/herdr/`), packaged as a Claude Code plugin
# directory. It teaches an agent to drive Herdr from inside a Herdr-managed
# pane — inspecting workspaces, tabs, panes and neighbouring agents, and
# splitting panes without stealing focus. See https://herdr.dev/docs/agent-skill/
#
# Upstream ships no `.claude-plugin/plugin.json`, so `fromClaudePlugin` stays
# false: the builder discovers `skills/*/SKILL.md` and synthesizes the manifest.
#
# The pin is a commit, not a tag: the skill is a file in the herdr repo, so it
# moves independently of herdr's own release cadence.
toolboxLib.buildSkillBundle {
inherit pkgs;
name = "herdr-skills";
dataPath = ./data.json;
}