What problem does it solve?
The publish-cli skill streamlines releasing new versions of the 0 Finance CLI (agent-bank) to npm and ensures the package version stays in sync with the source.
Core Features & Use Cases
- Publish the agent-bank CLI to npm and maintain a consistent release cadence.
- Validate that the local build version matches the published version and perform a sanity check after publishing.
- Provide a repeatable, scriptable workflow for CI/CD teams to release new CLI builds.
Quick Start
Run the publish-cli workflow to publish a new release: bump the version in packages/cli/package.json, align the version() function in packages/cli/src/index.ts, build with pnpm --filter ./packages/cli build, publish from packages/cli using npm publish --tag latest, verify with npm view agent-bank version, then test installation globally and confirm the CLI version.