@usesocial/cli 0.11.7 → 0.11.9
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/CHANGELOG.md +12 -0
- package/README.md +20 -0
- package/dist/index.mjs +542 -20
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @usesocial/cli
|
|
2
2
|
|
|
3
|
+
## 0.11.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#63](https://github.com/usesocial/monorepo/pull/63) [`7983c78`](https://github.com/usesocial/monorepo/commit/7983c78501d1afdab7a94cd89f6b4f2dc6ce94c8) Thanks [@CyrusNuevoDia](https://github.com/CyrusNuevoDia)! - Promote LinkedIn as the primary public agent workflow.
|
|
8
|
+
|
|
9
|
+
## 0.11.8
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#62](https://github.com/usesocial/monorepo/pull/62) [`7f20f51`](https://github.com/usesocial/monorepo/commit/7f20f5118437075e8f33a29952e3de3770325728) Thanks [@CyrusNuevoDia](https://github.com/CyrusNuevoDia)! - Add local update checks for the social CLI and public social skill.
|
|
14
|
+
|
|
3
15
|
## 0.11.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -31,6 +31,22 @@ Or with Homebrew:
|
|
|
31
31
|
brew install usesocial/tap/cli
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
+
## Updates
|
|
35
|
+
|
|
36
|
+
`social` checks for newer CLI and skill versions in the background only when
|
|
37
|
+
stderr is an interactive terminal. Notices are concise, printed to stderr, and
|
|
38
|
+
never change stdout JSON. CI, non-TTY shells, `DO_NOT_TRACK`, and
|
|
39
|
+
`SOCIAL_DO_NOT_TRACK` suppress the check.
|
|
40
|
+
|
|
41
|
+
Run a fresh local-only check any time:
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
social update
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
It returns `{ "cli": ..., "skill": ... }` with `status` and `updateCommand`
|
|
48
|
+
fields. It does not authenticate, call providers, or spend usage.
|
|
49
|
+
|
|
34
50
|
## Quickstart
|
|
35
51
|
|
|
36
52
|
```sh
|
|
@@ -131,6 +147,7 @@ profile lookup is needed.
|
|
|
131
147
|
| --- | --- |
|
|
132
148
|
| `social account` | Auth state, connected accounts, login/logout, connect/reconnect/disconnect, billing, usage, logs, and cache config. |
|
|
133
149
|
| `social schema` | Print the command tree, inspect one command, emit the compact runnable index, or emit full contracts. |
|
|
150
|
+
| `social update` | Check for CLI and skill updates; prints JSON and never calls providers. |
|
|
134
151
|
| `social x <...>` | X operations. |
|
|
135
152
|
| `social linkedin <...>` | LinkedIn operations. |
|
|
136
153
|
| `social feedback bug\|feature` | Send a bug report or feature request to the maintainers (report text from stdin). |
|
|
@@ -347,6 +364,9 @@ social schema --list
|
|
|
347
364
|
social schema --leaves
|
|
348
365
|
social schema "linkedin requests send"
|
|
349
366
|
social schema "x post"
|
|
367
|
+
|
|
368
|
+
# Updates.
|
|
369
|
+
social update
|
|
350
370
|
```
|
|
351
371
|
|
|
352
372
|
## Links
|