@anythingai/cli 0.1.1 → 0.1.2
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 +4 -0
- package/dist/js/bin.mjs +491 -213
- package/package.json +1 -1
- package/skills/anything-cli/SKILL.md +1 -0
package/README.md
CHANGED
|
@@ -95,10 +95,14 @@ Update the CLI in place to the latest published version:
|
|
|
95
95
|
|
|
96
96
|
```bash
|
|
97
97
|
anything update # install the latest version if one exists
|
|
98
|
+
anything update 0.0.3 # install a specific published version (may be a downgrade)
|
|
98
99
|
anything update --check # report whether a newer version is available
|
|
99
100
|
anything update --dry-run # print the install command without running it
|
|
100
101
|
```
|
|
101
102
|
|
|
103
|
+
Passing a version that was never published fails with a clear message naming
|
|
104
|
+
the latest available version.
|
|
105
|
+
|
|
102
106
|
`update` detects how the CLI was installed (npm, pnpm, yarn, or bun) and runs
|
|
103
107
|
the matching global-install command for you.
|
|
104
108
|
|