@link.me/cli 0.2.53 → 0.2.55

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 +12 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -15,7 +15,16 @@ 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 and exit
22
+ linkme auth login --manual
23
+
24
+ # Finish a manual browser login after approval
25
+ linkme auth resume
26
+
27
+ # Authenticate with email/password flags for CI
19
28
  linkme auth login --email you@example.com --password '***'
20
29
 
21
30
  # View your profile
@@ -53,7 +62,8 @@ linkme profile --quiet
53
62
 
54
63
  | Command | Description |
55
64
  |---------|-------------|
56
- | `auth login` | Log in with email and password |
65
+ | `auth login` | Log in with browser auth by default, or email/password flags |
66
+ | `auth resume` | Finish a pending browser login started with `auth login --manual` |
57
67
  | `auth logout` | Log out and clear stored tokens |
58
68
  | `auth sessions` | List active sessions |
59
69
  | `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.53",
3
+ "version": "0.2.55",
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.53",
19
- "@link.me/cli-darwin-x64": "0.2.53",
20
- "@link.me/cli-linux-x64": "0.2.53",
21
- "@link.me/cli-linux-arm64": "0.2.53",
22
- "@link.me/cli-windows-x64": "0.2.53"
18
+ "@link.me/cli-darwin-arm64": "0.2.55",
19
+ "@link.me/cli-darwin-x64": "0.2.55",
20
+ "@link.me/cli-linux-x64": "0.2.55",
21
+ "@link.me/cli-linux-arm64": "0.2.55",
22
+ "@link.me/cli-windows-x64": "0.2.55"
23
23
  }
24
24
  }