mindforge-cc 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,11 @@
3
3
  All notable changes to MindForge are documented here.
4
4
  Format follows [Keep a Changelog](https://keepachangelog.com).
5
5
 
6
+ ## [1.0.2] — v1.0.2 CLI Bin Fix — 2026-03-22
7
+
8
+ ### Fixed
9
+ - npm bin entry now uses a path format accepted by npm publish.
10
+
6
11
  ## [1.0.1] — v1.0.1 Installer and Packaging Fixes — 2026-03-22
7
12
 
8
13
  ### Fixed
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "mindforge-cc",
3
- "version": "1.0.1",
4
- "description": "MindForge \u2014 Enterprise Agentic Framework for Claude Code and Antigravity",
3
+ "version": "1.0.2",
4
+ "description": "MindForge - Enterprise Agentic Framework for Claude Code and Antigravity",
5
5
  "bin": {
6
- "mindforge-cc": "./bin/install.js"
6
+ "mindforge-cc": "bin/install.js"
7
7
  },
8
8
  "files": [
9
9
  ".agent/",
@@ -44,4 +44,4 @@
44
44
  "engines": {
45
45
  "node": ">=18.0.0"
46
46
  }
47
- }
47
+ }