Skip to content

Releases: PackmindHub/packmind

Release v1.15.1

15 Jun 15:03

Choose a tag to compare

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.1
  • packmind/frontend:1.15.1
  • packmind/mcp:1.15.1

All images are also available with the latest tag.

CLI 0.30.1

11 Jun 10:24

Choose a tag to compare

Packmind CLI 0.30.1

Installation

npm/npx

npm install -g @packmind/cli@0.30.1

Standalone 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.1

Changes

Fixed

  • Errors when CLI was used to manipulate agent artefacts in case agent was not listed in the packmind.json or not in the organization settings

CLI 0.30.0

01 Jun 10:02

Choose a tag to compare

Packmind CLI 0.30.0

Installation

npm/npx

npm install -g @packmind/cli@0.30.0

Standalone 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.0

Changes

Added

  • new commands plugins render and plugins delete allowing to publish a Packmind package to a Claude marketplace.

Fixed

  • query rendering settings on Packmind when installing default skills.

CLI 0.29.1

28 May 06:01

Choose a tag to compare

Packmind CLI 0.29.1

Installation

npm/npx

npm install -g @packmind/cli@0.29.1

Standalone 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.1

Changes

Added

  • Parse and preserve new skill frontmatter fields when syncing SKILL.md files: arguments (Claude Code), paths (Cursor), and context (GitHub Copilot, experimental)
  • install now supports running inside your ~/.claude home directory: single-agent home-install mode renders for Claude only, auto-creates packmind.json with agents: ['claude'], strips the redundant .claude/ path prefix, and skips distribution notifications.

Fixed

  • install summary now reports exactly which artifacts changed on disk. Previously, re-running install after deleting an agent-rendered file (e.g. rm -rf .claude/skills/*) printed Already up to date, and a fully idempotent second install could print Synced N standard, M command, K skill even 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

25 May 07:05

Choose a tag to compare

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: arguments for Claude Code, paths for Cursor, and context (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.0
  • packmind/frontend:1.15.0
  • packmind/mcp:1.15.0

All images are also available with the latest tag.

CLI 0.29.0

22 May 08:14

Choose a tag to compare

Packmind CLI 0.29.0

Installation

npm/npx

npm install -g @packmind/cli@0.29.0

Standalone 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.0

Changes

Added

  • Default skills are now tracked in packmind-lock.json as first-class entries with a source: 'default' discriminator, alongside user-authored and package-distributed entries (source: 'user').

Changed

  • Authentication is now done by reading PACKMIND_API_KEY env var (and also PACKMIND_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: lockfileVersion has been bumped from 1 to 2. The artifacts map 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 required source: 'default' | 'user' field. The CLI silently migrates v1 lockfiles to v2 on read (tagging every existing entry as source: 'user'), but external tooling must be updated to handle the new key format and the new required field.

Fixed

  • playbook submit no longer crashes on Windows when neither $EDITOR nor $VISUAL is set. The CLI now probes for a platform-appropriate editor (notepad on Windows; nanovimvi on macOS/Linux) and surfaces a clear, actionable error if none is found.
  • install <package> against a directory without packmind.json now reports Created packmind.json with N package(s) instead of the misleading Nothing to install.
  • playbook add and playbook submit now reject skills whose description exceeds 1024 characters with an actionable message, instead of failing later on the server.

Release v1.14.0

06 May 10:34

Choose a tag to compare

Release Notes

Upgrade to 1.14.0

Added

  • Support new Claude Code skill frontmatter fields: when_to_use, paths, and shell (validated to bash or powershell)
  • Added --skip-installed-at flag on install command 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-package and packmind-cli-list-commands are deprecated and removed from the setup page. Package creation is handled by packmind-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.0
  • packmind/frontend:1.14.0
  • packmind/mcp:1.14.0

All images are also available with the latest tag.

CLI 0.28.1

04 May 14:56

Choose a tag to compare

Packmind CLI 0.28.1

Installation

npm/npx

npm install -g @packmind/cli@0.28.1

Standalone 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.1

Changes

Fixed

  • installedAt property was incorrectly reset even when absent from lockfile.

CLI 0.28.0

04 May 12:13

Choose a tag to compare

Packmind CLI 0.28.0

Installation

npm/npx

npm install -g @packmind/cli@0.28.0

Standalone 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.0

Changes

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

20 Apr 13:16

Choose a tag to compare

Packmind CLI 0.27.0

Installation

npm/npx

npm install -g @packmind/cli@0.27.0

Standalone 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.0

Changes

Removed

  • drop setup-mcp command.