mother-brain 0.0.31 → 0.0.32

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.
package/dist/cli.js CHANGED
@@ -653,7 +653,7 @@ async function uninstall(options) {
653
653
  // src/cli.ts
654
654
  import { exec as exec3 } from "child_process";
655
655
  var program = new Command();
656
- var VERSION = "0.0.31";
656
+ var VERSION = "0.0.32";
657
657
  program.name("mother-brain").description("AI-powered project management framework for GitHub Copilot CLI").version(VERSION);
658
658
  program.command("init").description("Initialize Mother Brain in the current project").option("-f, --force", "Overwrite existing skills").action(init);
659
659
  program.command("update").description("Update Mother Brain skills to the latest version").action(update);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mother-brain",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "description": "AI-powered project management framework for GitHub Copilot CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1372,7 +1372,8 @@ This pattern ensures NO workflow ever traps the user—there's always an escape
1372
1372
  - Stage all changes: `git add -A`
1373
1373
  - Commit: `git commit -m "[type]: [description] (v[version])"`
1374
1374
  - Create tag: `git tag v[version]`
1375
- - Push to remote: `git push [remote] main --tags`
1375
+ - **Push to origin (super-state) ONLY**: `git push origin main --tags`
1376
+ - **NEVER push to personal fork** - only super-state has npm publish token
1376
1377
 
1377
1378
  **Step 2D.7: Confirmation**
1378
1379
  - Wait for workflow to complete (or check status)