| name | riela-package-release |
| description | Use when maintaining a riela-packages registry for package updates, release preparation, publishing registry changes, refreshing riela-package.json checksum and integrity digests, validating packaged workflows, updating README package listings, or doing pre-push release checks for packages under packages/*. |
Riela Package Release
Use this skill in a riela-packages registry checkout when preparing
package updates for commit, push, or release. This is maintainer-facing; for
installing or updating a package as an end user, use riela-package.
Standard Workflow
Package roots live under filesystem-safe packages/<package-id> directories.
The registry-visible package id in riela-package.json.name may be
unscoped or npm-style scoped, for example
@tacogips/youtube-mp4-download-addon; prefer scoped ids for third-party or
personal registries. Node add-on package entries use a separate add-on
namespace in addons[].name, for example
tacogips/youtube-mp4-download. The riela/ add-on namespace is reserved
for built-ins.
- Inspect the intended release scope:
git status --short
git diff --stat
git diff -- packages/<package-id>
- Refresh package digests after changing a workflow, packaged skill, prompt,
script, or package payload:
bun .agents/skills/riela-package-release/scripts/update-package-digests.ts <package-id>
For broad changes:
bun .agents/skills/riela-package-release/scripts/update-package-digests.ts --all
- Validate package metadata and workflows:
task check
-
Update README.md package listings when package inventory, descriptions,
tags, backends, or skill vendors change.
-
Before commit or push, review intended content for credentials, private
URLs, and machine-local absolute paths.
Notes
- The local Swift Riela source checkout is expected at
../riela unless
RIELA_ROOT is set.
kind: "node-addon" packages are included by the digest script. Their
package-level checksum and integrity digest cover the package payload, while
add-on contentDigest values remain explicit add-on artifact locks.
- For project-scope installs, this package also projects broad maintainer
guidance to
AGENTS.md; the named Codex skill remains available under
.codex/skills/riela-package-release.