@link.me/cli 0.2.52 → 0.2.54

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 +8 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -15,7 +15,13 @@ Pre-compiled binaries are provided for macOS (arm64, x64), Linux (x64, arm64), a
15
15
  ## Quick Start
16
16
 
17
17
  ```bash
18
- # Authenticate
18
+ # Authenticate in the browser
19
+ linkme auth login
20
+
21
+ # Print the browser URL without opening it, then poll for approval
22
+ linkme auth login --manual
23
+
24
+ # Authenticate with email/password flags for CI
19
25
  linkme auth login --email you@example.com --password '***'
20
26
 
21
27
  # View your profile
@@ -53,7 +59,7 @@ linkme profile --quiet
53
59
 
54
60
  | Command | Description |
55
61
  |---------|-------------|
56
- | `auth login` | Log in with email and password |
62
+ | `auth login` | Log in with browser auth by default, or email/password flags |
57
63
  | `auth logout` | Log out and clear stored tokens |
58
64
  | `auth sessions` | List active sessions |
59
65
  | `auth switch` | Switch the active profile |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link.me/cli",
3
- "version": "0.2.52",
3
+ "version": "0.2.54",
4
4
  "description": "Linkme platform CLI for agents, scripts, and automation",
5
5
  "license": "UNLICENSED",
6
6
  "bin": {
@@ -15,10 +15,10 @@
15
15
  "automation"
16
16
  ],
17
17
  "optionalDependencies": {
18
- "@link.me/cli-darwin-arm64": "0.2.52",
19
- "@link.me/cli-darwin-x64": "0.2.52",
20
- "@link.me/cli-linux-x64": "0.2.52",
21
- "@link.me/cli-linux-arm64": "0.2.52",
22
- "@link.me/cli-windows-x64": "0.2.52"
18
+ "@link.me/cli-darwin-arm64": "0.2.54",
19
+ "@link.me/cli-darwin-x64": "0.2.54",
20
+ "@link.me/cli-linux-x64": "0.2.54",
21
+ "@link.me/cli-linux-arm64": "0.2.54",
22
+ "@link.me/cli-windows-x64": "0.2.54"
23
23
  }
24
24
  }