Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/mcp-cta-delivery.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/variadic-positional-args.md

This file was deleted.

14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# incur

## 0.4.17

### Patch Changes

- 5b9647a: Delivered CTA suggestions in MCP tool result and error text, keeping `_meta.cta` for structured consumers.
- eacc238: Added variadic positional arguments: a final `z.array(...)` args key collects all remaining positionals.

```ts
Cli.create("my-cli").command("lint", {
args: z.object({ paths: z.array(z.string()).describe("Files to lint") }),
run: (c) => ({ count: c.args.paths.length }),
});
```

## 0.4.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"[!start-pkg]": "",
"name": "incur",
"type": "module",
"version": "0.4.16",
"version": "0.4.17",
"license": "MIT",
"repository": {
"type": "git",
Expand Down