mother-brain 0.7.2 → 0.7.3
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
|
@@ -798,7 +798,7 @@ async function uninstall(options) {
|
|
|
798
798
|
// src/cli.ts
|
|
799
799
|
import { exec as exec3 } from "child_process";
|
|
800
800
|
var program = new Command();
|
|
801
|
-
var VERSION = "0.7.
|
|
801
|
+
var VERSION = "0.7.3";
|
|
802
802
|
program.name("mother-brain").description("AI-powered project management framework for GitHub Copilot CLI and Codex CLI").version(VERSION);
|
|
803
803
|
program.command("init").description("Initialize Mother Brain in the current project").option("-f, --force", "Overwrite existing skills").action(init);
|
|
804
804
|
program.command("update").description("Update Mother Brain skills to the latest version").action(update);
|
package/package.json
CHANGED
|
@@ -22,6 +22,8 @@ One-click release: commit, version bump, push, tag, and publish.
|
|
|
22
22
|
## Step 2D.1: Verify & Analyze
|
|
23
23
|
- Check current folder is mother-brain framework folder
|
|
24
24
|
- If in a project folder: Display error and offer to return to framework
|
|
25
|
+
- Refresh remote release context (quiet):
|
|
26
|
+
- Run `git fetch --tags origin`
|
|
25
27
|
- Run `git status` to verify there are changes to release
|
|
26
28
|
- If no changes: Display "Nothing to release" and return to menu
|
|
27
29
|
|