agent-skill-manager is distributed as a global CLI package.
Update the version in both files:
package.json→"version"src/utils/version.ts→VERSION_STRINGconstant
npm publishOr if using Bun's npm compatibility:
bunx npm publishUsers install with:
bun install -g agent-skill-managerOr use the one-command installer:
curl -sSL https://raw.githubusercontent.com/luongnv89/agent-skill-manager/main/install.sh | bashThe install script automates the full setup:
- Detects OS (Linux, macOS, Windows/WSL) and architecture
- Checks for Bun >= 1.0.0 (installs if missing)
- Ensures Bun's global bin directory is in PATH
- Installs
agent-skill-managerglobally viabun install -g - Creates command aliases (
asm,agent-skill-manager) - Verifies installation
For development or CI environments:
git clone https://github.com/luongnv89/agent-skill-manager.git
cd agent-skill-manager
bun install
bun run startGitHub Actions runs on every push to main and on all PRs:
- Checkout code
- Setup Bun (latest)
- Install dependencies (
bun install --frozen-lockfile) - Check formatting (Prettier)
- Type check (
bun run typecheck) - Run tests (
bun test)
See .github/workflows/ci.yml for the full pipeline.