@anythingai/cli 0.0.2 → 0.1.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/dist/js/bin.mjs +3287 -1435
- package/package.json +6 -1
- package/skills/anything-cli/SKILL.md +32 -4
package/README.md
CHANGED
|
@@ -89,6 +89,19 @@ anything projects messages <project-id> --json
|
|
|
89
89
|
anything --api-url http://localhost:8702 orgs
|
|
90
90
|
```
|
|
91
91
|
|
|
92
|
+
### Updating
|
|
93
|
+
|
|
94
|
+
Update the CLI in place to the latest published version:
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
anything update # install the latest version if one exists
|
|
98
|
+
anything update --check # report whether a newer version is available
|
|
99
|
+
anything update --dry-run # print the install command without running it
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
`update` detects how the CLI was installed (npm, pnpm, yarn, or bun) and runs
|
|
103
|
+
the matching global-install command for you.
|
|
104
|
+
|
|
92
105
|
## Auth
|
|
93
106
|
|
|
94
107
|
The CLI uses API keys. It reads credentials from `ANYTHING_API_KEY` first, then
|