fa-mcp-sdk 0.4.40 → 0.4.41
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.
|
@@ -72,11 +72,11 @@ Resolved project references to SDK:
|
|
|
72
72
|
|
|
73
73
|
#### Argument count
|
|
74
74
|
|
|
75
|
-
**Two arguments** — explicit FROM and TO.
|
|
75
|
+
**Two arguments** — explicit FROM and TO (resolved per scope rules above).
|
|
76
76
|
|
|
77
|
-
**One argument** —
|
|
77
|
+
**One argument** — it is treated as **FROM**; TO defaults to the **latest published fa-mcp-sdk version** (fetched via `yarn info fa-mcp-sdk version` / `npm view fa-mcp-sdk version`). The point is to upgrade to the newest existing SDK release.
|
|
78
78
|
|
|
79
|
-
**No arguments** — FROM is the current installed SDK version
|
|
79
|
+
**No arguments** — FROM is the current installed SDK version (from the project's current `package.json`); TO is the latest published SDK version.
|
|
80
80
|
|
|
81
81
|
## Step 1: Determine SDK Versions
|
|
82
82
|
|
package/cli-template/README.md
CHANGED
|
@@ -111,11 +111,13 @@ Generates a migration guide for upgrading `fa-mcp-sdk` to the latest (or specifi
|
|
|
111
111
|
By default versions and commit hashes refer to THIS project — the skill looks up which SDK version was used in each project commit/tag. To pass SDK references directly, mention "SDK" explicitly.
|
|
112
112
|
|
|
113
113
|
```
|
|
114
|
-
/upgrade-guide
|
|
115
|
-
/upgrade-guide 1.2.3 1.2.
|
|
116
|
-
/upgrade-guide
|
|
117
|
-
/upgrade-guide
|
|
118
|
-
/upgrade-guide от
|
|
114
|
+
/upgrade-guide # current SDK → latest SDK
|
|
115
|
+
/upgrade-guide 1.2.3 # project version 1.2.3 → latest SDK
|
|
116
|
+
/upgrade-guide 1.2.3 1.2.7 # project versions
|
|
117
|
+
/upgrade-guide abc1234 def5678 # project commits
|
|
118
|
+
/upgrade-guide от версии 0.1.30 SDK # SDK versions directly → latest SDK
|
|
119
|
+
/upgrade-guide от версии 0.4.30 SDK до 0.5.0 SDK # SDK versions directly
|
|
120
|
+
/upgrade-guide от комита sdk abc1234 до комита sdk def5678 # SDK commits directly
|
|
119
121
|
/upgrade-guide 1.2.3 1.2.7 на русском
|
|
120
122
|
```
|
|
121
123
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fa-mcp-sdk",
|
|
3
3
|
"productName": "FA MCP SDK",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.41",
|
|
5
5
|
"description": "Core infrastructure and templates for building Model Context Protocol (MCP) servers with TypeScript",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/core/index.js",
|