Skip to content
Open
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/calm-snails-protect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/clerk-update-yarn-hang.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/input-json-flag.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/oauth-success-skills-snippet.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rename-clerk-cli-skill.md

This file was deleted.

16 changes: 16 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# clerk

## 1.1.0

### Minor Changes

- Add `--input-json` to pass options as JSON for any command. Accepts an inline object or `@path/to/file.json`; keys are converted from camelCase/snake_case to kebab-case flags (e.g. `{"dryRun":true}` → `--dry-run`). Arrays expand to repeated flags, `true` becomes a bare flag, `false`/`null` are omitted. Designed for AI-agent and scripted invocations that prefer passing structured options over composing shell strings. ([#232](https://github.com/clerk/cli/pull/232)) by [@rafa-thayto](https://github.com/rafa-thayto)

- Rename the bundled agent skill from `clerk` to `clerk-cli` for more clarity during install. After upgrading, `clerk skill install` (and the install step in `clerk init`) writes the skill to `<agent-dir>/skills/clerk-cli/` instead of `<agent-dir>/skills/clerk/`. Existing `skills/clerk/` directories from prior installs are left in place; remove them manually if you want to avoid duplicate context. ([#245](https://github.com/clerk/cli/pull/245)) by [@kylemac](https://github.com/kylemac)

### Patch Changes

- Avoid deleting refreshed OAuth credentials when parallel CLI processes race to refresh the same expired session. ([#213](https://github.com/clerk/cli/pull/213)) by [@wyattjoh](https://github.com/wyattjoh)

- Fix `clerk update` hanging when a corepack-shimmed package manager (e.g. yarn) prompts on stdin to download itself on first use. Package-manager probes now run with stdin detached, `COREPACK_ENABLE_DOWNLOAD_PROMPT=0`, and a 1.5s timeout, so a missing or uninitialized PM is treated as not installed instead of blocking the command. ([#243](https://github.com/clerk/cli/pull/243)) by [@dmoerner](https://github.com/dmoerner)

- After `clerk auth login`, the OAuth success page now points users to Clerk Skills with a copyable install command and a link to the AI building guide. ([#238](https://github.com/clerk/cli/pull/238)) by [@Railly](https://github.com/Railly)

## 1.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clerk",
"version": "1.0.3",
"version": "1.1.0",
"private": true,
"description": "Clerk CLI",
"keywords": [
Expand Down
Loading