clerk 1.1.1-snapshot.e33c494 → 1.1.1

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.
Files changed (2) hide show
  1. package/README.md +6 -1
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -40,13 +40,18 @@ Commands:
40
40
  whoami Show the current logged-in user
41
41
  open Open Clerk resources in your browser
42
42
  apps Manage your Clerk applications
43
- users Manage Clerk users
43
+ users [options] Manage Clerk users
44
44
  env Manage environment variables
45
45
  config Manage instance configuration
46
+ enable Enable Clerk features on the linked instance
47
+ disable Disable Clerk features on the linked instance
46
48
  api [options] [endpoint] [filter] Make authenticated requests to the Clerk API
47
49
  doctor [options] Check your project's Clerk integration health
48
50
  completion [shell] Generate shell autocompletion script
49
51
  skill Manage the bundled Clerk CLI agent skill
50
52
  update [options] Update the Clerk CLI to the latest version
51
53
  help [command] Display help for command
54
+
55
+ Give AI agents better Clerk context: install the Clerk skills
56
+ $ clerk skill install
52
57
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clerk",
3
- "version": "1.1.1-snapshot.e33c494",
3
+ "version": "1.1.1",
4
4
  "description": "Clerk CLI",
5
5
  "keywords": [
6
6
  "authentication",
@@ -30,13 +30,13 @@
30
30
  "node": ">=20.0.0"
31
31
  },
32
32
  "optionalDependencies": {
33
- "@clerk/cli-darwin-arm64": "1.1.1-snapshot.e33c494",
34
- "@clerk/cli-darwin-x64": "1.1.1-snapshot.e33c494",
35
- "@clerk/cli-linux-arm64": "1.1.1-snapshot.e33c494",
36
- "@clerk/cli-linux-arm64-musl": "1.1.1-snapshot.e33c494",
37
- "@clerk/cli-linux-x64": "1.1.1-snapshot.e33c494",
38
- "@clerk/cli-linux-x64-musl": "1.1.1-snapshot.e33c494",
39
- "@clerk/cli-win32-arm64": "1.1.1-snapshot.e33c494",
40
- "@clerk/cli-win32-x64": "1.1.1-snapshot.e33c494"
33
+ "@clerk/cli-darwin-arm64": "1.1.1",
34
+ "@clerk/cli-darwin-x64": "1.1.1",
35
+ "@clerk/cli-linux-arm64": "1.1.1",
36
+ "@clerk/cli-linux-arm64-musl": "1.1.1",
37
+ "@clerk/cli-linux-x64": "1.1.1",
38
+ "@clerk/cli-linux-x64-musl": "1.1.1",
39
+ "@clerk/cli-win32-arm64": "1.1.1",
40
+ "@clerk/cli-win32-x64": "1.1.1"
41
41
  }
42
42
  }