fix(packaging): align output paths to package/* and refresh package index

This commit is contained in:
2026-03-19 15:05:58 +01:00
parent 797fa9f117
commit 19f35b3082
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
# PACKAGES INDEX
- Generated: 2026-03-19 13:49:16 UTC
- Generated: 2026-03-19 14:05:51 UTC
- Skills root: `/home/davide/cev-skills/skill`
- Valid skills packaged: 34
- Package formats: `.skill` + `.zip` (per skill)
@@ -65,5 +65,5 @@
## Output Paths
- `packages/per-skill/`
- `packages/bundles/`
- `package/per-skill/`
- `package/bundles/`

View File

@@ -170,7 +170,7 @@ def build_index(
for ok, message in validations:
lines.append(f"- [{'x' if ok else ' '}] {message}")
lines.extend(["", "## Output Paths", "", "- `packages/per-skill/`", "- `packages/bundles/`"])
lines.extend(["", "## Output Paths", "", "- `package/per-skill/`", "- `package/bundles/`"])
output_file.write_text("\n".join(lines) + "\n", encoding="utf-8")