lhremote 0.17.0 → 0.18.0
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.
- package/README.md +13 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -193,6 +193,7 @@ lhremote get-profile-activity <profile> [--count <n>] [--cursor <token>] [--cdp-
|
|
|
193
193
|
lhremote search-posts <query> [--count <n>] [--cursor <n>] [--cdp-port <port>] [--json]
|
|
194
194
|
lhremote comment-on-post --url <url> --text <text> [--cdp-port <port>] [--json]
|
|
195
195
|
lhremote react-to-post <postUrl> [--type <like|celebrate|support|love|insightful|funny>] [--cdp-port <port>] [--json]
|
|
196
|
+
lhremote react-to-comment <postUrl> <commentUrn> [--type <like|celebrate|support|love|insightful|funny>] [--dry-run] [--cdp-port <port>] [--json]
|
|
196
197
|
```
|
|
197
198
|
|
|
198
199
|
### LinkedIn Search & Reference
|
|
@@ -886,6 +887,18 @@ React to a LinkedIn post with a specific reaction type.
|
|
|
886
887
|
| `reactionType` | string | No | `like` | `like`, `celebrate`, `support`, `love`, `insightful`, or `funny` |
|
|
887
888
|
| `cdpPort` | number | No | 9222 | CDP port |
|
|
888
889
|
|
|
890
|
+
#### `react-to-comment`
|
|
891
|
+
|
|
892
|
+
React to a specific LinkedIn comment with a specific reaction type. Use this for the organic-engagement pattern of acknowledging a reply (e.g., the post author replied to your comment) without extending the thread. Mirrors `react-to-post` semantics scoped to one comment via its URN (as returned by `get-post`'s `commentUrn` field).
|
|
893
|
+
|
|
894
|
+
| Parameter | Type | Required | Default | Description |
|
|
895
|
+
|-----------|------|----------|---------|-------------|
|
|
896
|
+
| `postUrl` | string | Yes | — | LinkedIn post URL containing the target comment |
|
|
897
|
+
| `commentUrn` | string | Yes | — | Comment URN (e.g. `urn:li:comment:(activity:1234567890,9876543210)`) |
|
|
898
|
+
| `reactionType` | string | No | `like` | `like`, `celebrate`, `support`, `love`, `insightful`, or `funny` |
|
|
899
|
+
| `dryRun` | boolean | No | `false` | When true, detects current reaction state without clicking |
|
|
900
|
+
| `cdpPort` | number | No | 9222 | CDP port |
|
|
901
|
+
|
|
889
902
|
### LinkedIn Search & Reference
|
|
890
903
|
|
|
891
904
|
#### `build-linkedin-url`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lhremote",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "LinkedHelper automation toolkit — CLI & MCP server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"dist"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@lhremote/cli": "^0.
|
|
41
|
-
"@lhremote/mcp": "^0.
|
|
40
|
+
"@lhremote/cli": "^0.18.0",
|
|
41
|
+
"@lhremote/mcp": "^0.18.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/node": "^25",
|