flowmind 1.4.7 → 1.5.0
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 +28 -0
- package/README.md +34 -880
- package/README_CN.md +33 -1130
- package/bin/flowmind.js +219 -55
- package/core/adapters/workflow-adapter.js +9 -0
- package/core/config-manager.js +8 -1
- package/core/index.js +33 -17
- package/core/learning-engine.js +406 -0
- package/core/providers/friday/flow-adapter.js +8 -0
- package/core/scene-matcher.js +5 -1
- package/core/sdd-agent-sync.js +467 -0
- package/core/skill-loader.js +51 -10
- package/core/utils.js +55 -1
- package/dashboard/app.jsx +5 -5
- package/dashboard/components/ActivityFeed.jsx +7 -6
- package/dashboard/components/DragonPanel.jsx +4 -16
- package/dashboard/components/McpStatusBar.jsx +3 -2
- package/dashboard/components/StatsRow.jsx +6 -8
- package/docs/guide.md +151 -0
- package/docs/guide.zh-CN.md +151 -0
- package/package.json +4 -2
- package/skills/auto-flow/index.js +320 -45
- package/skills/data-logic-validation/index.js +9 -5
- package/skills/resource-bind/SKILL.md +21 -1
- package/skills/resource-bind/index.js +206 -14
- package/skills/yapi-sync-interface/index.js +14 -7
- package/skills/yuque-sync-design/index.js +15 -8
- package/tui/app.jsx +44 -28
- package/tui/components/ChatPanel.jsx +55 -43
- package/tui/components/DragonTotem.jsx +4 -73
- package/tui/components/Sidebar.jsx +7 -7
- package/tui/components/StatusBar.jsx +5 -6
- package/tui/format-result.js +164 -0
- package/tui/ui.js +186 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [Unreleased]
|
|
4
|
+
|
|
5
|
+
## [1.5.0] - 2026-07-01
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- `resource --sync-sdd-agent` now imports local `sdd-agent` bindings, scenes, and component state into FlowMind without touching remote services
|
|
9
|
+
- Passive learning can now auto-promote repeated resource-binding choices into reusable skill preferences after enough successful local runs
|
|
10
|
+
- Passive scene learning can now turn repeated successful scene executions into reusable default scene preferences
|
|
11
|
+
- `resource-bind` can now save business-specific MCP, address, token, namespace, and project bindings into local learning files
|
|
12
|
+
- Runtime context now injects matched learned bindings so follow-up skills can reuse the saved business connection automatically
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- The CLI now treats direct text input as `process`, so `flowmind "..."` works without manually adding the subcommand
|
|
16
|
+
- Resource overview output now exposes synced bindings, scene counts, and component activation state more clearly
|
|
17
|
+
- Default config bootstrapping now seeds built-in values before reading local files, including passive learning thresholds
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- 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
|
+
- Startup now avoids a false `Missing required field: version` warning when local config files do not exist yet
|
|
22
|
+
- `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
|
|
23
|
+
|
|
24
|
+
## [1.4.8] - 2026-06-30
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- Simplified the npm homepage README into a short entry page focused on positioning, quick start, and next-step links
|
|
28
|
+
- Moved the longer product explanation into dedicated guide documents for English and Chinese readers
|
|
29
|
+
- Added packaged detailed guide documents so linked deep-dive docs resolve from the published npm package
|
|
30
|
+
|
|
3
31
|
## [1.4.7] - 2026-06-30
|
|
4
32
|
|
|
5
33
|
### Added
|