Publish FigUI3
SkillFiles & storagePublish a FigUI3 release to GitHub and npm when the user explicitly asks to publish or release the package. Handles versioning, changelog, verification, generated dist files, commit, push, and npm publication.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Publish FigUI3 skill
What this skill tells your AI
The instructions your AI receives, as published by rogie/figui3 in .agents/skills/publish/SKILL.md and read by ahel’s review.
Use this workflow only when the user explicitly asks to publish or release the package. A request to commit, push, build, or prepare a release does not by itself authorize npm publish.
Preflight
- Inspect the branch, working tree, diff, recent commits, configured remote, current package version, and latest published npm version.
- Release only the intended repository changes. Stop and ask if unrelated changes make the release contents ambiguous.
- Confirm GitHub and npm authentication before doing release work that depends on them.
- Do not overwrite an existing npm version. If a publish attempt has an uncertain result, query npm for that exact version before retrying.
Version policy
- Patch: bug fixes and small backward-compatible additions or refinements, including icons, tokens, enum options, examples, styles, and minor component capabilities.
- Minor: substantial new public features, such as a new component, major API surface, or significant workflow.
- Major: breaking changes.
- Default to patch when choosing between patch and minor. Ask the user when the change may be breaking or when the intended release contents are unclear.
Release workflow
- Update the version in
package.jsonand package lockfiles that record the root package version. Do not create a Git tag unless the user asks for one or an established repository release convention requires it. - Add a new version section at the top of
CHANGELOG.md. Summarize all changes included since the previous published version using the existingAdded,Changed, andFixedheadings; omit empty headings. - Run
npm test, thennpm run build. Stop on any failure. Ensure generated files underdist/are current and included in the release commit when changed. - Run
npm pack --dry-runand inspect the package name, version, and included files. Stop if required runtime or distribution files are absent or unintended files are included. - Review the final diff and
git diff --check. Stage only release files and commit them asv{version}: {short summary}. - Push the release commit to the configured GitHub remote and current branch. Do not continue to npm if the push fails.
- Run
npm publish --access public. - Verify the exact version through npm and report the version, commit hash, branch, and package URL.
Keep changelog entries concise and descriptive. Never bypass failing tests, builds, authentication checks, package inspection, or registry verification without explicit user direction.
Signals
- GitHub stars
- 66
- Forks
- 1
- Last commit
- Sep 2026
- Hacker News mentions
- 20
Advanced
- Catalog kind
- skill
- Gateway key
publish-rogie- Source
- github.com/rogie/figui3