@astrale-os/cli 1.0.0-beta.25 → 1.0.0-beta.27
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 +5 -2
- package/dist/astrale.js +963 -287
- package/package.json +3 -2
- package/src/commands/update.ts +61 -40
- package/src/lib/__tests__/skills.test.ts +803 -0
- package/src/lib/skills/lock.ts +117 -0
- package/src/lib/skills/sync.ts +814 -0
- package/src/lib/skills.ts +1 -52
- package/src/program/__tests__/program.test.ts +1 -1
- package/src/setup/steps/skills.ts +40 -38
- package/studio/client/dist/assets/{index-OeJK1TjG.js → index-CpBed0V1.js} +3 -3
- package/studio/client/dist/assets/{schema-studio-DRdfu_cQ.js → schema-studio-DJm9guI8.js} +1 -1
- package/studio/client/dist/index.html +1 -1
- package/studio/server/cli-consumers.test.ts +31 -2
- package/studio/server/workspace/updates.ts +23 -1
- package/studio/shared/contracts/runtime.ts +4 -0
- package/tsconfig.json +1 -1
package/README.md
CHANGED
|
@@ -101,8 +101,11 @@ astrale update --check
|
|
|
101
101
|
astrale update
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
-
`astrale update` upgrades official script installs
|
|
105
|
-
|
|
104
|
+
`astrale update` upgrades official script installs, ensures every Astrale agent skill published
|
|
105
|
+
from `astrale-os/cli` is installed and healthy, and follows the beta channel by default. It reports
|
|
106
|
+
whether the skill pass was unchanged, installed, updated, or repaired. Use `--check`,
|
|
107
|
+
`--channel <channel>`, or `--version <version>` to control the CLI release target; skills always
|
|
108
|
+
track the repository's current `main` source. `--no-skills` is the explicit opt-out.
|
|
106
109
|
|
|
107
110
|
## Commands
|
|
108
111
|
|