flowmind 1.4.5 → 1.4.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.4.6] - 2026-06-30
4
+
5
+ ### Added
6
+ - Portable demo scripts for skill listing, log audit, learning feedback, and JSON output replay from the repository root
7
+ - Animated terminal walkthrough assets, including a VHS tape and generated demo GIF
8
+
9
+ ### Changed
10
+ - Demo helpers now fall back to the local `node ./bin/flowmind.js` entrypoint when a global `flowmind` binary is unavailable
11
+ - README and demo docs now expose the terminal walkthrough directly for GitHub and npm readers
12
+
3
13
  ## [1.4.5] - 2026-06-29
4
14
 
5
15
  ### Fixed
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)
11
11
  [![Version](https://img.shields.io/badge/version-1.4.5-blue)](CHANGELOG.md)
12
12
 
13
- [中文](README_CN.md) | [Quick Start](#-quick-start) | [How It Works](#-how-it-works) | [Use Cases](#-use-cases) | [Architecture](#-architecture)
13
+ [中文](README_CN.md) | [Quick Start](#-quick-start) | [Demo](demo/DEMO.md) | [How It Works](#-how-it-works) | [Use Cases](#-use-cases) | [Architecture](#-architecture)
14
14
 
15
15
  </div>
16
16
 
@@ -33,6 +33,12 @@ If you want one sentence:
33
33
 
34
34
  ## A Runnable Example
35
35
 
36
+ For a longer walkthrough, see [demo/DEMO.md](demo/DEMO.md).
37
+
38
+ Animated terminal walkthrough:
39
+
40
+ ![FlowMind terminal demo](https://raw.githubusercontent.com/Eleven-M/flowmind/master/demo/flowmind-demo.gif)
41
+
36
42
  ```bash
37
43
  # 1. Install
38
44
  npm install -g flowmind
package/README_CN.md CHANGED
@@ -10,7 +10,7 @@
10
10
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)
11
11
  [![Version](https://img.shields.io/badge/version-1.4.5-blue)](CHANGELOG.md)
12
12
 
13
- [English](README.md) | [快速开始](#-快速开始) | [工作原理](#-工作原理) | [使用场景](#-使用场景) | [架构](#-架构)
13
+ [English](README.md) | [快速开始](#-快速开始) | [演示](demo/DEMO_CN.md) | [工作原理](#-工作原理) | [使用场景](#-使用场景) | [架构](#-架构)
14
14
 
15
15
  </div>
16
16
 
@@ -33,6 +33,12 @@ FlowMind 的目标不是“什么都做”,而是把**重复出现的开发工
33
33
 
34
34
  ## 一个可跑通的例子
35
35
 
36
+ 更完整的演示见 [demo/DEMO_CN.md](demo/DEMO_CN.md)。
37
+
38
+ 终端操作 GIF 演示:
39
+
40
+ ![FlowMind 终端演示](https://raw.githubusercontent.com/Eleven-M/flowmind/master/demo/flowmind-demo.gif)
41
+
36
42
  ```bash
37
43
  # 1. 安装
38
44
  npm install -g flowmind
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowmind",
3
- "version": "1.4.5",
3
+ "version": "1.4.6",
4
4
  "description": "The AI Agent That Learns How You Work - Stop repeating yourself, FlowMind learns your workflows and applies them automatically.",
5
5
  "main": "core/index.js",
6
6
  "bin": {