flowmind 1.5.0 → 1.5.1
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 +10 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,12 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [1.5.1] - 2026-07-01
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Clarified that FlowMind can keep normal MCP and learned-binding usage working even when no AI model is configured, as long as local knowledge has been accumulated
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Release notes now highlight the AI-less MCP usage path more explicitly for npm readers
|
|
12
|
+
|
|
5
13
|
## [1.5.0] - 2026-07-01
|
|
6
14
|
|
|
7
15
|
### Added
|
|
8
16
|
- `resource --sync-sdd-agent` now imports local `sdd-agent` bindings, scenes, and component state into FlowMind without touching remote services
|
|
9
17
|
- Passive learning can now auto-promote repeated resource-binding choices into reusable skill preferences after enough successful local runs
|
|
10
18
|
- Passive scene learning can now turn repeated successful scene executions into reusable default scene preferences
|
|
19
|
+
- Accumulated local knowledge can now drive repeated MCP workflows even without configuring an AI model, so learned bindings and scene preferences still keep the tool useful in MCP-only setups
|
|
11
20
|
- `resource-bind` can now save business-specific MCP, address, token, namespace, and project bindings into local learning files
|
|
12
21
|
- Runtime context now injects matched learned bindings so follow-up skills can reuse the saved business connection automatically
|
|
13
22
|
|
|
@@ -20,6 +29,7 @@
|
|
|
20
29
|
- Binding-style requests such as `绑定发布平台 mcp=friday-auto-flow token=xxx env=uat` now route through `resource-bind` reliably instead of being swallowed by execution skills
|
|
21
30
|
- Startup now avoids a false `Missing required field: version` warning when local config files do not exist yet
|
|
22
31
|
- `flowmind tui` and `flowmind dashboard` now refuse to start inside managed Codex/Claude-style CLI hosts where nested fullscreen input can terminate the outer session
|
|
32
|
+
- CLI and TUI entrypoints now fail more predictably in managed terminal hosts instead of letting nested fullscreen behavior break the outer session
|
|
23
33
|
|
|
24
34
|
## [1.4.8] - 2026-06-30
|
|
25
35
|
|
package/package.json
CHANGED