Releases: PackmindHub/packmind
Release v1.15.1
Changes
Added
- Enable rendering packmind artifacts in
~/.claude#332 - Add GitHub App connection method in organization git settings
Docker Images
The following Docker images have been built and pushed to Docker Hub:
packmind/api:1.15.1packmind/frontend:1.15.1packmind/mcp:1.15.1
All images are also available with the latest tag.
CLI 0.30.1
Packmind CLI 0.30.1
Installation
npm/npx
npm install -g @packmind/cli@0.30.1Standalone Executables
Download the appropriate executable for your platform:
- Linux x64:
packmind-cli-linux-x64-0.30.1 - Linux arm64:
packmind-cli-linux-arm64-0.30.1 - macOS arm64:
packmind-cli-macos-arm64-0.30.1 - Windows x64:
packmind-cli-windows-x64-0.30.1.exe - Windows arm64:
packmind-cli-windows-arm64-0.30.1.exe
Make the executable runnable (Linux/macOS):
chmod +x packmind-cli-*-0.30.1Changes
Fixed
- Errors when CLI was used to manipulate agent artefacts in case agent was not listed in the
packmind.jsonor not in the organization settings
CLI 0.30.0
Packmind CLI 0.30.0
Installation
npm/npx
npm install -g @packmind/cli@0.30.0Standalone Executables
Download the appropriate executable for your platform:
- Linux x64:
packmind-cli-linux-x64-0.30.0 - Linux arm64:
packmind-cli-linux-arm64-0.30.0 - macOS arm64:
packmind-cli-macos-arm64-0.30.0 - Windows x64:
packmind-cli-windows-x64-0.30.0.exe - Windows arm64:
packmind-cli-windows-arm64-0.30.0.exe
Make the executable runnable (Linux/macOS):
chmod +x packmind-cli-*-0.30.0Changes
Added
- new commands
plugins renderandplugins deleteallowing to publish a Packmind package to a Claude marketplace.
Fixed
- query rendering settings on Packmind when installing default skills.
CLI 0.29.1
Packmind CLI 0.29.1
Installation
npm/npx
npm install -g @packmind/cli@0.29.1Standalone Executables
Download the appropriate executable for your platform:
- Linux x64:
packmind-cli-linux-x64-0.29.1 - Linux arm64:
packmind-cli-linux-arm64-0.29.1 - macOS arm64:
packmind-cli-macos-arm64-0.29.1 - Windows x64:
packmind-cli-windows-x64-0.29.1.exe - Windows arm64:
packmind-cli-windows-arm64-0.29.1.exe
Make the executable runnable (Linux/macOS):
chmod +x packmind-cli-*-0.29.1Changes
Added
- Parse and preserve new skill frontmatter fields when syncing SKILL.md files:
arguments(Claude Code),paths(Cursor), andcontext(GitHub Copilot, experimental) installnow supports running inside your~/.claudehome directory: single-agent home-install mode renders for Claude only, auto-createspackmind.jsonwithagents: ['claude'], strips the redundant.claude/path prefix, and skips distribution notifications.
Fixed
installsummary now reports exactly which artifacts changed on disk. Previously, re-runninginstallafter deleting an agent-rendered file (e.g.rm -rf .claude/skills/*) printedAlready up to date, and a fully idempotent secondinstallcould printSynced N standard, M command, K skilleven though nothing on disk had changed. The summary is now driven by per-artifact change tracking (skill / standard / command), so the output reflects what actually moved.
Release v1.15.0
Release Notes
Added
- Add a "Distribute all" button on the space deployment overview to redistribute all outdated packages in one batch action
- Show the last distribution status and date for each package on the space deployment overview
- Support new skill frontmatter fields:
argumentsfor Claude Code,pathsfor Cursor, andcontext(experimental) for GitHub Copilot
Fixed
- Skill descriptions longer than 1024 characters are now rejected with a clear 400 error on the playbook accept path instead of failing with a generic server error
Docker Images
The following Docker images have been built and pushed to Docker Hub:
packmind/api:1.15.0packmind/frontend:1.15.0packmind/mcp:1.15.0
All images are also available with the latest tag.
CLI 0.29.0
Packmind CLI 0.29.0
Installation
npm/npx
npm install -g @packmind/cli@0.29.0Standalone Executables
Download the appropriate executable for your platform:
- Linux x64:
packmind-cli-linux-x64-0.29.0 - Linux arm64:
packmind-cli-linux-arm64-0.29.0 - macOS arm64:
packmind-cli-macos-arm64-0.29.0 - Windows x64:
packmind-cli-windows-x64-0.29.0.exe - Windows arm64:
packmind-cli-windows-arm64-0.29.0.exe
Make the executable runnable (Linux/macOS):
chmod +x packmind-cli-*-0.29.0Changes
Added
- Default skills are now tracked in
packmind-lock.jsonas first-class entries with asource: 'default'discriminator, alongside user-authored and package-distributed entries (source: 'user').
Changed
- Authentication is now done by reading
PACKMIND_API_KEYenv var (and alsoPACKMIND_API_KEY_V3) - Track the running CLI version in
packmind-lock.json; warn when the installed CLI is older than the recorded version, auto-refresh default skills when it is newer. - Breaking for external tooling that parses
packmind-lock.json:lockfileVersionhas been bumped from1to2. Theartifactsmap key format changed from${type}:${slug}to${source}:${type}:${slug}(e.g.default:skill:packmind-create-skill,user:standard:my-standard), and each entry now carries a requiredsource: 'default' | 'user'field. The CLI silently migrates v1 lockfiles to v2 on read (tagging every existing entry assource: 'user'), but external tooling must be updated to handle the new key format and the new required field.
Fixed
playbook submitno longer crashes on Windows when neither$EDITORnor$VISUALis set. The CLI now probes for a platform-appropriate editor (notepadon Windows;nano→vim→vion macOS/Linux) and surfaces a clear, actionable error if none is found.install <package>against a directory withoutpackmind.jsonnow reportsCreated packmind.json with N package(s)instead of the misleadingNothing to install.playbook addandplaybook submitnow reject skills whose description exceeds 1024 characters with an actionable message, instead of failing later on the server.
Release v1.14.0
Release Notes
Upgrade to 1.14.0
Added
- Support new Claude Code skill frontmatter fields:
when_to_use,paths, andshell(validated tobashorpowershell) - Added
--skip-installed-atflag oninstallcommand to avoid merge issues when working with multiple branches. - Space admins can now configure space identity (name and color) from the space general settings page - Enterprise version only
- Org admins can manage all spaces from a dedicated management page with search, filters, and per-space drawer - Enterprise version only
Changed
- Default skill set reduced from 4 to 2:
packmind-create-packageandpackmind-cli-list-commandsare deprecated and removed from the setup page. Package creation is handled bypackmind-onboard; artifact discovery is handled directly by the CLI (packmind-cli packages list,standards list,commands list,skills list).
Fixed
- Make the skill files tree scrollable on skill details page
Docker Images
The following Docker images have been built and pushed to Docker Hub:
packmind/api:1.14.0packmind/frontend:1.14.0packmind/mcp:1.14.0
All images are also available with the latest tag.
CLI 0.28.1
Packmind CLI 0.28.1
Installation
npm/npx
npm install -g @packmind/cli@0.28.1Standalone Executables
Download the appropriate executable for your platform:
- Linux x64:
packmind-cli-linux-x64-0.28.1 - Linux arm64:
packmind-cli-linux-arm64-0.28.1 - macOS arm64:
packmind-cli-macos-arm64-0.28.1 - Windows x64:
packmind-cli-windows-x64-0.28.1.exe - Windows arm64:
packmind-cli-windows-arm64-0.28.1.exe
Make the executable runnable (Linux/macOS):
chmod +x packmind-cli-*-0.28.1Changes
Fixed
installedAtproperty was incorrectly reset even when absent from lockfile.
CLI 0.28.0
Packmind CLI 0.28.0
Installation
npm/npx
npm install -g @packmind/cli@0.28.0Standalone Executables
Download the appropriate executable for your platform:
- Linux x64:
packmind-cli-linux-x64-0.28.0 - Linux arm64:
packmind-cli-linux-arm64-0.28.0 - macOS arm64:
packmind-cli-macos-arm64-0.28.0 - Windows x64:
packmind-cli-windows-x64-0.28.0.exe - Windows arm64:
packmind-cli-windows-arm64-0.28.0.exe
Make the executable runnable (Linux/macOS):
chmod +x packmind-cli-*-0.28.0Changes
Added
- Parse and preserve the new Claude Code skill frontmatter fields (
when_to_use,paths,shell) when syncing SKILL.md files
Fixed
- Better lookup for the local cert files when using HTTPS
CLI 0.27.0
Packmind CLI 0.27.0
Installation
npm/npx
npm install -g @packmind/cli@0.27.0Standalone Executables
Download the appropriate executable for your platform:
- Linux x64:
packmind-cli-linux-x64-0.27.0 - Linux arm64:
packmind-cli-linux-arm64-0.27.0 - macOS arm64:
packmind-cli-macos-arm64-0.27.0 - Windows x64:
packmind-cli-windows-x64-0.27.0.exe - Windows arm64:
packmind-cli-windows-arm64-0.27.0.exe
Make the executable runnable (Linux/macOS):
chmod +x packmind-cli-*-0.27.0Changes
Removed
- drop
setup-mcpcommand.