norn-cli 1.11.0 → 1.12.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 +19 -0
- package/README.md +1 -1
- package/dist/cli.js +571 -370
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,25 @@ All notable changes to the "Norn" extension will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [1.12.0] - 2026-04-20
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- **MCP Tool Arguments (Extension + CLI)**:
|
|
11
|
+
- Added positional MCP tool arguments for `run mcp call <alias> <tool>(...)`, bound in tool-schema order alongside existing named arguments.
|
|
12
|
+
- Added schema-aware MCP tool resolution before tool execution so required, duplicate, and unknown parameter checks use the server's declared input schema consistently.
|
|
13
|
+
- Added regression coverage for positional and mixed MCP argument calls in both the fake MCP fixtures and the docker-backed MCP regression.
|
|
14
|
+
|
|
15
|
+
### Improved
|
|
16
|
+
- **MCP Editor Authoring (VS Code)**:
|
|
17
|
+
- Added config-scoped `.norn-cache` persistence for listed MCP tool metadata so tool-name completions and parameter hints work from cached discovery data.
|
|
18
|
+
- Added compact MCP parameter hints with schema-backed descriptions for the active parameter and cleaner tool insertion with `()`.
|
|
19
|
+
- Suppressed unrelated bare-variable suggestions while typing inside MCP tool argument lists.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
- **MCP Diagnostics and Fixture Metadata**:
|
|
23
|
+
- Fixed diagnostics so positional MCP tool arguments are not treated like duplicate named arguments.
|
|
24
|
+
- Enriched the fake MCP regression tool schemas with parameter descriptions so cached hint text stays meaningful during local testing.
|
|
25
|
+
|
|
7
26
|
## [1.11.0] - 2026-04-19
|
|
8
27
|
|
|
9
28
|
### Added
|
package/README.md
CHANGED
|
@@ -113,7 +113,7 @@ end sequence
|
|
|
113
113
|
Behavior:
|
|
114
114
|
|
|
115
115
|
- `run mcp list <alias>` returns the full tool list and drains paginated `nextCursor` responses automatically.
|
|
116
|
-
- `run mcp call <alias> <tool>(
|
|
116
|
+
- `run mcp call <alias> <tool>(...)` supports named arguments or positional arguments bound in tool-schema order, and returns a deterministic result envelope with `content`, `structuredContent`, `isError`, `text`, `server`, and `tool`.
|
|
117
117
|
- Tool `structuredContent` is validated against the MCP tool's advertised `outputSchema` when present.
|
|
118
118
|
- Sessions are closed automatically when the outermost sequence finishes or fails.
|
|
119
119
|
|