File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package skills
33import "embed"
44
55// SkillFiles contains the single portable `ddx` skill tree. The content
6- // is copied from the repo-root `/skills/ddx/` tree by `make copy-skills`
6+ // is copied from the repo-root `library /skills/ddx/` tree by `make copy-skills`
77// (run automatically as a prereq of `make build`, `make test`, `make dev`).
88// //go:embed cannot traverse upward out of the package directory, so we
99// copy into this package and embed from here.
Original file line number Diff line number Diff line change 1414# 2 — invocation error (missing files, no ddx binary, etc.)
1515#
1616# Validation (always runs):
17- # - SKILL.md exists at skills/ddx/SKILL.md
17+ # - SKILL.md exists at library/ skills/ddx/SKILL.md
1818# - Frontmatter contains only `name` + `description` (portable agentskills.io minimum)
1919# - Body is under 500 lines
2020# - All reference/*.md files linked from SKILL.md exist
2121#
2222# Routing eval (skipped in --validate mode):
23- # - For each row in skills/ddx/evals/routing.jsonl, invoke
23+ # - For each row in library/ skills/ddx/evals/routing.jsonl, invoke
2424# `ddx agent run --harness <h> --text <phrase>` and check that the
2525# response mentions the expected reference file OR the expected CLI command.
2626
2727set -euo pipefail
2828
2929REPO_ROOT=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) /.." && pwd) "
30- SKILL_DIR=" $REPO_ROOT /skills/ddx"
30+ SKILL_DIR=" $REPO_ROOT /library/ skills/ddx"
3131SKILL_MD=" $SKILL_DIR /SKILL.md"
3232EVAL_FILE=" $SKILL_DIR /evals/routing.jsonl"
3333
You can’t perform that action at this time.
0 commit comments