@mind2flow/cli 0.2.2 → 0.2.4
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/README.md +6 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -18,4 +18,10 @@ m2f mcp setup --mcp-key mcp_xxx # wire Mind2Flow into Cursor
|
|
|
18
18
|
Configuration lives in `~/.m2f/config.json`; `M2F_API_KEY` / `M2F_BASE_URL`
|
|
19
19
|
environment variables override it.
|
|
20
20
|
|
|
21
|
+
**Prerequisites** (one-time, in the [dashboard](https://app.mind2flow.io)): create a
|
|
22
|
+
REST API key (Developers → API) and add your LLM provider key (Profile → API &
|
|
23
|
+
Model Configuration — the knowledge graph needs an OpenAI key). API usage
|
|
24
|
+
deducts platform credits per request (`m2f credits` shows the balance); LLM
|
|
25
|
+
usage bills to your own key (BYOK).
|
|
26
|
+
|
|
21
27
|
Full docs: https://github.com/pablocruzpineda/m2f-agents-sdk
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mind2flow/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Command-line interface for the Mind2Flow AI agents platform",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"node": ">=18"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@mind2flow/agents-sdk": "^0.2.
|
|
36
|
+
"@mind2flow/agents-sdk": "^0.2.4",
|
|
37
37
|
"commander": "^12.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|