argsbarg 3.3.6 → 3.3.7
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 +8 -1
- package/package.json +1 -1
- package/src/docs/mcp-guide.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.3.7] - 2026-06-21
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **`docs mcp`** — intro copy is user-facing (`exposes an MCP server with features similar to the CLI`) instead of describing argsbarg internals.
|
|
15
|
+
|
|
10
16
|
## [3.3.6] - 2026-06-21
|
|
11
17
|
|
|
12
18
|
### Added
|
|
@@ -282,7 +288,8 @@ const cli = { ... } satisfies CliProgram; // or : CliProgram
|
|
|
282
288
|
- Migrate schemas: rename every `children` property to **`commands`**; move positional definitions to **`CliPositional`** objects on `positionals` and strip `positional` / `argMin` / `argMax` from flag definitions under `options` (flags only carry `name`, `description`, `kind`, and optional `shortName`).
|
|
283
289
|
- Imports: use `CliPositional` where needed; replace `CliOptionDef` with `CliOption` or `CliPositional` as appropriate.
|
|
284
290
|
|
|
285
|
-
[Unreleased]: https://github.com/bdombro/bun-argsbarg/compare/v3.3.
|
|
291
|
+
[Unreleased]: https://github.com/bdombro/bun-argsbarg/compare/v3.3.7...HEAD
|
|
292
|
+
[3.3.7]: https://github.com/bdombro/bun-argsbarg/releases/tag/v3.3.7
|
|
286
293
|
[3.3.6]: https://github.com/bdombro/bun-argsbarg/releases/tag/v3.3.6
|
|
287
294
|
[3.3.5]: https://github.com/bdombro/bun-argsbarg/releases/tag/v3.3.5
|
|
288
295
|
[3.3.4]: https://github.com/bdombro/bun-argsbarg/releases/tag/v3.3.4
|
package/package.json
CHANGED
package/src/docs/mcp-guide.ts
CHANGED
|
@@ -29,7 +29,7 @@ export function generateMcpGuide(root: CliProgram): string {
|
|
|
29
29
|
const lines: string[] = [
|
|
30
30
|
`# MCP server (${root.key})`,
|
|
31
31
|
"",
|
|
32
|
-
`${root.key} exposes an MCP server
|
|
32
|
+
`${root.key} exposes an MCP server with features similar to the CLI.`,
|
|
33
33
|
"",
|
|
34
34
|
"## Quick start",
|
|
35
35
|
"",
|